1997-05-20 19:40:26 -03:00
|
|
|
#include "config.h"
|
|
|
|
|
1997-10-08 12:26:56 -03:00
|
|
|
#ifdef macintosh
|
|
|
|
#include "macbuildno.h"
|
|
|
|
#endif
|
|
|
|
|
1997-01-20 14:34:26 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#ifndef DATE
|
|
|
|
#ifdef __DATE__
|
|
|
|
#define DATE __DATE__
|
|
|
|
#else
|
|
|
|
#define DATE "xx/xx/xx"
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef TIME
|
|
|
|
#ifdef __TIME__
|
|
|
|
#define TIME __TIME__
|
|
|
|
#else
|
|
|
|
#define TIME "xx:xx:xx"
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef BUILD
|
|
|
|
#define BUILD 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
const char *
|
|
|
|
Py_GetBuildInfo()
|
|
|
|
{
|
1999-01-27 13:53:11 -04:00
|
|
|
static char buildinfo[50];
|
|
|
|
sprintf(buildinfo, "#%d, %.20s, %.9s", BUILD, DATE, TIME);
|
1997-01-20 14:34:26 -04:00
|
|
|
return buildinfo;
|
|
|
|
}
|