diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-29 12:05:54 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-29 12:05:54 +0000 |
commit | 56dbb9401d7315e0967c858ef22519111cd3f5c8 (patch) | |
tree | 599dc583a54972d1df27169d11c7210773061c8a /hints/aix.sh | |
parent | 16c1da1211c8638b12e6da8a0d363a88ae4a57e5 (diff) | |
download | perl-56dbb9401d7315e0967c858ef22519111cd3f5c8.tar.gz |
AIX hints tweaking continues, from Merijn Brand.
p4raw-id: //depot/perl@11020
Diffstat (limited to 'hints/aix.sh')
-rw-r--r-- | hints/aix.sh | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/hints/aix.sh b/hints/aix.sh index a5313d49c7..baa6bbae85 100644 --- a/hints/aix.sh +++ b/hints/aix.sh @@ -53,13 +53,21 @@ esac # AIX 4.3.* and above default to using nm for symbol extraction case "$osvers" in - 3.*|4.1.*|4.2.*|4.3.0.*) - usenm='undef' - usenativedlopen='false' + 3.*|4.1.*|4.2.*) + case "$usenm" in + '') usenm='undef' + esac + case "$usenativedlopen" in + '') usenativedlopen='false' + esac ;; *) - usenm='true' - usenativedlopen='true' + case "$usenm" in + '') usenm='true' + esac + case "$usenativedlopen" in + '') usenativedlopen='true' + esac ;; esac |