diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-08-13 22:59:56 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-08-13 22:59:56 +0000 |
commit | 88d5303d191e58a0c71dd3c473c0a89f4f526d8c (patch) | |
tree | a6408031ee25562a67555eb5878d207b01f3e720 /Configure | |
parent | d9b3e12dc6d5d94bcf6692f9359e377c8a7dcdd6 (diff) | |
download | perl-88d5303d191e58a0c71dd3c473c0a89f4f526d8c.tar.gz |
BYTEORDER fix.
p4raw-id: //depot/cfgperl@3983
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 12 |
1 files changed, 9 insertions, 3 deletions
@@ -20,7 +20,7 @@ # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $ # -# Generated on Sat Aug 14 00:51:07 EET DST 1999 [metaconfig 3.0 PL70] +# Generated on Sat Aug 14 02:00:00 EET DST 1999 [metaconfig 3.0 PL70] # (with additional metaconfig patches by perlbug@perl.com) cat >/tmp/c1$$ <<EOF @@ -6441,8 +6441,13 @@ esac rp='Try to use long doubles if available?' . ./myread case "$ans" in -y|Y) val="$define" ;; -*) val="$undef" ;; +y|Y) + val="$define" + ccflags="$ccflags -DUSE_LONG_DOUBLE" + ;; +*) + val="$undef" + ;; esac set uselongdouble eval $setvar @@ -7974,6 +7979,7 @@ EOM esac else echo "I can't compile and run the test program." >&4 + echo "I'm guessing that dlsym doesn't need a leading underscore." >&4 fi ;; esac |