Merged revisions 59642-59665 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r59653 | martin.v.loewis | 2008-01-01 22:05:17 +0100 (Tue, 01 Jan 2008) | 3 lines
Return results from Python callbacks to Tcl as Tcl objects.
Fixes Tk issue #1851526
........
r59654 | martin.v.loewis | 2008-01-01 22:08:18 +0100 (Tue, 01 Jan 2008) | 4 lines
Always convert Text.index result to string.
This improves compatibility with Tcl 8.5, which would
otherwise return textindex objects.
........
r59655 | martin.v.loewis | 2008-01-01 22:09:07 +0100 (Tue, 01 Jan 2008) | 2 lines
News item for r59653.
........
r59656 | martin.v.loewis | 2008-01-02 00:00:00 +0100 (Wed, 02 Jan 2008) | 1 line
Don't link with Tix; Tix is loaded dynamically by Tcl.
........
r59657 | martin.v.loewis | 2008-01-02 00:00:48 +0100 (Wed, 02 Jan 2008) | 1 line
Use Visual Studio 2009 on the build slaves.
........
r59658 | martin.v.loewis | 2008-01-02 00:36:24 +0100 (Wed, 02 Jan 2008) | 1 line
Test in PCbuild directory.
........
r59661 | kurt.kaiser | 2008-01-02 05:11:28 +0100 (Wed, 02 Jan 2008) | 6 lines
Issue1177
r58207 and r58247 patch logic is reversed. I noticed this when I
tried to use urllib to retrieve a file which required auth.
Fix that and add a test for 401 error to verify.
........
r59662 | kurt.kaiser | 2008-01-02 06:23:38 +0100 (Wed, 02 Jan 2008) | 2 lines
Change docstrings to comments so test output will display normally.
........
r59665 | christian.heimes | 2008-01-02 18:43:40 +0100 (Wed, 02 Jan 2008) | 5 lines
Removed PCbuild8/ directory and added a new build directory for VS 2005
based on the VS 2008 build directory to PC/VS8.0. The script
PCbuild/vs8to9.py was added to sync changes from PCbuild to PC/VS8.0.
Kristjan, the initial creator of the PCbuild8 directory is fine with the replacement. I've moved the new version of the VS 2005 build directory next to the other legacy build directories. The new sync script is based on the work of wreck and syncs changes in the project, property and solution files.
........
2008-01-02 14:30:52 -04:00
|
|
|
#include <windows.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#define CMD_SIZE 500
|
|
|
|
|
|
|
|
/* This file creates the getbuildinfo.o object, by first
|
|
|
|
invoking subwcrev.exe (if found), and then invoking cl.exe.
|
|
|
|
As a side effect, it might generate PCBuild\getbuildinfo2.c
|
|
|
|
also. If this isn't a subversion checkout, or subwcrev isn't
|
|
|
|
found, it compiles ..\\..\\Modules\\getbuildinfo.c instead.
|
|
|
|
|
|
|
|
Currently, subwcrev.exe is found from the registry entries
|
|
|
|
of TortoiseSVN.
|
|
|
|
|
|
|
|
No attempt is made to place getbuildinfo.o into the proper
|
|
|
|
binary directory. This isn't necessary, as this tool is
|
|
|
|
invoked as a pre-link step for pythoncore, so that overwrites
|
|
|
|
any previous getbuildinfo.o.
|
|
|
|
|
2010-11-04 12:21:59 -03:00
|
|
|
However, if a second argument is provided, this will be used
|
|
|
|
as a temporary directory where any getbuildinfo2.c and
|
|
|
|
getbuildinfo.o files are put. This is useful if multiple
|
|
|
|
configurations are being built in parallel, to avoid them
|
|
|
|
trampling each other's files.
|
|
|
|
|
Merged revisions 59642-59665 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r59653 | martin.v.loewis | 2008-01-01 22:05:17 +0100 (Tue, 01 Jan 2008) | 3 lines
Return results from Python callbacks to Tcl as Tcl objects.
Fixes Tk issue #1851526
........
r59654 | martin.v.loewis | 2008-01-01 22:08:18 +0100 (Tue, 01 Jan 2008) | 4 lines
Always convert Text.index result to string.
This improves compatibility with Tcl 8.5, which would
otherwise return textindex objects.
........
r59655 | martin.v.loewis | 2008-01-01 22:09:07 +0100 (Tue, 01 Jan 2008) | 2 lines
News item for r59653.
........
r59656 | martin.v.loewis | 2008-01-02 00:00:00 +0100 (Wed, 02 Jan 2008) | 1 line
Don't link with Tix; Tix is loaded dynamically by Tcl.
........
r59657 | martin.v.loewis | 2008-01-02 00:00:48 +0100 (Wed, 02 Jan 2008) | 1 line
Use Visual Studio 2009 on the build slaves.
........
r59658 | martin.v.loewis | 2008-01-02 00:36:24 +0100 (Wed, 02 Jan 2008) | 1 line
Test in PCbuild directory.
........
r59661 | kurt.kaiser | 2008-01-02 05:11:28 +0100 (Wed, 02 Jan 2008) | 6 lines
Issue1177
r58207 and r58247 patch logic is reversed. I noticed this when I
tried to use urllib to retrieve a file which required auth.
Fix that and add a test for 401 error to verify.
........
r59662 | kurt.kaiser | 2008-01-02 06:23:38 +0100 (Wed, 02 Jan 2008) | 2 lines
Change docstrings to comments so test output will display normally.
........
r59665 | christian.heimes | 2008-01-02 18:43:40 +0100 (Wed, 02 Jan 2008) | 5 lines
Removed PCbuild8/ directory and added a new build directory for VS 2005
based on the VS 2008 build directory to PC/VS8.0. The script
PCbuild/vs8to9.py was added to sync changes from PCbuild to PC/VS8.0.
Kristjan, the initial creator of the PCbuild8 directory is fine with the replacement. I've moved the new version of the VS 2005 build directory next to the other legacy build directories. The new sync script is based on the work of wreck and syncs changes in the project, property and solution files.
........
2008-01-02 14:30:52 -04:00
|
|
|
*/
|
|
|
|
|
2010-11-04 12:21:59 -03:00
|
|
|
int make_buildinfo2(const char *tmppath)
|
Merged revisions 59642-59665 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r59653 | martin.v.loewis | 2008-01-01 22:05:17 +0100 (Tue, 01 Jan 2008) | 3 lines
Return results from Python callbacks to Tcl as Tcl objects.
Fixes Tk issue #1851526
........
r59654 | martin.v.loewis | 2008-01-01 22:08:18 +0100 (Tue, 01 Jan 2008) | 4 lines
Always convert Text.index result to string.
This improves compatibility with Tcl 8.5, which would
otherwise return textindex objects.
........
r59655 | martin.v.loewis | 2008-01-01 22:09:07 +0100 (Tue, 01 Jan 2008) | 2 lines
News item for r59653.
........
r59656 | martin.v.loewis | 2008-01-02 00:00:00 +0100 (Wed, 02 Jan 2008) | 1 line
Don't link with Tix; Tix is loaded dynamically by Tcl.
........
r59657 | martin.v.loewis | 2008-01-02 00:00:48 +0100 (Wed, 02 Jan 2008) | 1 line
Use Visual Studio 2009 on the build slaves.
........
r59658 | martin.v.loewis | 2008-01-02 00:36:24 +0100 (Wed, 02 Jan 2008) | 1 line
Test in PCbuild directory.
........
r59661 | kurt.kaiser | 2008-01-02 05:11:28 +0100 (Wed, 02 Jan 2008) | 6 lines
Issue1177
r58207 and r58247 patch logic is reversed. I noticed this when I
tried to use urllib to retrieve a file which required auth.
Fix that and add a test for 401 error to verify.
........
r59662 | kurt.kaiser | 2008-01-02 06:23:38 +0100 (Wed, 02 Jan 2008) | 2 lines
Change docstrings to comments so test output will display normally.
........
r59665 | christian.heimes | 2008-01-02 18:43:40 +0100 (Wed, 02 Jan 2008) | 5 lines
Removed PCbuild8/ directory and added a new build directory for VS 2005
based on the VS 2008 build directory to PC/VS8.0. The script
PCbuild/vs8to9.py was added to sync changes from PCbuild to PC/VS8.0.
Kristjan, the initial creator of the PCbuild8 directory is fine with the replacement. I've moved the new version of the VS 2005 build directory next to the other legacy build directories. The new sync script is based on the work of wreck and syncs changes in the project, property and solution files.
........
2008-01-02 14:30:52 -04:00
|
|
|
{
|
2010-05-09 12:52:27 -03:00
|
|
|
struct _stat st;
|
|
|
|
HKEY hTortoise;
|
|
|
|
char command[CMD_SIZE+1];
|
|
|
|
DWORD type, size;
|
|
|
|
if (_stat(".svn", &st) < 0)
|
|
|
|
return 0;
|
|
|
|
/* Allow suppression of subwcrev.exe invocation if a no_subwcrev file is present. */
|
|
|
|
if (_stat("no_subwcrev", &st) == 0)
|
|
|
|
return 0;
|
|
|
|
if (RegOpenKey(HKEY_LOCAL_MACHINE, "Software\\TortoiseSVN", &hTortoise) != ERROR_SUCCESS &&
|
|
|
|
RegOpenKey(HKEY_CURRENT_USER, "Software\\TortoiseSVN", &hTortoise) != ERROR_SUCCESS)
|
|
|
|
/* Tortoise not installed */
|
|
|
|
return 0;
|
|
|
|
command[0] = '"'; /* quote the path to the executable */
|
|
|
|
size = sizeof(command) - 1;
|
|
|
|
if (RegQueryValueEx(hTortoise, "Directory", 0, &type, command+1, &size) != ERROR_SUCCESS ||
|
|
|
|
type != REG_SZ)
|
|
|
|
/* Registry corrupted */
|
|
|
|
return 0;
|
|
|
|
strcat_s(command, CMD_SIZE, "bin\\subwcrev.exe");
|
|
|
|
if (_stat(command+1, &st) < 0)
|
|
|
|
/* subwcrev.exe not part of the release */
|
|
|
|
return 0;
|
2010-11-04 12:21:59 -03:00
|
|
|
strcat_s(command, CMD_SIZE, "\" ..\\.. ..\\..\\Modules\\getbuildinfo.c ");
|
|
|
|
strcat_s(command, CMD_SIZE, tmppath);
|
|
|
|
strcat_s(command, CMD_SIZE, "getbuildinfo2.c");
|
2010-05-09 12:52:27 -03:00
|
|
|
puts(command); fflush(stdout);
|
|
|
|
if (system(command) < 0)
|
|
|
|
return 0;
|
|
|
|
return 1;
|
Merged revisions 59642-59665 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r59653 | martin.v.loewis | 2008-01-01 22:05:17 +0100 (Tue, 01 Jan 2008) | 3 lines
Return results from Python callbacks to Tcl as Tcl objects.
Fixes Tk issue #1851526
........
r59654 | martin.v.loewis | 2008-01-01 22:08:18 +0100 (Tue, 01 Jan 2008) | 4 lines
Always convert Text.index result to string.
This improves compatibility with Tcl 8.5, which would
otherwise return textindex objects.
........
r59655 | martin.v.loewis | 2008-01-01 22:09:07 +0100 (Tue, 01 Jan 2008) | 2 lines
News item for r59653.
........
r59656 | martin.v.loewis | 2008-01-02 00:00:00 +0100 (Wed, 02 Jan 2008) | 1 line
Don't link with Tix; Tix is loaded dynamically by Tcl.
........
r59657 | martin.v.loewis | 2008-01-02 00:00:48 +0100 (Wed, 02 Jan 2008) | 1 line
Use Visual Studio 2009 on the build slaves.
........
r59658 | martin.v.loewis | 2008-01-02 00:36:24 +0100 (Wed, 02 Jan 2008) | 1 line
Test in PCbuild directory.
........
r59661 | kurt.kaiser | 2008-01-02 05:11:28 +0100 (Wed, 02 Jan 2008) | 6 lines
Issue1177
r58207 and r58247 patch logic is reversed. I noticed this when I
tried to use urllib to retrieve a file which required auth.
Fix that and add a test for 401 error to verify.
........
r59662 | kurt.kaiser | 2008-01-02 06:23:38 +0100 (Wed, 02 Jan 2008) | 2 lines
Change docstrings to comments so test output will display normally.
........
r59665 | christian.heimes | 2008-01-02 18:43:40 +0100 (Wed, 02 Jan 2008) | 5 lines
Removed PCbuild8/ directory and added a new build directory for VS 2005
based on the VS 2008 build directory to PC/VS8.0. The script
PCbuild/vs8to9.py was added to sync changes from PCbuild to PC/VS8.0.
Kristjan, the initial creator of the PCbuild8 directory is fine with the replacement. I've moved the new version of the VS 2005 build directory next to the other legacy build directories. The new sync script is based on the work of wreck and syncs changes in the project, property and solution files.
........
2008-01-02 14:30:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char*argv[])
|
|
|
|
{
|
2010-11-04 12:21:59 -03:00
|
|
|
char command[CMD_SIZE] = "cl.exe -c -D_WIN32 -DUSE_DL_EXPORT -D_WINDOWS -DWIN32 -D_WINDLL ";
|
|
|
|
char tmppath[CMD_SIZE] = "";
|
2010-05-09 12:52:27 -03:00
|
|
|
int do_unlink, result;
|
2010-11-04 12:21:59 -03:00
|
|
|
char *tmpdir = NULL;
|
|
|
|
if (argc <= 2 || argc > 3) {
|
|
|
|
fprintf(stderr, "make_buildinfo $(ConfigurationName) [tmpdir]\n");
|
2010-05-09 12:52:27 -03:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
if (strcmp(argv[1], "Release") == 0) {
|
|
|
|
strcat_s(command, CMD_SIZE, "-MD ");
|
|
|
|
}
|
|
|
|
else if (strcmp(argv[1], "Debug") == 0) {
|
|
|
|
strcat_s(command, CMD_SIZE, "-D_DEBUG -MDd ");
|
|
|
|
}
|
|
|
|
else if (strcmp(argv[1], "ReleaseItanium") == 0) {
|
|
|
|
strcat_s(command, CMD_SIZE, "-MD /USECL:MS_ITANIUM ");
|
|
|
|
}
|
|
|
|
else if (strcmp(argv[1], "ReleaseAMD64") == 0) {
|
|
|
|
strcat_s(command, CMD_SIZE, "-MD ");
|
|
|
|
strcat_s(command, CMD_SIZE, "-MD /USECL:MS_OPTERON ");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
fprintf(stderr, "unsupported configuration %s\n", argv[1]);
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
2010-11-04 12:21:59 -03:00
|
|
|
if (argc > 2) {
|
|
|
|
tmpdir = argv[2];
|
|
|
|
strcat_s(tmppath, _countof(tmppath), tmpdir);
|
|
|
|
strcat_s(tmppath, _countof(tmppath), "\\");
|
|
|
|
}
|
Merged revisions 59642-59665 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r59653 | martin.v.loewis | 2008-01-01 22:05:17 +0100 (Tue, 01 Jan 2008) | 3 lines
Return results from Python callbacks to Tcl as Tcl objects.
Fixes Tk issue #1851526
........
r59654 | martin.v.loewis | 2008-01-01 22:08:18 +0100 (Tue, 01 Jan 2008) | 4 lines
Always convert Text.index result to string.
This improves compatibility with Tcl 8.5, which would
otherwise return textindex objects.
........
r59655 | martin.v.loewis | 2008-01-01 22:09:07 +0100 (Tue, 01 Jan 2008) | 2 lines
News item for r59653.
........
r59656 | martin.v.loewis | 2008-01-02 00:00:00 +0100 (Wed, 02 Jan 2008) | 1 line
Don't link with Tix; Tix is loaded dynamically by Tcl.
........
r59657 | martin.v.loewis | 2008-01-02 00:00:48 +0100 (Wed, 02 Jan 2008) | 1 line
Use Visual Studio 2009 on the build slaves.
........
r59658 | martin.v.loewis | 2008-01-02 00:36:24 +0100 (Wed, 02 Jan 2008) | 1 line
Test in PCbuild directory.
........
r59661 | kurt.kaiser | 2008-01-02 05:11:28 +0100 (Wed, 02 Jan 2008) | 6 lines
Issue1177
r58207 and r58247 patch logic is reversed. I noticed this when I
tried to use urllib to retrieve a file which required auth.
Fix that and add a test for 401 error to verify.
........
r59662 | kurt.kaiser | 2008-01-02 06:23:38 +0100 (Wed, 02 Jan 2008) | 2 lines
Change docstrings to comments so test output will display normally.
........
r59665 | christian.heimes | 2008-01-02 18:43:40 +0100 (Wed, 02 Jan 2008) | 5 lines
Removed PCbuild8/ directory and added a new build directory for VS 2005
based on the VS 2008 build directory to PC/VS8.0. The script
PCbuild/vs8to9.py was added to sync changes from PCbuild to PC/VS8.0.
Kristjan, the initial creator of the PCbuild8 directory is fine with the replacement. I've moved the new version of the VS 2005 build directory next to the other legacy build directories. The new sync script is based on the work of wreck and syncs changes in the project, property and solution files.
........
2008-01-02 14:30:52 -04:00
|
|
|
|
2010-11-04 12:21:59 -03:00
|
|
|
if ((do_unlink = make_buildinfo2(tmppath))) {
|
|
|
|
strcat_s(command, CMD_SIZE, tmppath);
|
2010-05-09 12:52:27 -03:00
|
|
|
strcat_s(command, CMD_SIZE, "getbuildinfo2.c -DSUBWCREV ");
|
2010-11-04 12:21:59 -03:00
|
|
|
} else
|
2010-05-09 12:52:27 -03:00
|
|
|
strcat_s(command, CMD_SIZE, "..\\..\\Modules\\getbuildinfo.c");
|
2010-11-04 12:21:59 -03:00
|
|
|
strcat_s(command, CMD_SIZE, " -Fo");
|
|
|
|
strcat_s(command, CMD_SIZE, tmppath);
|
|
|
|
strcat_s(command, CMD_SIZE, "getbuildinfo.o -I..\\..\\Include -I..\\..\\PC");
|
2010-05-09 12:52:27 -03:00
|
|
|
puts(command); fflush(stdout);
|
|
|
|
result = system(command);
|
2010-11-04 12:21:59 -03:00
|
|
|
if (do_unlink) {
|
|
|
|
command[0] = '\0';
|
|
|
|
strcat_s(command, CMD_SIZE, tmppath);
|
|
|
|
strcat_s(command, CMD_SIZE, "getbuildinfo2.c");
|
|
|
|
_unlink(command);
|
|
|
|
}
|
2010-05-09 12:52:27 -03:00
|
|
|
if (result < 0)
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
return 0;
|
|
|
|
}
|