summaryrefslogtreecommitdiff
path: root/hints
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-06-29 12:05:54 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-06-29 12:05:54 +0000
commit56dbb9401d7315e0967c858ef22519111cd3f5c8 (patch)
tree599dc583a54972d1df27169d11c7210773061c8a /hints
parent16c1da1211c8638b12e6da8a0d363a88ae4a57e5 (diff)
downloadperl-56dbb9401d7315e0967c858ef22519111cd3f5c8.tar.gz
AIX hints tweaking continues, from Merijn Brand.
p4raw-id: //depot/perl@11020
Diffstat (limited to 'hints')
-rw-r--r--hints/aix.sh18
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