diff options
author | Philippe M. Chiasson <gozer@ActiveState.com> | 2006-01-26 05:53:07 -0800 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2006-01-29 10:14:09 +0000 |
commit | 88d4d47ba9f8dddb715907de7e4bc2a830c44480 (patch) | |
tree | b8760e766323212f98e5bc34eba24d8a88d81d49 /Configure | |
parent | b8c701c15b6657c058ab0dd84c78eb210b7618a6 (diff) | |
download | perl-88d4d47ba9f8dddb715907de7e4bc2a830c44480.tar.gz |
Re: [patch] s/ar ts/ar s/g
From: "Philippe M. Chiasson" <gozer@ActiveState.com>
Message-ID: <43D944C3.60101@ActiveState.com>
p4raw-id: //depot/perl@26993
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -26,7 +26,7 @@ # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $ # -# Generated on Wed Jan 11 21:57:24 CET 2006 [metaconfig 3.0 PL70] +# Generated on Sun Jan 29 11:12:44 CET 2006 [metaconfig 3.0 PL70] # (with additional metaconfig patches by perlbug@perl.org) cat >c1$$ <<EOF @@ -19271,6 +19271,12 @@ if $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 && if [ "X$ranlib" = "X" ]; then ranlib=":" fi +elif $ar s bar$_a >/dev/null 2>&1 && + $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 && + $run ./foobar >/dev/null 2>&1; then + echo "a table of contents needs to be added with '$ar s'." + orderlib=false + ranlib="$ar s" elif $ar ts bar$_a >/dev/null 2>&1 && $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 && $run ./foobar >/dev/null 2>&1; then @@ -19295,7 +19301,7 @@ else ranlib=":" fi fi -$rm -f foo* bar* +$rm -f foo* bar* : check for type of arguments to select. case "$selecttype" in |