diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-05-25 21:59:21 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-05-25 21:59:21 +0000 |
commit | 366e399a4ddea371332acd3b46db7692b92ac76c (patch) | |
tree | bbb192e9d3130b3d005efb15d4a30a0429545b87 /hints | |
parent | 3239fffd94e3f194c659a33f1fc2cf3c767bc537 (diff) | |
download | perl-366e399a4ddea371332acd3b46db7692b92ac76c.tar.gz |
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
Diffstat (limited to 'hints')
-rw-r--r-- | hints/aix.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hints/aix.sh b/hints/aix.sh index d5ce75529d..995fc9c5f2 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 |