diff options
author | Andy Dougherty <doughera@lafcol.lafayette.edu> | 1995-03-10 23:34:12 +0000 |
---|---|---|
committer | Andy Dougherty <doughera@lafcol.lafayette.edu> | 1995-03-10 23:34:12 +0000 |
commit | fec02dd38faf8f83471b031857d89cb76fea1ca0 (patch) | |
tree | 08cf20e0c29e7a13cc3953d509bf2477ac643908 /hints/machten.sh | |
parent | 1fc4cb5503ed4e568f4cafd2aff20f315226e3bd (diff) | |
download | perl-fec02dd38faf8f83471b031857d89cb76fea1ca0.tar.gz |
perl5.000 patch.0o: [address] a few more Configure and build nits.perl-5.000o
This patch addresses a few more Configure and build nits. Full
details are given below, but the main hightligths are (slightly)
better support for nested extensions and DLD and AIX MakeMaker fixes.
Configure
Detect MachTen. Thanks to Mark Pease <peasem@primenet.com>.
Delete some tabs that caused a MachTen /bin/sh core dump!
Detect extensions nested 1 level deep, e.g. Devel/DProf/DProf.xs
MANIFEST
MANIFEST.new
Include new hints/machten.sh hint file.
Makefile.SH
Document why we use ./makedir instead of mkdir.
U/Extensions.U
Detect extensions nested 1 level deep, e.g. Devel/DProf/DProf.xs
U/dist3_051.pat
Include MachTen patches.
configpm
Convert nested extension names from filesytem-dependent Devel/DProf
to perl5's internal naming scheme Devel::DProf.
doio.c
A dup-related buglet fix from Hallvard B. Furuseth
<h.b.furuseth@usit.uio.no>.
ext/DB_File/DB_File.pm
ext/DynaLoader/DynaLoader.pm
ext/Fcntl/Fcntl.pm
ext/GDBM_File/GDBM_File.pm
ext/POSIX/POSIX.pm
ext/Socket/Socket.pm
Throw a qw() around @ISA elements to show "good style".
hints/machten.sh
new file.
lib/ExtUtils/MakeMaker.pm
Bump version number to 4.086.
Fix AIX buglet -- needed to specify NAME.
Linux/DLD/gcc-2.6.2: We no longer load .sa libraries (except
libm.sa, which is apparently still o.k.
util.c
Another dup-related buglet fix.
Diffstat (limited to 'hints/machten.sh')
-rw-r--r-- | hints/machten.sh | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/hints/machten.sh b/hints/machten.sh new file mode 100644 index 0000000000..cbf634ab67 --- /dev/null +++ b/hints/machten.sh @@ -0,0 +1,27 @@ +# machten.sh +# This file has been put together by Mark Pease <peasem@primenet.com> +# Comments, questions, and improvements welcome! +# +# MachTen does not support dynamic loading. If you wish to, you +# can get <ftp://tsx-11.mit.edu/pub/linux/sources/libs/dld-src-3.2.4.tar.gz> +# compile and install. This is the version of DLD that works with the +# ext/DynaLoader/dl_dld.xs in the perl5 package. Have fun! +# +# Original version was for MachTen 2.1.1. +# Last modified by Andy Dougherty <doughera@lafcol.lafayette.edu> +# Wed Mar 8 15:58:05 EST 1995 + +# I don't know why this is needed. It might be similar to NeXT's +# problem. See hints/next_3_2.sh. +usemymalloc='n' + +so='none' +# These are useful only if you have DLD, but harmless otherwise. +lddlflags='-r' +dlext='o' + +# MachTen does not support POSIX enough to compile the POSIX module. +useposix=false + +#MachTen might have an incomplete Berkeley DB implementation. +i_db=$undef |