?tches from a few days ago to allow executable creation, the current CVS no longer 
compiles properly on my MacOS X 10.2.6 box.  The error I get is:

exec_save.c:319:16: #if with no expression
make: *** [exec_save.o] Error 1

The following patch seems to fix things, although I don't know if this is the best way 
to do it:

--- exec.h    Mon Jul 28 16:37:58 2003
+++ exec.h      Mon Jul 28 16:38:17 2003
@@ -25,7 +25,7 @@
 #     define EXEC_A_OUT
 #   endif
 #   if EXEC_OS == DARWIN
-#     define EXEC_MACH_O
+#     define EXEC_MACH_O     1
 #   endif
 #   if (EXEC_OS == FREEBSD) || (EXEC_OS == LINUX)
 #     define EXEC_ELF

Reply via email to