cvsuser 04/10/08 02:26:20
Modified: config/gen/platform/win32 exec.c
config/gen/makefiles root.in
Log:
[perl #31883] [PATCH] MSWin32 Makefile and Exec issues
Replaced
%.pbc:%.imc
with
.pbc.imc:
as former is not supported by nmake.
config/gen/makefiles/root.in
Added #include <process.h> for _execvp declaration.
Courtesy of Ron Blaschke <[EMAIL PROTECTED]>
Revision Changes Path
1.10 +2 -0 parrot/config/gen/platform/win32/exec.c
Index: exec.c
===================================================================
RCS file: /cvs/public/parrot/config/gen/platform/win32/exec.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -w -r1.9 -r1.10
--- exec.c 7 Aug 2004 14:09:39 -0000 1.9
+++ exec.c 8 Oct 2004 09:26:18 -0000 1.10
@@ -1,3 +1,5 @@
+#include <process.h>
+
/*
* Spawn a subprocess
*
1.250 +2 -2 parrot/config/gen/makefiles/root.in
Index: root.in
===================================================================
RCS file: /cvs/public/parrot/config/gen/makefiles/root.in,v
retrieving revision 1.249
retrieving revision 1.250
diff -u -w -r1.249 -r1.250
--- root.in 8 Oct 2004 07:08:31 -0000 1.249
+++ root.in 8 Oct 2004 09:26:20 -0000 1.250
@@ -1,4 +1,4 @@
-# $Id: root.in,v 1.249 2004/10/08 07:08:31 sfink Exp $
+# $Id: root.in,v 1.250 2004/10/08 09:26:20 jrieks Exp $
###############################################################################
#
@@ -453,7 +453,7 @@
.c$(O) :
@$(PERL) tools/dev/cc_flags.pl ./CFLAGS $(CC) "" $(CFLAGS) -I$(@D)
${cc_o_out}$@ -c $<
-%.pbc:%.imc
+.pbc.imc:
.${slash}$(TEST_PROG) -o $@ $<
###############################################################################