From: Jarkko Hietaniemi Date: Tue, 25 May 1999 21:59:21 +0000 (+0000) Subject: Cures for _57 in AIX 4.1.5.0. X-Git-Tag: accepted/trunk/20130322.191538~36387 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=366e399a4ddea371332acd3b46db7692b92ac76c;p=platform%2Fupstream%2Fperl.git Cures for _57 in AIX 4.1.5.0. (1) The lddlflags lost its -lc by change #3660 (and the politeness of change #3257). (2) optype_size must end up in perl.exp (as PL_optype_size). Added it to perlvars.h, fixed bytecode.pl, regen'ed the relevant headers. p4raw-link: @3660 (not found) p4raw-link: @3257 on //depot/cfgperl: 5f3774a9b49fbaa1b06fec2cad77079ee509d6ca p4raw-id: //depot/perl@3479 --- diff --git a/hints/aix.sh b/hints/aix.sh index d5ce755..995fc9c 100644 --- a/hints/aix.sh +++ b/hints/aix.sh @@ -104,10 +104,10 @@ esac # symbol: boot_$(EXP) can it be auto-generated? case "$osvers" in 3*) - lddlflags='-H512 -T512 -bhalt:4 -bM:SRE -bI:$(PERL_INC)/perl.exp -bE:$(BASEEXT).exp -e _nostart' + lddlflags="$lddlflags -H512 -T512 -bhalt:4 -bM:SRE -bI:$(PERL_INC)/perl.exp -bE:$(BASEEXT).exp -e _nostart -c" ;; *) - lddlflags='-bhalt:4 -bM:SRE -bI:$(PERL_INC)/perl.exp -bE:$(BASEEXT).exp -b noentry' + lddlflags="$lddlflags -bhalt:4 -bM:SRE -bI:$(PERL_INC)/perl.exp -bE:$(BASEEXT).exp -b noentry -c" ;; esac