removed [] characters from test program- m4 would discard them otherwise.
authorkramm <kramm>
Fri, 15 Oct 2004 08:17:50 +0000 (08:17 +0000)
committerkramm <kramm>
Fri, 15 Oct 2004 08:17:50 +0000 (08:17 +0000)
m4/python.m4

index 9f958ad..7131543 100644 (file)
@@ -37,10 +37,10 @@ if test "x$PY_VERSION" "!=" "x"; then
 #include <Python.h>
 #include <Imaging.h>
 
-int main(int argn, char*argv[])
+int main()
 {
     int ret;
-    ret = Py_Main(argn, argv);
+    ret = Py_Main(0, 0);
     int x; // check also for gcc 2.95.x incompatibilities
     return ret;
 }