| Tim Peters | 22a51ef | 2001-12-04 01:11:32 +0000 | [diff] [blame] | 1 | #include "Python.h" | 
| Guido van Rossum | 49bff65 | 1997-05-20 22:40:26 +0000 | [diff] [blame] | 2 |  | 
| Guido van Rossum | ff7e83d | 1999-08-27 20:39:37 +0000 | [diff] [blame] | 3 | #ifndef DONT_HAVE_STDIO_H | 
| Guido van Rossum | 2fff2e6 | 1997-01-20 18:34:26 +0000 | [diff] [blame] | 4 | #include <stdio.h> | 
| Guido van Rossum | ff7e83d | 1999-08-27 20:39:37 +0000 | [diff] [blame] | 5 | #endif | 
| Guido van Rossum | 2fff2e6 | 1997-01-20 18:34:26 +0000 | [diff] [blame] | 6 |  | 
 | 7 | #ifndef DATE | 
 | 8 | #ifdef __DATE__ | 
 | 9 | #define DATE __DATE__ | 
 | 10 | #else | 
 | 11 | #define DATE "xx/xx/xx" | 
 | 12 | #endif | 
 | 13 | #endif | 
 | 14 |  | 
 | 15 | #ifndef TIME | 
 | 16 | #ifdef __TIME__ | 
 | 17 | #define TIME __TIME__ | 
 | 18 | #else | 
 | 19 | #define TIME "xx:xx:xx" | 
 | 20 | #endif | 
 | 21 | #endif | 
 | 22 |  | 
| Georg Brandl | 1ca2e79 | 2011-03-05 20:51:24 +0100 | [diff] [blame] | 23 | /* XXX Only unix build process has been tested */ | 
 | 24 | #ifndef HGVERSION | 
 | 25 | #define HGVERSION "" | 
 | 26 | #endif | 
 | 27 | #ifndef HGTAG | 
 | 28 | #define HGTAG "" | 
 | 29 | #endif | 
 | 30 | #ifndef HGBRANCH | 
 | 31 | #define HGBRANCH "" | 
 | 32 | #endif | 
 | 33 |  | 
| Guido van Rossum | 2fff2e6 | 1997-01-20 18:34:26 +0000 | [diff] [blame] | 34 | const char * | 
| Thomas Wouters | f3f33dc | 2000-07-21 06:00:07 +0000 | [diff] [blame] | 35 | Py_GetBuildInfo(void) | 
| Guido van Rossum | 2fff2e6 | 1997-01-20 18:34:26 +0000 | [diff] [blame] | 36 | { | 
| Benjamin Peterson | ad45bfe | 2011-03-28 17:25:15 -0500 | [diff] [blame] | 37 |     static char buildinfo[50 + sizeof(HGVERSION) + | 
 | 38 |                           ((sizeof(HGTAG) > sizeof(HGBRANCH)) ? | 
 | 39 |                            sizeof(HGTAG) : sizeof(HGBRANCH))]; | 
| Georg Brandl | 1ca2e79 | 2011-03-05 20:51:24 +0100 | [diff] [blame] | 40 |     const char *revision = _Py_hgversion(); | 
| Antoine Pitrou | 7f14f0d | 2010-05-09 16:14:21 +0000 | [diff] [blame] | 41 |     const char *sep = *revision ? ":" : ""; | 
| Georg Brandl | 1ca2e79 | 2011-03-05 20:51:24 +0100 | [diff] [blame] | 42 |     const char *hgid = _Py_hgidentifier(); | 
 | 43 |     if (!(*hgid)) | 
 | 44 |         hgid = "default"; | 
| Antoine Pitrou | 7f14f0d | 2010-05-09 16:14:21 +0000 | [diff] [blame] | 45 |     PyOS_snprintf(buildinfo, sizeof(buildinfo), | 
| Georg Brandl | 1ca2e79 | 2011-03-05 20:51:24 +0100 | [diff] [blame] | 46 |                   "%s%s%s, %.20s, %.9s", hgid, sep, revision, | 
| Antoine Pitrou | 7f14f0d | 2010-05-09 16:14:21 +0000 | [diff] [blame] | 47 |                   DATE, TIME); | 
 | 48 |     return buildinfo; | 
| Guido van Rossum | 2fff2e6 | 1997-01-20 18:34:26 +0000 | [diff] [blame] | 49 | } | 
| Barry Warsaw | ce3a913 | 2005-12-19 14:43:44 +0000 | [diff] [blame] | 50 |  | 
 | 51 | const char * | 
| Georg Brandl | 1ca2e79 | 2011-03-05 20:51:24 +0100 | [diff] [blame] | 52 | _Py_hgversion(void) | 
 | 53 | { | 
 | 54 |     return HGVERSION; | 
 | 55 | } | 
 | 56 |  | 
 | 57 | const char * | 
 | 58 | _Py_hgidentifier(void) | 
 | 59 | { | 
 | 60 |     const char *hgtag, *hgid; | 
 | 61 |     hgtag = HGTAG; | 
 | 62 |     if ((*hgtag) && strcmp(hgtag, "tip") != 0) | 
 | 63 |         hgid = hgtag; | 
 | 64 |     else | 
 | 65 |         hgid = HGBRANCH; | 
 | 66 |     return hgid; | 
 | 67 | } |