cvsuser 02/07/17 23:57:30
Modified: config/auto alignptrs.pl
Log:
Third try at making Configure correctly detect aligned-ness requirements of pointers
Revision Changes Path
1.3 +1 -1 parrot/config/auto/alignptrs.pl
Index: alignptrs.pl
===================================================================
RCS file: /cvs/public/parrot/config/auto/alignptrs.pl,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -w -r1.2 -r1.3
--- alignptrs.pl 18 Jul 2002 06:23:37 -0000 1.2
+++ alignptrs.pl 18 Jul 2002 06:57:30 -0000 1.3
@@ -15,7 +15,7 @@
cc_clean();
#if there are warnings, they are in $results
- if ($results =~ /^\d+OK$/) {
+ if ($results =~ /^(\d+)OK$/ and $1 ne "0") {
Configure::Data->set(
aligned_ptrs => 0,
);