This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Re: local($tied->{foo}) leaks
[perl5.git] / hints / freebsd.sh
CommitLineData
5d94fbed 1# Original based on info from
a0d0e21e
LW
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
AD
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
AD
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
AD
20#
21# Modified to ensure we replace -lc with -lc_r, and
22# to put in place-holders for various specific hints.
23# Andy Dougherty <doughera@lafcol.lafayette.edu>
24# Date: Tue Mar 10 16:07:00 EST 1998
25#
5ff3f7a4
GS
26# Support for FreeBSD/ELF
27# Ollivier Robert <roberto@keltia.freenix.fr>
28# Date: Wed Sep 2 16:22:12 CEST 1998
29#
5d94fbed
AD
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
AD
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
AD
38#
39
a0d0e21e
LW
40case "$osvers" in
410.*|1.0*)
42 usedl="$undef"
43 ;;
e50aee73 441.1*)
a0d0e21e
LW
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
AD
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
AD
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
AD
682.0.5*|2.0-built*|2.1*)
69 usevfork='true'
76969289
SR
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
SR
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 ;;
e50aee73 95*) usevfork='true'
76969289
SR
96 case "$usemymalloc" in
97 "") usemymalloc='n'
98 ;;
99 esac
1fd066cb 100 libswanted=`echo $libswanted | sed 's/ malloc / /'`
e50aee73
AD
101 ;;
102esac
103
104# Dynamic Loading flags have not changed much, so they are separated
105# out here to avoid duplicating them everywhere.
106case "$osvers" in
1070.*|1.0*) ;;
9424984c 108
8c99d73e
GS
1091*|2*) cccdlflags='-DPIC -fpic'
110 lddlflags="-Bshareable $lddlflags"
111 ;;
112
113*)
a10dc3f4 114 objformat=`/usr/bin/objformat`
5ff3f7a4
GS
115 if [ x$objformat = xelf ]; then
116 libpth="/usr/lib /usr/local/lib"
117 glibpth="/usr/lib /usr/local/lib"
118 ldflags="-Wl,-E "
119 lddlflags="-shared "
120 else
121 if [ -e /usr/lib/aout ]; then
8c99d73e
GS
122 libpth="/usr/lib/aout /usr/local/lib /usr/lib"
123 glibpth="/usr/lib/aout /usr/local/lib /usr/lib"
124 fi
125 lddlflags='-Bshareable'
9424984c
MF
126 fi
127 cccdlflags='-DPIC -fpic'
9424984c 128 ;;
a0d0e21e 129esac
e50aee73 130
71a1865d 131case "$osvers" in
8c99d73e
GS
1320*|1*|2*|3*) ;;
133
134*)
c77b533b 135 ccflags="${ccflags} -DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H"
8c99d73e 136 if /usr/bin/file -L /usr/lib/libc.so | /usr/bin/grep -vq "not stripped" ; then
71a1865d
AB
137 usenm=false
138 fi
8c99d73e 139 ;;
71a1865d
AB
140esac
141
68dc0745 142cat <<'EOM' >&4
4633a7c4
LW
143
144Some users have reported that Configure halts when testing for
145the O_NONBLOCK symbol with a syntax error. This is apparently a
146sh error. Rerunning Configure with ksh apparently fixes the
147problem. Try
148 ksh Configure [your options]
149
150EOM
151
08d3cfaf
AB
152# From: Anton Berezin <tobez@plab.ku.dk>
153# To: perl5-porters@perl.org
154# Subject: [PATCH 5.005_54] Configure - hints/freebsd.sh signal handler type
155# Date: 30 Nov 1998 19:46:24 +0100
156# Message-ID: <864srhhvcv.fsf@lion.plab.ku.dk>
157
158signal_t='void'
159d_voidsig='define'
160
73d40b3e
JH
161# set libperl.so.X.X for 2.2.X
162case "$osvers" in
1632.2*)
164 # unfortunately this code gets executed before
165 # the equivalent in the main Configure so we copy a little
166 # from Configure XXX Configure should be fixed.
167 if $test -r $src/patchlevel.h;then
cceca5ed
GS
168 patchlevel=`awk '/define[ ]+PERL_VERSION/ {print $3}' $src/patchlevel.h`
169 subversion=`awk '/define[ ]+PERL_SUBVERSION/ {print $3}' $src/patchlevel.h`
73d40b3e
JH
170 else
171 patchlevel=0
172 subversion=0
173 fi
174 libperl="libperl.so.$patchlevel.$subversion"
175 unset patchlevel
176 unset subversion
177 ;;
178esac
179
104d25b7
JH
180# This script UU/usethreads.cbu will get 'called-back' by Configure
181# after it has prompted the user for whether to use threads.
182cat > UU/usethreads.cbu <<'EOCBU'
183case "$usethreads" in
184$define|true|[yY]*)
eade9b71 185 lc_r=`/sbin/ldconfig -r|grep ':-lc_r'|awk '{print $NF}'|sed -n '$p'`
104d25b7 186 case "$osvers" in
8c99d73e
GS
187 0*|1*|2.0*|2.1*) cat <<EOM >&4
188I did not know that FreeBSD $osvers supports POSIX threads.
73d40b3e 189
7f2de2d2 190Feel free to tell perlbug@perl.org otherwise.
73d40b3e 191EOM
8c99d73e 192 exit 1
73d40b3e 193 ;;
8c99d73e
GS
194
195 2.2.[0-7]*)
73d40b3e
JH
196 cat <<EOM >&4
197POSIX threads are not supported well by FreeBSD $osvers.
198
199Please consider upgrading to at least FreeBSD 2.2.8,
8aeacb11
JH
200or preferably to the most recent -RELEASE or -STABLE
201version (see http://www.freebsd.org/releases/).
73d40b3e
JH
202
203(While 2.2.7 does have pthreads, it has some problems
204 with the combination of threads and pipes and therefore
205 many Perl tests will either hang or fail.)
104d25b7 206EOM
73d40b3e
JH
207 exit 1
208 ;;
104d25b7 209
8c99d73e
GS
210 *)
211 if [ ! -r "$lc_r" ]; then
212 cat <<EOM >&4
213POSIX threads should be supported by FreeBSD $osvers --
214but your system is missing the shared libc_r.
215(/sbin/ldconfig -r doesn't find any).
216
217Consider using the latest STABLE release.
104d25b7 218EOM
8c99d73e
GS
219 exit 1
220 fi
221 ldflags="-pthread $ldflags"
624b29b4 222 case "$osvers" in
b42fcfb7 223 4.*) # 4.x has gethostbyaddr_r but it is
624b29b4
JH
224 # "Temporary function, not threadsafe"...
225 d_gethostbyaddr_r="undef"
226 d_gethostbyaddr_r_proto="undef"
227 ;;
228 esac
73d40b3e 229 ;;
8c99d73e 230
73d40b3e
JH
231 esac
232
233 set `echo X "$libswanted "| sed -e 's/ c / c_r /'`
234 shift
235 libswanted="$*"
236 # Configure will probably pick the wrong libc to use for nm scan.
237 # The safest quick-fix is just to not use nm at all...
238 usenm=false
239
240 case "$osvers" in
241 2.2.8*)
242 # ... but this does not apply for 2.2.8 - we know it's safe
243 libc="$lc_r"
244 usenm=true
245 ;;
104d25b7 246 esac
73d40b3e
JH
247
248 unset lc_r
d7eee707
JH
249
250 # Even with the malloc mutexes the Perl malloc does not
251 # seem to be threadsafe in FreeBSD?
252 usemymalloc=n
253
104d25b7
JH
254esac
255EOCBU
5628bcce 256