From: Jarkko Hietaniemi Date: Fri, 29 Jun 2001 12:05:54 +0000 (+0000) Subject: AIX hints tweaking continues, from Merijn Brand. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=56dbb9401d7315e0967c858ef22519111cd3f5c8;p=p5sagit%2Fp5-mst-13.2.git AIX hints tweaking continues, from Merijn Brand. p4raw-id: //depot/perl@11020 --- diff --git a/hints/aix.sh b/hints/aix.sh index a5313d4..baa6bba 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