Change 11377 by nick@camel-linux on 2001/07/16 13:17:28
Subject: [PATCH 5.7.2] Remove useless ccflags hints
From: Andy Dougherty <[EMAIL PROTECTED]>
Date: Sun, 15 Jul 2001 22:52:54 -0400 (EDT)
Message-Id:
<[EMAIL PROTECTED]>
Affected files ...
... //depot/perl/hints/darwin.sh#10 edit
... //depot/perl/hints/rhapsody.sh#7 edit
Differences ...
==== //depot/perl/hints/darwin.sh#10 (text) ====
Index: perl/hints/darwin.sh
--- perl/hints/darwin.sh.~1~ Mon Jul 16 07:30:05 2001
+++ perl/hints/darwin.sh Mon Jul 16 07:30:05 2001
@@ -43,8 +43,8 @@
# 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:
#
==== //depot/perl/hints/rhapsody.sh#7 (text) ====
Index: perl/hints/rhapsody.sh
--- perl/hints/rhapsody.sh.~1~ Mon Jul 16 07:30:05 2001
+++ perl/hints/rhapsody.sh Mon Jul 16 07:30:05 2001
@@ -43,8 +43,8 @@
# 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';
End of Patch.