Skip to content

Commit

Permalink
[perl #31883] [PATCH] MSWin32 Makefile and Exec issues
Browse files Browse the repository at this point in the history
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 <ron@rblasch.org>


git-svn-id: https://svn.parrot.org/parrot/trunk@6791 d31e2699-5ff4-0310-a27c-f18f2fbe73fe
  • Loading branch information
Jens Rieks committed Oct 8, 2004
1 parent d32ce25 commit 36b46ee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion config/gen/makefiles/root.in
Expand Up @@ -453,7 +453,7 @@ MAKE_C = ${make_c}
.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 $@ $<

###############################################################################
Expand Down
2 changes: 2 additions & 0 deletions config/gen/platform/win32/exec.c
@@ -1,3 +1,5 @@
#include <process.h>

/*
* Spawn a subprocess
*
Expand Down

0 comments on commit 36b46ee

Please sign in to comment.