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 /lib | |
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 'lib')
-rw-r--r-- | lib/ExtUtils/MakeMaker.pm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/ExtUtils/MakeMaker.pm b/lib/ExtUtils/MakeMaker.pm index d8d5d6fb30..fb2dc14af4 100644 --- a/lib/ExtUtils/MakeMaker.pm +++ b/lib/ExtUtils/MakeMaker.pm @@ -1,6 +1,6 @@ package ExtUtils::MakeMaker; -$Version = 4.093; # Last edited 12 Apr 1995 by Andy Dougherty +$Version = 4.094; # Last edited 17 Apr 1995 by Andy Dougherty use Config; use Carp; @@ -1229,7 +1229,7 @@ sub const_cccmd{ ."Please notify perl5-porters\@nicoh.com\n"; } my($cccmd)=($old) ? $old : $new; - $cccmd =~ s/\b\Q$Config{'cc'}\E\b/\$(CC)/; + $cccmd =~ s/^\s*\Q$Config{'cc'}\E\s/\$(CC) /; "CCCMD = $cccmd\n"; } @@ -2436,7 +2436,6 @@ v4.091 April 3 1995 by Andy Dougherty Another attempt to fix writedoc() from Dean Roehrich. - v4.092 April 11 1994 by Andreas Koenig Fixed a docu bug in hint file description. Added printing of a warning @@ -2469,7 +2468,9 @@ are handled. Include Tim's suggestions about $verbose and more careful substitution of $(CC) for $Config{'cc'}. -Minor cosmetic fixes for my 80-character wide terminal. +v4.094 April 12 1994 by Andy Dougherty + +Include Andreas' improvement of $(CC) detection. =head1 NOTES |