Patch #1324762: Change --with-cxx to --with-cxx-main.

This commit is contained in:
Martin v. Löwis 2006-04-14 14:34:26 +00:00
parent 15be5ec100
commit 0f48d98b74
6 changed files with 290 additions and 365 deletions

View file

@ -1,11 +0,0 @@
/* Minimal main program -- everything is loaded from the library */
#include "Python.h"
extern "C"
DL_EXPORT(int) Py_Main( int argc, char *argv[] );
int main( int argc, char *argv[] )
{
return Py_Main(argc, argv);
}