summaryrefslogtreecommitdiff
path: root/hints/freebsd.sh
diff options
context:
space:
mode:
authorAndy Dougherty <doughera@lafcol.lafayette.edu>1995-06-22 00:43:21 +0000
committerAndy Dougherty <doughera@lafcol.lafayette.edu>1995-06-22 00:43:21 +0000
commite50aee73b3d4c555c37e4b4a16694765fb16c887 (patch)
tree46b50fff5f53a49b55d0ff3f4e1816e427264375 /hints/freebsd.sh
parent4aa0a1f7324b8447469670a1b2427c3ac2428bae (diff)
downloadperl-e50aee73b3d4c555c37e4b4a16694765fb16c887.tar.gz
This is my patch patch.1m for perl5.001.
To apply, change to your perl directory, run the command above, then apply with patch -p1 -N < thispatch. Highlights of this patch include: 1. Fixes for $sitelib, $d_stdio_ptr_lval, and $d_stdio_cnt_lval when config.sh is re-used. 2. Move embed.h, keywords.h, and opcode.h dependencies to a special regen_headers target that is ordinarily not used. This is now analogous to the run_byacc target. As a cosmetic side-effect, I transliterated embed_h.sh into embed.pl so that it can run on non-unix systems as well. 3. Tests for gdbm_{sync,exists,setopt} in GDBM_File (needed for Slackware 2.1). For good measure, I've also thrown in the following patches I pulled off the list, mostly unmodified from the originals. 1. Larry's "unofficial official" fix for the subroutine array context problem. 2. Tim's __DATA__ patch. (I kept forgetting about this one.) 3. Malcom's USE_OP_MASK patch to pave the way for his Safe extension. 4. Spider's suggested renaming of regexec to pregexec and regcomp to pregcomp to avoid conflicts with POSIX symbols on Digital Unix. (I only added a brief explanatory comment to the relevant .c files.) 5. Spider's installperl patch to avoid installing *.orig and and the .exists files. (I changed this a little to include patch's ~ suffix, which is used on systems with short file names (in some versions of patch)). 6. Raphael's "safe_unlink" patch to installperl, in case a copy of perl is currently runniung. 7. xsubpp 1.9. 8. Tim's lib.pm module (with patched corrected spelling of 2nd :-). 9. Tim's Exporter module version patches. 10. Tim's MakeMaker patches for make test when LINKTYPE=static. 11. Randal's pod2html patches. 12. Spider's "picky compiler" patches for x2p/util.[ch] 13. Paul's updated source filtering patches. Patch and enjoy. I hope nothing breaks :-). Andy Dougherty doughera@lafcol.lafayette.edu Dept. of Physics Lafayette College, Easton PA 18042
Diffstat (limited to 'hints/freebsd.sh')
-rw-r--r--hints/freebsd.sh39
1 files changed, 20 insertions, 19 deletions
diff --git a/hints/freebsd.sh b/hints/freebsd.sh
index 74bae055bf..756ad78981 100644
--- a/hints/freebsd.sh
+++ b/hints/freebsd.sh
@@ -14,9 +14,6 @@
# Ollivier Robert <Ollivier.Robert@keltia.frmug.fr.net>
# Date: Fri, 12 May 1995 14:30:38 +0200 (MET DST)
#
-# FreeBSD has the dynamic loading dl*() functions in /usr/lib/crt0.o,
-# so Configure doesn't find them (unless you abandon the nm scan).
-#
# The two flags "-fpic -DPIC" are used to indicate a
# will-be-shared object. Configure will guess the -fpic, (and the
# -DPIC is not used by perl proper) but the full define is included to
@@ -31,9 +28,7 @@ case "$osvers" in
0.*|1.0*)
usedl="$undef"
;;
-1.1*) d_dlopen="$define"
- cccdlflags='-DPIC -fpic'
- lddlflags="-Bshareable $lddlflags"
+1.1*)
malloctype='void *'
groupstype='int'
d_setregid='undef'
@@ -41,10 +36,7 @@ case "$osvers" in
d_setrgid='undef'
d_setruid='undef'
;;
-2.0-RELEASE*)
- d_dlopen="$define"
- cccdlflags='-DPIC -fpic'
- lddlflags="-Bshareable $lddlflags"
+2.0-release*)
d_setregid='undef'
d_setreuid='undef'
d_setrgid='undef'
@@ -55,17 +47,26 @@ case "$osvers" in
# It does not covert all 2.1-current versions as the output of uname
# changed a few times.
#
-2.0.5*|2.0-BUILD|2.1*)
- d_dlopen="$define"
- cccdlflags='-DPIC -fpic'
+2.0.5*|2.0-built*|2.1*)
+ usevfork='true'
+ d_dosuid='define'
+ ;;
+#
+# Guesses at what will be needed after 2.1
+*) usevfork='true'
+ d_dosuid='define'
+ ;;
+esac
+
+# Dynamic Loading flags have not changed much, so they are separated
+# out here to avoid duplicating them everywhere.
+case "$osvers" in
+0.*|1.0*) ;;
+*) cccdlflags='-DPIC -fpic'
lddlflags="-Bshareable $lddlflags"
- # Are these defines necessary? Doesn't Configure find them
- # correctly?
- d_setregid='define'
- d_setreuid='define'
- d_setrgid='define'
- d_setruid='define'
+ ;;
esac
+
# Avoid telldir prototype conflict in pp_sys.c (FreeBSD uses const DIR *)
# Configure should test for this. Volunteers?
pp_sys_cflags='ccflags="$ccflags -DHAS_TELLDIR_PROTOTYPE"'