diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1998-09-29 03:56:33 +0300 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-10-02 01:53:25 +0000 |
commit | 85ab1d1d99f8dc082af2267b48b9a2c5983f3161 (patch) | |
tree | 15498360e04711d0a640d19d489175cdf9982398 /hints/irix_6.sh | |
parent | 13b51b796ac5d39ced5a8f4f5922bfa7ca1678d5 (diff) | |
download | perl-85ab1d1d99f8dc082af2267b48b9a2c5983f3161.tar.gz |
various Configure and hints updates (prefer drand48() or random()
over rand(); add -Dusemultiplicity; enhanced 64-bitness); patch
applied modulo SCO hints superseded by later patch
Message-Id: <199809282156.AAA18615@alpha.hut.fi>
Subject: [PATCH] 5.005_52: Configure et al:
p4raw-id: //depot/perl@1904
Diffstat (limited to 'hints/irix_6.sh')
-rw-r--r-- | hints/irix_6.sh | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/hints/irix_6.sh b/hints/irix_6.sh index c19dd05d84..0f6637bfe7 100644 --- a/hints/irix_6.sh +++ b/hints/irix_6.sh @@ -227,7 +227,20 @@ if [ "X$use64bits" = "X$define" ]; then case "$ccflags" in *-n32*) ccflags="$ccflags -DUSE_LONG_LONG" + archname64="-n32" + d_open64="$undef" + # In -n32 mode (ILP32LL64) we use the standard open(). + # In -64 we will use the open64(). + cat << 'EOM' >&2 + +You will see a *** WHOA THERE!!! *** message from Configure for +d_open64. Keep the recommended value. See hints/irix6_2.sh +for more information. + +EOM ;; + *-64*) + ;; esac - ccflags="$ccflags -DUSE_64_BIT_FILES -DNO_OPEN64" + ccflags="$ccflags -DUSE_64_BIT_FILES" fi |