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 ");
|
| 61 | //strcpy(targetdir, "x86-temp-debug");
|
| 62 | }
|
| 63 | else if (strcmp(argv[1], "Debug") == 0) {
|
| 64 | strcat(command, "-D_DEBUG -MDd ");
|
| 65 | //strcpy(targetdir, "x86-temp-release");
|
| 66 | }
|
| 67 | else if (strcmp(argv[1], "ReleaseItanium")) {
|
| 68 | strcat(command, "-MD ");
|
| 69 | //strcpy(targetdir, "ia64-temp-release");
|
| 70 | }
|
| 71 | else {
|
| 72 | fprintf(stderr, "unsupported configuration %s\n", argv[1]);
|
| 73 | return EXIT_FAILURE;
|
| 74 | }
|
| 75 |
|
| 76 | if ((do_unlink = make_buildinfo2()))
|
| 77 | strcat(command, "getbuildinfo2.c -DSUBWCREV ");
|
| 78 | else
|
| 79 | strcat(command, "..\\Modules\\getbuildinfo.c");
|
| 80 | strcat(command, " -Fogetbuildinfo.o -I..\\Include -I..\\PC");
|
| 81 | puts(command); fflush(stdout);
|
| 82 | result = system(command);
|
| 83 | if (do_unlink)
|
| 84 | unlink("getbuildinfo2.c");
|
| 85 | if (result < 0)
|
| 86 | return EXIT_FAILURE;
|
| 87 | return 0;
|
| 88 | } |