cvs commit: ponie Configure.pl
[email protected] (Nicholas Clark) 12 Mar 2004 11:50:15 -0000
| Newsgroups | perl.ponie.changes |
|---|---|
| Message-ID | <[email protected]> |
cvsuser 04/03/12 03:50:15
Modified: . Configure.pl
Log:
For the moment don't use parrot's default gc; instead Configure it with gc=libc
Revision Changes Path
1.13 +2 -1 ponie/Configure.pl
Index: Configure.pl
===================================================================
RCS file: /cvs/public/ponie/Configure.pl,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -w -r1.12 -r1.13
--- Configure.pl 10 Mar 2004 22:49:43 -0000 1.12
+++ Configure.pl 12 Mar 2004 11:50:15 -0000 1.13
@@ -44,7 +44,8 @@
system('rm -f perl5xpvhv.pmc') && die "Error";
system('ln','-s','../../src/pmc/perl5xpvhv.pmc') && die "error";
chdir('..') || die;
- system($^X,'Configure.pl',"--ccflags= :add{ -I$dir/perl}") && die "error";
+ system($^X,'Configure.pl', "--gc=libc",
+ "--ccflags= :add{ -I$dir/perl}") && die "error";
system('make') && die "error";
chdir('..') || die;
}