Change 33887 by [EMAIL PROTECTED] on 2008/05/20 15:30:30

        Subject: Re: Change 33843: [perl #54120] [PATCH] [metaconfig] Need more 
-fstack-protector
        From: Andy Dougherty <[EMAIL PROTECTED]>
        Date: Tue, 20 May 2008 11:21:14 -0400 (EDT)
        Message-ID: <[EMAIL PROTECTED]>

Affected files ...

... //depot/perl/Configure#692 edit

Differences ...

==== //depot/perl/Configure#692 (xtext) ====
Index: perl/Configure
--- perl/Configure#691~33845~   2008-05-17 07:29:24.000000000 -0700
+++ perl/Configure      2008-05-20 08:30:30.000000000 -0700
@@ -25,7 +25,7 @@
 
 # $Id: Head.U 6 2006-08-25 22:21:46Z rmanfredi $
 #
-# Generated on Sat May 17 16:03:30 CEST 2008 [metaconfig 3.5 PL0]
+# Generated on Tue May 20 17:29:22 CEST 2008 [metaconfig 3.5 PL0]
 # (with additional metaconfig patches by [EMAIL PROTECTED])
 
 cat >c1$$ <<EOF
@@ -5261,13 +5261,18 @@
        case "$ccflags" in
        *-posix*) dflt="$dflt -posix" ;;
        esac
-       # See note above about -fstack-protector
-       case "$ccflags" in
-       *-fstack-protector*) dflt="$dflt -fstack-protector" ;;
-       esac
        ;;
 *) dflt="$ldflags";;
 esac
+# See note above about -fstack-protector
+case "$ccflags" in
+*-fstack-protector*) 
+       case "$dflt" in
+       *-fstack-protector*) ;; # Don't add it again
+       *) dflt="$dflt -fstack-protector" ;; 
+       esac
+       ;;
+esac
 
 : Try to guess additional flags to pick up local libraries.
 for thislibdir in $libpth; do
@@ -20797,29 +20802,6 @@
 set i_gdbm
 eval $setvar
 
-: see if this is a ieeefp.h system
-case "$i_ieeefp" in
-'' ) set ieeefp.h i_ieeefp
-     eval $inhdr
-     ;;
-esac
-
-: see if this is a libutil.h system
-set libutil.h i_libutil
-eval $inhdr
-
-: see if mach cthreads are available
-if test "X$usethreads" = "X$define"; then
-       set mach/cthreads.h i_machcthr
-       eval $inhdr
-else
-       i_machcthr="$undef"
-fi
-
-: see if this is a mntent.h system
-set mntent.h i_mntent
-eval $inhdr
-
 : see if ndbm.h is available
 set ndbm.h i_ndbm
 eval $inhdr
@@ -20849,6 +20831,29 @@
 set d_ndbm
 eval $setvar
 
+: see if this is a ieeefp.h system
+case "$i_ieeefp" in
+'' ) set ieeefp.h i_ieeefp
+     eval $inhdr
+     ;;
+esac
+
+: see if this is a libutil.h system
+set libutil.h i_libutil
+eval $inhdr
+
+: see if mach cthreads are available
+if test "X$usethreads" = "X$define"; then
+       set mach/cthreads.h i_machcthr
+       eval $inhdr
+else
+       i_machcthr="$undef"
+fi
+
+: see if this is a mntent.h system
+set mntent.h i_mntent
+eval $inhdr
+
 : see if net/errno.h is available
 val=''
 set net/errno.h val
End of Patch.

Reply via email to