diff options
author | Andy Dougherty <doughera@lafcol.lafayette.edu> | 1995-04-18 01:06:04 +0000 |
---|---|---|
committer | Andy Dougherty <doughera@lafcol.lafayette.edu> | 1995-04-18 01:06:04 +0000 |
commit | f0b7e567eb499713477c3eec4806ba74015e12df (patch) | |
tree | 5e477773bbd88ff38d2f0978ce5f3deeb7ee4119 /Configure | |
parent | 5d94fbed3754780f11eb4db2d2379544cacb60e1 (diff) | |
download | perl-f0b7e567eb499713477c3eec4806ba74015e12df.tar.gz |
perl5.001 patch.1e
Here's what's included:
Configure
Change a few more spots so that ' ' is equivalent to "none".
This allows hint files to set empty values for variables.
Split cpp-symbol awk command for old awk (Harris Night Hawk).
hints/irix_5.sh
hints/irix_6.sh
Explicitly use 'ld' rather than 'cc' to build dynamic modules.
hints/linux.sh
Allow users to specify an alternate compiler on the command line, e.g.
Configure -Dcc=gcc-elf.
lib/ExtUtils/MakeMaker.pm
Fix CC substitution to allow c++ and variants as well.
perl.c
fputs("Unofficial patchlevel 1e.\n",stdout);
pod/Makefile
Include $(TEX) target for running pod2latex.
Include some fixes from Bill Middleton.
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -20,7 +20,7 @@ # $Id: Head.U,v 3.0.1.7 1995/03/21 08:46:15 ram Exp $ # -# Generated on Fri Apr 14 15:43:12 EDT 1995 [metaconfig 3.0 PL53] +# Generated on Mon Apr 17 15:46:57 EDT 1995 [metaconfig 3.0 PL53] cat >/tmp/c1$$ <<EOF ARGGGHHHH!!!!! @@ -4296,7 +4296,7 @@ use no flags, say "none". EOM case "$lddlflags" in - ''|' ') case "$osname" in + '') case "$osname" in hpux) dflt='-b' ;; linux) dflt='-shared' ;; next) dflt='none' ;; @@ -4323,7 +4323,7 @@ say "none". EOM case "$ccdlflags" in - ''|' ') case "$osname" in + '') case "$osname" in hpux) dflt='-Wl,-E' ;; linux) dflt='-rdynamic' ;; next) dflt='none' ;; @@ -7392,7 +7392,8 @@ EOS chmod +x ccsym $eunicefix ccsym ./ccsym | $sort | $uniq >ccsym.raw -$awk '/\=/ { print $0; next } { print $0"=1" }' ccsym.raw >ccsym.list +$awk '/\=/ { print $0; next } + { print $0"=1" }' ccsym.raw >ccsym.list $awk '{ print $0"=1" }' Cppsym.true >ccsym.true $comm -13 ccsym.true ccsym.list >ccsym.own $comm -12 ccsym.true ccsym.list >ccsym.com |