| Martin v. Löwis | 3150a27 | 2006-01-18 19:18:51 +0000 | [diff] [blame] | 1 | #include <windows.h>
 | 
 | 2 | #include <sys/types.h>
 | 
 | 3 | #include <sys/stat.h>
 | 
 | 4 | #include <stdio.h>
 | 
 | 5 | 
 | 
 | 6 | /* This file creates the getbuildinfo.o object, by first
 | 
 | 7 |    invoking subwcrev.exe (if found), and then invoking cl.exe.
 | 
 | 8 |    As a side effect, it might generate PCBuild\getbuildinfo2.c
 | 
 | 9 |    also. If this isn't a subversion checkout, or subwcrev isn't
 | 
 | 10 |    found, it compiles ..\\Modules\\getbuildinfo.c instead.
 | 
 | 11 | 
 | 
 | 12 |    Currently, subwcrev.exe is found from the registry entries
 | 
 | 13 |    of TortoiseSVN.
 | 
 | 14 | 
 | 
 | 15 |    No attempt is made to place getbuildinfo.o into the proper
 | 
 | 16 |    binary directory. This isn't necessary, as this tool is
 | 
 | 17 |    invoked as a pre-link step for pythoncore, so that overwrites
 | 
 | 18 |    any previous getbuildinfo.o.
 | 
 | 19 | 
 | 
 | 20 | */
 | 
 | 21 | 
 | 
 | 22 | int make_buildinfo2()
 | 
 | 23 | {
 | 
 | 24 | 	struct _stat st;
 | 
 | 25 | 	HKEY hTortoise;
 | 
 | 26 | 	char command[500];
 | 
 | 27 | 	DWORD type, size;
 | 
 | 28 | 	if (_stat(".svn", &st) < 0)
 | 
 | 29 | 		return 0;
 | 
 | 30 | 	if (RegOpenKey(HKEY_LOCAL_MACHINE, "Software\\TortoiseSVN", &hTortoise) != ERROR_SUCCESS &&
 | 
 | 31 | 	    RegOpenKey(HKEY_CURRENT_USER, "Software\\TortoiseSVN", &hTortoise) != ERROR_SUCCESS)
 | 
 | 32 | 		/* Tortoise not installed */
 | 
 | 33 | 		return 0;
 | 
| Tim Peters | 8207cc7 | 2006-01-18 20:04:02 +0000 | [diff] [blame] | 34 | 	command[0] = '"';  /* quote the path to the executable */
 | 
 | 35 | 	size = sizeof(command) - 1;
 | 
 | 36 | 	if (RegQueryValueEx(hTortoise, "Directory", 0, &type, command+1, &size) != ERROR_SUCCESS ||
 | 
| Martin v. Löwis | 3150a27 | 2006-01-18 19:18:51 +0000 | [diff] [blame] | 37 | 	    type != REG_SZ)
 | 
 | 38 | 		/* Registry corrupted */
 | 
 | 39 | 		return 0;
 | 
| Martin v. Löwis | 62ffc07 | 2006-01-19 16:17:31 +0000 | [diff] [blame] | 40 | 	strcat(command, "bin\\subwcrev.exe");
 | 
 | 41 | 	if (_stat(command+1, &st) < 0)
 | 
| Martin v. Löwis | 3150a27 | 2006-01-18 19:18:51 +0000 | [diff] [blame] | 42 | 		/* subwcrev.exe not part of the release */
 | 
 | 43 | 		return 0;
 | 
| Martin v. Löwis | 62ffc07 | 2006-01-19 16:17:31 +0000 | [diff] [blame] | 44 | 	strcat(command, "\" .. ..\\Modules\\getbuildinfo.c getbuildinfo2.c");
 | 
| Martin v. Löwis | 3150a27 | 2006-01-18 19:18:51 +0000 | [diff] [blame] | 45 | 	puts(command); fflush(stdout);
 | 
 | 46 | 	if (system(command) < 0)
 | 
 | 47 | 		return 0;
 | 
 | 48 | 	return 1;
 | 
 | 49 | }
 | 
 | 50 | 
 | 
 | 51 | int main(int argc, char*argv[])
 | 
 | 52 | {
 | 
 | 53 | 	char command[500] = "cl.exe -c -D_WIN32 -DUSE_DL_EXPORT -D_WINDOWS -DWIN32 -D_WINDLL ";
 | 
 | 54 | 	int do_unlink, result;
 | 
 | 55 | 	if (argc != 2) {
 | 
 | 56 | 		fprintf(stderr, "make_buildinfo $(ConfigurationName)\n");
 | 
 | 57 | 		return EXIT_FAILURE;
 | 
 | 58 | 	}
 | 
 | 59 | 	if (strcmp(argv[1], "Release") == 0) {
 | 
 | 60 | 		strcat(command, "-MD ");
 | 
| Martin v. Löwis | 3150a27 | 2006-01-18 19:18:51 +0000 | [diff] [blame] | 61 | 	}
 | 
 | 62 | 	else if (strcmp(argv[1], "Debug") == 0) {
 | 
 | 63 | 		strcat(command, "-D_DEBUG -MDd ");
 | 
| Martin v. Löwis | 3150a27 | 2006-01-18 19:18:51 +0000 | [diff] [blame] | 64 | 	}
 | 
| Martin v. Löwis | 856bf9a | 2006-02-14 20:42:55 +0000 | [diff] [blame] | 65 | 	else if (strcmp(argv[1], "ReleaseItanium") == 0) {
 | 
 | 66 | 		strcat(command, "-MD /USECL:MS_ITANIUM ");
 | 
 | 67 | 	}
 | 
 | 68 | 	else if (strcmp(argv[1], "ReleaseAMD64") == 0) {
 | 
| Martin v. Löwis | 3150a27 | 2006-01-18 19:18:51 +0000 | [diff] [blame] | 69 | 		strcat(command, "-MD ");
 | 
| Martin v. Löwis | 856bf9a | 2006-02-14 20:42:55 +0000 | [diff] [blame] | 70 | 		strcat(command, "-MD /USECL:MS_OPTERON ");
 | 
| Martin v. Löwis | 3150a27 | 2006-01-18 19:18:51 +0000 | [diff] [blame] | 71 | 	}
 | 
 | 72 | 	else {
 | 
 | 73 | 		fprintf(stderr, "unsupported configuration %s\n", argv[1]);
 | 
 | 74 | 		return EXIT_FAILURE;
 | 
 | 75 | 	}
 | 
 | 76 | 
 | 
 | 77 | 	if ((do_unlink = make_buildinfo2()))
 | 
 | 78 | 		strcat(command, "getbuildinfo2.c -DSUBWCREV ");
 | 
 | 79 | 	else
 | 
 | 80 | 		strcat(command, "..\\Modules\\getbuildinfo.c");
 | 
 | 81 | 	strcat(command, " -Fogetbuildinfo.o -I..\\Include -I..\\PC");
 | 
 | 82 | 	puts(command); fflush(stdout);
 | 
 | 83 | 	result = system(command);
 | 
 | 84 | 	if (do_unlink)
 | 
 | 85 | 		unlink("getbuildinfo2.c");
 | 
 | 86 | 	if (result < 0)
 | 
 | 87 | 		return EXIT_FAILURE;
 | 
 | 88 | 	return 0;
 | 
 | 89 | } |