spread the extern "C" { } magic pixie dust around. Python itself builds now

using a C++ compiler. Still lots and lots of errors in the modules built by
setup.py, and a bunch of warnings from g++ in the core.
This commit is contained in:
Anthony Baxter 2006-04-13 02:06:09 +00:00
parent 28c5f1fa16
commit ac6bd46d5c
12 changed files with 112 additions and 0 deletions

View file

@ -29,6 +29,10 @@
"Type \"help\", \"copyright\", \"credits\" or \"license\" " \
"for more information."
#ifdef __cplusplus
extern "C" {
#endif
/* For Py_GetArgcArgv(); set by main() */
static char **orig_argv;
static int orig_argc;
@ -540,3 +544,8 @@ Py_GetArgcArgv(int *argc, char ***argv)
*argc = orig_argc;
*argv = orig_argv;
}
#ifdef __cplusplus
}
#endif