| 
									
										
										
										
											1997-05-20 22:40:26 +00:00
										 |  |  | #include "config.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-10-08 15:26:56 +00:00
										 |  |  | #ifdef macintosh
 | 
					
						
							|  |  |  | #include "macbuildno.h"
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-20 18:34:26 +00: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 17:53:11 +00:00
										 |  |  | 	static char buildinfo[50]; | 
					
						
							|  |  |  | 	sprintf(buildinfo, "#%d, %.20s, %.9s", BUILD, DATE, TIME); | 
					
						
							| 
									
										
										
										
											1997-01-20 18:34:26 +00:00
										 |  |  | 	return buildinfo; | 
					
						
							|  |  |  | } |