diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-10-22 22:44:44 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-10-22 22:44:44 +0000 |
commit | 0d9ec2f4d93b0001a98026d5ab6b7f125cbebd38 (patch) | |
tree | f4d081cd2671e4e68658007854bc79dc9193ccc7 /hints | |
parent | f43524ab115fb9b12f07a597c7920f79666be222 (diff) | |
download | perl-0d9ec2f4d93b0001a98026d5ab6b7f125cbebd38.tar.gz |
so back to 'so', from Stephanie Beals <bealzy@us.ibm.com>
p4raw-id: //depot/cfgperl@4422
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 60ca22a74f..01017e2684 100644 --- a/hints/aix.sh +++ b/hints/aix.sh @@ -61,7 +61,11 @@ case "$osvers" in esac so="a" -dlext="o" +# AIX itself uses .o (libc.o) but we prefer compatibility +# with the rest of the world and with rest of the scripting +# languages (Tcl, Python) and related systems (SWIG). +# Stephanie Beals <bealzy@us.ibm.com> +dlext="so" # Trying to set this breaks the POSIX.c compilation |