summaryrefslogtreecommitdiff
path: root/hints
diff options
context:
space:
mode:
authorAndy Dougherty <doughera@lafayette.edu>2001-07-15 18:52:54 -0400
committerNick Ing-Simmons <nik@tiuk.ti.com>2001-07-16 13:17:28 +0000
commit0ac8ade191a3daa1a2b035aa05120c2c33501d50 (patch)
tree6b1cc2467a1ee88188de7a87b238017dc31359d3 /hints
parent4322f456c231b325334e8dc3c4f87b4eb1f04a50 (diff)
downloadperl-0ac8ade191a3daa1a2b035aa05120c2c33501d50.tar.gz
Remove useless ccflags hints
Message-Id: <Pine.SOL.4.10.10107152250230.10344-100000@maxwell.phys.lafayette.edu> p4raw-id: //depot/perl@11377
Diffstat (limited to 'hints')
-rw-r--r--hints/darwin.sh4
-rw-r--r--hints/rhapsody.sh4
2 files changed, 4 insertions, 4 deletions
diff --git a/hints/darwin.sh b/hints/darwin.sh
index 9ff2747428..ff4b4fbf4d 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 2fe2b44da0..96d57f2412 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';