diff options
author | H.Merijn Brand <h.m.brand@xs4all.nl> | 2006-12-20 12:58:41 +0000 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2006-12-20 12:58:41 +0000 |
commit | faae14e6e968e1c02f36e42c867ea4746a9fde2f (patch) | |
tree | 0c18c822fe241d499f31046547bd2ad5f7fac1c1 | |
parent | 63031dafabc5d083e95e183670b541c828379c76 (diff) | |
download | perl-faae14e6e968e1c02f36e42c867ea4746a9fde2f.tar.gz |
Open Configure to the world of 64bitonly environments
p4raw-id: //depot/perl@29603
-rwxr-xr-x | Configure | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -26,7 +26,7 @@ # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $ # -# Generated on Tue Dec 5 15:35:51 CET 2006 [metaconfig 3.0 PL70] +# Generated on Wed Dec 20 13:56:55 CET 2006 [metaconfig 3.0 PL70] # (with additional metaconfig patches by perlbug@perl.org) cat >c1$$ <<EOF @@ -1298,6 +1298,7 @@ glibpth="/lib /usr/lib $xlibpth" glibpth="$glibpth /usr/ccs/lib /usr/ucblib /usr/local/lib" test -f /usr/shlib/libc.so && glibpth="/usr/shlib $glibpth" test -f /shlib/libc.so && glibpth="/shlib $glibpth" +test -d /usr/lib64 && glibpth="$glibpth /lib64 /usr/lib64 /usr/local/lib64" : Private path used by Configure to find libraries. Its value : is prepended to libpth. This variable takes care of special @@ -21000,15 +21001,15 @@ eval $find_extensions # Special case: Add in threads/shared since it is not picked up by the # recursive find above (and adding in general recursive finding breaks # SDBM_File/sdbm). A.D. 10/25/2001. -# Ditto for IO/Compress/Base and IO/Compress/Zlib known_extensions="$known_extensions threads/shared" +set X $known_extensions +shift +known_extensions="$*" +# Ditto for IO/Compress/Base and IO/Compress/Zlib nonxs_extensions="$nonxs_extensions IO/Compress/Base IO/Compress/Zlib" set X $nonxs_extensions shift nonxs_extensions="$*" -set X $known_extensions -shift -known_extensions="$*" cd "$tdir" : Now see which are supported on this system. |