Arthur Bergman: # This gets rid of the very annoying long double might change warning # under Darwin...
Thanks, applied (config/init/hints/darwin.pl version 1.7). However, can you see if the diff below my sig (applied against 1.7, not 1.6) works too? If so, it's probably a more appropriate place to put it. --Brent Dax <[EMAIL PROTECTED]> Perl and Parrot hacker "Yeah, and my underwear is flame-retardant--that doesn't mean I'm gonna set myself on fire to prove it." Index: config/init/hints/darwin.pl =================================================================== RCS file: /cvs/public/parrot/config/init/hints/darwin.pl,v retrieving revision 1.7 diff -u -r1.7 darwin.pl --- config/init/hints/darwin.pl 11 Sep 2003 18:43:41 -0000 1.7 +++ config/init/hints/darwin.pl 11 Sep 2003 18:46:43 -0000 @@ -1,6 +1,6 @@ my($ccflags, $ldflags)=Configure::Data->get(qw(ccflags ldflags)); -$ccflags .= " -pipe -fno-common -Wno-long-double "; +$ccflags .= " -pipe -fno-common "; $ccflags =~ s/-flat_namespace\s*//; $ldflags =~ s/-flat_namespace\s*//; $ldflags .= " -flat_namespace "; @@ -8,5 +8,5 @@ Configure::Data->set( ccflags => $ccflags, ldflags => $ldflags, - cc_warn => "-Wno-shadow", + cc_warn => "-Wno-shadow -Wno-long-double", );
