diff options
author | H.Merijn Brand <h.m.brand@xs4all.nl> | 2002-03-29 13:53:49 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-29 15:08:22 +0000 |
commit | ad493445568d527e22843e14b0411566a510fbce (patch) | |
tree | 136fa6e7c06546dbddc85fb09b3961d1d53066e2 /Configure | |
parent | f6d6199cd6711f5e8a8e6c1a57445fa6f848c822 (diff) | |
download | perl-ad493445568d527e22843e14b0411566a510fbce.tar.gz |
versiononly should not put `old' versions in inc
From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
Message-Id: <20020329125040.8A8C.H.M.BRAND@hccnet.nl>
p4raw-id: //depot/perl@15600
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 44 |
1 files changed, 25 insertions, 19 deletions
@@ -20,7 +20,7 @@ # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $ # -# Generated on Sun Mar 24 23:35:42 EET 2002 [metaconfig 3.0 PL70] +# Generated on Fri Mar 29 18:09:14 EET 2002 [metaconfig 3.0 PL70] # (with additional metaconfig patches by perlbug@perl.org) cat >c1$$ <<EOF @@ -8387,6 +8387,12 @@ esac set versiononly eval $setvar +case "$versiononly" in +"$define") inc_version_list='' + inc_version_list_init=0 + ;; +esac + : figure out how to guarantee perl startup case "$startperl" in '') @@ -16184,6 +16190,24 @@ echo " " set d_telldirproto telldir $i_systypes sys/types.h $i_dirent dirent.h eval $hasproto +: see if time exists +echo " " +if test "X$d_time" = X -o X"$timetype" = X; then + if set time val -f d_time; eval $csym; $val; then + echo 'time() found.' >&4 + val="$define" + rp="What is the type returned by time() on this system?" + set time_t timetype long stdio.h sys/types.h + eval $typedef_ask + else + echo 'time() not found, hope that will do.' >&4 + val="$undef" + timetype='int'; + fi + set d_time + eval $setvar +fi + : see if this is a sys/times.h system set sys/times.h i_systimes eval $inhdr @@ -18736,24 +18760,6 @@ $rm -f stdioh -: see if time exists -echo " " -if test "X$d_time" = X -o X"$timetype" = X; then - if set time val -f d_time; eval $csym; $val; then - echo 'time() found.' >&4 - val="$define" - rp="What is the type returned by time() on this system?" - set time_t timetype long stdio.h sys/types.h - eval $typedef_ask - else - echo 'time() not found, hope that will do.' >&4 - val="$undef" - timetype='int'; - fi - set d_time - eval $setvar -fi - : see what type uids are declared as in the kernel echo " " echo "Looking for the type for user ids returned by getuid()." |