diff options
author | Nicholas Clark <nick@ccl4.org> | 2004-01-26 21:11:09 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2004-01-26 21:11:09 +0000 |
commit | 3d46c0effc5d277d5b786d211a0e1ad0c7a2c9fb (patch) | |
tree | 74c747e195b7534a190857c33719b6cc980f26be /Configure | |
parent | c17baaa106ce7e0011ce0026cff11932db8a490c (diff) | |
download | perl-3d46c0effc5d277d5b786d211a0e1ad0c7a2c9fb.tar.gz |
Integrate:
[ 22043]
Use the optimization level -O2 by default on Linux/gcc.
See :
Subject: Benchmarking (was Re: GCC bug breaking Perl_sv_catpvfn()?)
From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
Date: Thu, 1 Jan 2004 05:32:15 +0100
Message-ID: <071601c3d020$4046d2a0$d500a8c0@R2D2>
[ 22057]
Subject: [PATCH configure.com] future-proof signal check
From: "Craig A. Berry" <craigberry@mac.com>
Date: Sun, 04 Jan 2004 22:53:40 -0600
Message-ID: <3FF8EDD4.3080308@mac.com>
[ 22120]
Subject: [PATCH] Make 'Configure -Dcf_by=...' work
From: Gisle Aas <gisle@ActiveState.com>
Date: 12 Jan 2004 02:35:27 -0800
Message-ID: <lrvfnh315c.fsf@caliper.activestate.com>
[ 22173]
Subject: [PATCH bleadperl] detect nanosleep on VMS
Date: Sun, 18 Jan 2004 17:03:30 -0600
From: "Craig A. Berry" <craigberry@mac.com>
Message-ID: <400B10C2.9060504@mac.com>
[ 22175]
Describe how to limit the perl's default @INC during Configure
to _not_ include older versions
[ 22177]
Allow -Uinc_version_list to mean -Dinc_version_list=none
See INSTALL for more details
p4raw-link: @22177 on //depot/perl: d2556f21d71ad9b4d9444ec45f73027fe044fcfc
p4raw-link: @22175 on //depot/perl: 3f847123752a7345ec427e2d90c1dc121823a61a
p4raw-link: @22173 on //depot/perl: 02e1c2f1c4f0858353f9cc49bc10789e69f32bb5
p4raw-link: @22120 on //depot/perl: 7c04078ea21d9035bc412dbd7b8edf35773a2c43
p4raw-link: @22057 on //depot/perl: dfc1d8886424c8cecb2f02982ff2ebcc36eb57c5
p4raw-link: @22043 on //depot/perl: 051e4fe1efae394fc029e116526cd46285a0a0df
p4raw-id: //depot/maint-5.8/perl@22220
p4raw-integrated: from //depot/perl@22219 'copy in' hints/linux.sh
(@21673..) Configure (@22120..) 'merge in' INSTALL (@21661..)
p4raw-integrated: from //depot/perl@22057 'edit in' configure.com
(@21944..)
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -20,7 +20,7 @@ # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $ # -# Generated on Fri Dec 5 12:57:38 MET 2003 [metaconfig 3.0 PL70] +# Generated on Mon Jan 19 17:27:25 MET 2004 [metaconfig 3.0 PL70] # (with additional metaconfig patches by perlbug@perl.org) cat >c1$$ <<EOF @@ -3458,12 +3458,15 @@ esac : who configured the system cf_time=`LC_ALL=C; LANGUAGE=C; export LC_ALL; export LANGUAGE; $date 2>&1` -cf_by=`(logname) 2>/dev/null` case "$cf_by" in "") - cf_by=`(whoami) 2>/dev/null` + cf_by=`(logname) 2>/dev/null` case "$cf_by" in - "") cf_by=unknown ;; + "") + cf_by=`(whoami) 2>/dev/null` + case "$cf_by" in + "") cf_by=unknown ;; + esac ;; esac ;; esac @@ -6873,7 +6876,7 @@ EOM rp='List of earlier versions to include in @INC?' . ./myread case "$ans" in -[Nn]one|''|' ') inc_version_list=' ' ;; +[Nn]one|''|' '|$undef) inc_version_list=' ' ;; *) inc_version_list="$ans" ;; esac case "$inc_version_list" in |