From: Andy Dougherty Date: Sun, 15 Jul 2001 22:52:54 +0000 (-0400) Subject: Remove useless ccflags hints X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0ac8ade191a3daa1a2b035aa05120c2c33501d50;p=p5sagit%2Fp5-mst-13.2.git Remove useless ccflags hints Message-Id: p4raw-id: //depot/perl@11377 --- diff --git a/hints/darwin.sh b/hints/darwin.sh index 9ff2747..ff4b4fb 100644 --- a/hints/darwin.sh +++ b/hints/darwin.sh @@ -43,8 +43,8 @@ usenm='true'; # Optimize. optimize='-O3'; -# We have a prototype for telldir. -ccflags="${ccflags} -pipe -fno-common -DHAS_TELLDIR_PROTOTYPE"; +# XXX Unclear why we require -pipe and -fno-common here. +ccflags="${ccflags} -pipe -fno-common" # At least on Darwin 1.3.x: # diff --git a/hints/rhapsody.sh b/hints/rhapsody.sh index 2fe2b44..96d57f2 100644 --- a/hints/rhapsody.sh +++ b/hints/rhapsody.sh @@ -43,8 +43,8 @@ libc='/System/Library/Frameworks/System.framework/System'; # Optimize. optimize='-O3'; -# We have a prototype for telldir. -ccflags="${ccflags} -pipe -fno-common -DHAS_TELLDIR_PROTOTYPE"; +# XXX Unclear why we require -pipe and -fno-common here. +ccflags="${ccflags} -pipe -fno-common" # cpp-precomp is problematic. cppflags='-traditional-cpp';