summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Modules/config.c.in10
1 files changed, 6 insertions, 4 deletions
diff --git a/Modules/config.c.in b/Modules/config.c.in
index db8d7c5070..d4e09b5765 100644
--- a/Modules/config.c.in
+++ b/Modules/config.c.in
@@ -28,6 +28,11 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "config.h"
#endif
+#ifdef macintosh
+/* The Macintosh main program is in macmain.c */
+#define NO_MAIN
+#endif
+
#include <stdio.h>
#include <string.h>
@@ -52,9 +57,6 @@ main(argc, argv)
int argc;
char **argv;
{
-#ifdef macintosh
- wargs(&argc, &argv);
-#endif
argv0 = argv[0];
realmain(argc, argv);
}
@@ -111,7 +113,7 @@ getcopyright()
#ifndef PYTHONPATH
#ifdef macintosh
-#define PYTHONPATH ": :Lib :Lib:stdwin :Demo"
+#define PYTHONPATH ": :Lib :Lib:stdwin :Lib:test :Lib:mac"
#endif /* macintosh */
#endif /* !PYTHONPATH */