diff options
author | Kurt D. Starsinic <kstar@wolfetech.com> | 1998-12-09 19:51:46 -0500 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1998-12-14 15:02:44 +0000 |
commit | cc628cc3888218d0946be2424363b397261343b9 (patch) | |
tree | 97ecb80c53397bae8dad1aa9a7c1b9207ff24879 /hints | |
parent | ee11c7bf037fcd72e081505ec7c4340afb3c01a8 (diff) | |
download | perl-cc628cc3888218d0946be2424363b397261343b9.tar.gz |
Give up completely using nm in AIX.
To: Gurusamy Sarathy <gsar@engin.umich.edu>, Jarkko Hietaniemi <jhi@iki.fi>
Cc: perl5-porters@perl.org
Subject: [PATCH 5.005_54] AIX 4.3.1.0 fails to locate some functions
Message-ID: <19981210005146.B29986@O2.chapin.edu>
p4raw-id: //depot/cfgperl@2480
Diffstat (limited to 'hints')
-rw-r--r-- | hints/aix.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/hints/aix.sh b/hints/aix.sh index 25e2048931..25e3e38257 100644 --- a/hints/aix.sh +++ b/hints/aix.sh @@ -19,6 +19,10 @@ alignbytes=8 usemymalloc='n' +# Intuiting the existence of system calls under AIX is difficult, +# at best; the safest technique is to find them empirically. +usenm='undef' + so="a" dlext="so" @@ -97,6 +101,6 @@ EOM # Make sure the c_r library is before the c library or # make will fail. set `echo X "$libswanted "| sed -e 's/ c / c_r c /'` - shift +p shift libswanted="$*" fi |