Revert change #19126, a poor attempt at fixing bug #21742.
[p5sagit/p5-mst-13.2.git] / hints / freebsd.sh
CommitLineData
5d94fbed 1# Original based on info from
a0d0e21e 2# Carl M. Fongheiser <cmf@ins.infonet.net>
3# Date: Thu, 28 Jul 1994 19:17:05 -0500 (CDT)
4#
5# Additional 1.1.5 defines from
6# Ollivier Robert <Ollivier.Robert@keltia.frmug.fr.net>
7# Date: Wed, 28 Sep 1994 00:37:46 +0100 (MET)
8#
5d94fbed 9# Additional 2.* defines from
10# Ollivier Robert <Ollivier.Robert@keltia.frmug.fr.net>
11# Date: Sat, 8 Apr 1995 20:53:41 +0200 (MET DST)
12#
16d20bd9 13# Additional 2.0.5 and 2.1 defined from
14# Ollivier Robert <Ollivier.Robert@keltia.frmug.fr.net>
15# Date: Fri, 12 May 1995 14:30:38 +0200 (MET DST)
16#
55497cff 17# Additional 2.2 defines from
18# Mark Murray <mark@grondar.za>
19# Date: Wed, 6 Nov 1996 09:44:58 +0200 (MET)
e5c9fcd0 20#
21# Modified to ensure we replace -lc with -lc_r, and
22# to put in place-holders for various specific hints.
1973dd96 23# Andy Dougherty <doughera@lafayette.edu>
e5c9fcd0 24# Date: Tue Mar 10 16:07:00 EST 1998
25#
5ff3f7a4 26# Support for FreeBSD/ELF
27# Ollivier Robert <roberto@keltia.freenix.fr>
28# Date: Wed Sep 2 16:22:12 CEST 1998
29#
5d94fbed 30# The two flags "-fpic -DPIC" are used to indicate a
31# will-be-shared object. Configure will guess the -fpic, (and the
32# -DPIC is not used by perl proper) but the full define is included to
33# be consistent with the FreeBSD general shared libs building process.
34#
16d20bd9 35# setreuid and friends are inherently broken in all versions of FreeBSD
36# before 2.1-current (before approx date 4/15/95). It is fixed in 2.0.5
37# and what-will-be-2.1
5d94fbed 38#
39
a0d0e21e 40case "$osvers" in
410.*|1.0*)
42 usedl="$undef"
43 ;;
e50aee73 441.1*)
a0d0e21e 45 malloctype='void *'
46 groupstype='int'
47 d_setregid='undef'
48 d_setreuid='undef'
49 d_setrgid='undef'
50 d_setruid='undef'
5d94fbed 51 ;;
e50aee73 522.0-release*)
5d94fbed 53 d_setregid='undef'
54 d_setreuid='undef'
55 d_setrgid='undef'
56 d_setruid='undef'
a0d0e21e 57 ;;
16d20bd9 58#
55497cff 59# Trying to cover 2.0.5, 2.1-current and future 2.1/2.2
16d20bd9 60# It does not covert all 2.1-current versions as the output of uname
61# changed a few times.
62#
55497cff 63# Even though seteuid/setegid are available, they've been turned off
64# because perl isn't coded with saved set[ug]id variables in mind.
65# In addition, a small patch is requried to suidperl to avoid a security
66# problem with FreeBSD.
67#
e50aee73 682.0.5*|2.0-built*|2.1*)
69 usevfork='true'
76969289 70 case "$usemymalloc" in
71 "") usemymalloc='n'
72 ;;
73 esac
55497cff 74 d_setregid='define'
75 d_setreuid='define'
76 d_setegid='undef'
77 d_seteuid='undef'
28757baa 78 test -r ./broken-db.msg && . ./broken-db.msg
55497cff 79 ;;
80#
81# 2.2 and above have phkmalloc(3).
1fd066cb 82# don't use -lmalloc (maybe there's an old one from 1.1.5.1 floating around)
55497cff 832.2*)
84 usevfork='true'
76969289 85 case "$usemymalloc" in
86 "") usemymalloc='n'
87 ;;
88 esac
1fd066cb 89 libswanted=`echo $libswanted | sed 's/ malloc / /'`
55497cff 90 d_setregid='define'
91 d_setreuid='define'
92 d_setegid='undef'
93 d_seteuid='undef'
e50aee73 94 ;;
c23d2014 954.*) # In FreeBSD 4 and 5 the system malloc is performance-wise
96 # VERY bad for Perl-- we are talking of differences of not
97 # one, but TWO magnitudes.
98 usemymalloc=y
99 ;;
1005.*) usemymalloc=y
101 ;;
e50aee73 102*) usevfork='true'
76969289 103 case "$usemymalloc" in
c23d2014 104 "") usemymalloc='y'
105 ;;
76969289 106 esac
1fd066cb 107 libswanted=`echo $libswanted | sed 's/ malloc / /'`
e50aee73 108 ;;
109esac
110
111# Dynamic Loading flags have not changed much, so they are separated
112# out here to avoid duplicating them everywhere.
113case "$osvers" in
1140.*|1.0*) ;;
9424984c 115
8c99d73e 1161*|2*) cccdlflags='-DPIC -fpic'
117 lddlflags="-Bshareable $lddlflags"
118 ;;
119
120*)
a10dc3f4 121 objformat=`/usr/bin/objformat`
5ff3f7a4 122 if [ x$objformat = xelf ]; then
123 libpth="/usr/lib /usr/local/lib"
124 glibpth="/usr/lib /usr/local/lib"
125 ldflags="-Wl,-E "
126 lddlflags="-shared "
127 else
128 if [ -e /usr/lib/aout ]; then
8c99d73e 129 libpth="/usr/lib/aout /usr/local/lib /usr/lib"
130 glibpth="/usr/lib/aout /usr/local/lib /usr/lib"
131 fi
132 lddlflags='-Bshareable'
9424984c 133 fi
134 cccdlflags='-DPIC -fpic'
9424984c 135 ;;
a0d0e21e 136esac
e50aee73 137
71a1865d 138case "$osvers" in
8c99d73e 1390*|1*|2*|3*) ;;
140
141*)
c77b533b 142 ccflags="${ccflags} -DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H"
8c99d73e 143 if /usr/bin/file -L /usr/lib/libc.so | /usr/bin/grep -vq "not stripped" ; then
71a1865d 144 usenm=false
145 fi
8c99d73e 146 ;;
71a1865d 147esac
148
68dc0745 149cat <<'EOM' >&4
4633a7c4 150
151Some users have reported that Configure halts when testing for
152the O_NONBLOCK symbol with a syntax error. This is apparently a
153sh error. Rerunning Configure with ksh apparently fixes the
154problem. Try
155 ksh Configure [your options]
156
157EOM
158
08d3cfaf 159# From: Anton Berezin <tobez@plab.ku.dk>
160# To: perl5-porters@perl.org
161# Subject: [PATCH 5.005_54] Configure - hints/freebsd.sh signal handler type
162# Date: 30 Nov 1998 19:46:24 +0100
163# Message-ID: <864srhhvcv.fsf@lion.plab.ku.dk>
164
165signal_t='void'
166d_voidsig='define'
167
73d40b3e 168# set libperl.so.X.X for 2.2.X
169case "$osvers" in
1702.2*)
171 # unfortunately this code gets executed before
172 # the equivalent in the main Configure so we copy a little
173 # from Configure XXX Configure should be fixed.
174 if $test -r $src/patchlevel.h;then
cceca5ed 175 patchlevel=`awk '/define[ ]+PERL_VERSION/ {print $3}' $src/patchlevel.h`
176 subversion=`awk '/define[ ]+PERL_SUBVERSION/ {print $3}' $src/patchlevel.h`
73d40b3e 177 else
178 patchlevel=0
179 subversion=0
180 fi
181 libperl="libperl.so.$patchlevel.$subversion"
182 unset patchlevel
183 unset subversion
184 ;;
185esac
186
104d25b7 187# This script UU/usethreads.cbu will get 'called-back' by Configure
188# after it has prompted the user for whether to use threads.
189cat > UU/usethreads.cbu <<'EOCBU'
190case "$usethreads" in
191$define|true|[yY]*)
eade9b71 192 lc_r=`/sbin/ldconfig -r|grep ':-lc_r'|awk '{print $NF}'|sed -n '$p'`
104d25b7 193 case "$osvers" in
8c99d73e 194 0*|1*|2.0*|2.1*) cat <<EOM >&4
195I did not know that FreeBSD $osvers supports POSIX threads.
73d40b3e 196
7f2de2d2 197Feel free to tell perlbug@perl.org otherwise.
73d40b3e 198EOM
8c99d73e 199 exit 1
73d40b3e 200 ;;
8c99d73e 201
202 2.2.[0-7]*)
73d40b3e 203 cat <<EOM >&4
204POSIX threads are not supported well by FreeBSD $osvers.
205
206Please consider upgrading to at least FreeBSD 2.2.8,
8aeacb11 207or preferably to the most recent -RELEASE or -STABLE
208version (see http://www.freebsd.org/releases/).
73d40b3e 209
210(While 2.2.7 does have pthreads, it has some problems
211 with the combination of threads and pipes and therefore
212 many Perl tests will either hang or fail.)
104d25b7 213EOM
73d40b3e 214 exit 1
215 ;;
104d25b7 216
8c99d73e 217 *)
218 if [ ! -r "$lc_r" ]; then
219 cat <<EOM >&4
220POSIX threads should be supported by FreeBSD $osvers --
221but your system is missing the shared libc_r.
222(/sbin/ldconfig -r doesn't find any).
223
224Consider using the latest STABLE release.
104d25b7 225EOM
8c99d73e 226 exit 1
227 fi
228 ldflags="-pthread $ldflags"
624b29b4 229 case "$osvers" in
f412e1d6 230 4.*|5.0-release*)
231 # 4.x and 5.0-release have gethostbyaddr_r but it is
624b29b4 232 # "Temporary function, not threadsafe"...
233 d_gethostbyaddr_r="undef"
f412e1d6 234 d_gethostbyaddr_r_proto="0"
624b29b4 235 ;;
236 esac
73d40b3e 237 ;;
8c99d73e 238
73d40b3e 239 esac
240
241 set `echo X "$libswanted "| sed -e 's/ c / c_r /'`
242 shift
243 libswanted="$*"
244 # Configure will probably pick the wrong libc to use for nm scan.
245 # The safest quick-fix is just to not use nm at all...
246 usenm=false
247
248 case "$osvers" in
249 2.2.8*)
250 # ... but this does not apply for 2.2.8 - we know it's safe
251 libc="$lc_r"
252 usenm=true
253 ;;
104d25b7 254 esac
73d40b3e 255
256 unset lc_r
d7eee707 257
258 # Even with the malloc mutexes the Perl malloc does not
259 # seem to be threadsafe in FreeBSD?
c23d2014 260 usemymalloc=y
d7eee707 261
104d25b7 262esac
263EOCBU
5628bcce 264