1 # Original based on info from
2 # Carl M. Fongheiser <cmf@ins.infonet.net>
3 # Date: Thu, 28 Jul 1994 19:17:05 -0500 (CDT)
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)
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)
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)
17 # Additional 2.2 defines from
18 # Mark Murray <mark@grondar.za>
19 # Date: Wed, 6 Nov 1996 09:44:58 +0200 (MET)
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@lafayette.edu>
24 # Date: Tue Mar 10 16:07:00 EST 1998
26 # Support for FreeBSD/ELF
27 # Ollivier Robert <roberto@keltia.freenix.fr>
28 # Date: Wed Sep 2 16:22:12 CEST 1998
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.
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
59 # Trying to cover 2.0.5, 2.1-current and future 2.1/2.2
60 # It does not covert all 2.1-current versions as the output of uname
61 # changed a few times.
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.
68 2.0.5*|2.0-built*|2.1*)
70 case "$usemymalloc" in
78 test -r ./broken-db.msg && . ./broken-db.msg
81 # 2.2 and above have phkmalloc(3).
82 # don't use -lmalloc (maybe there's an old one from 1.1.5.1 floating around)
85 case "$usemymalloc" in
89 libswanted=`echo $libswanted | sed 's/ malloc / /'`
90 libswanted=`echo $libswanted | sed 's/ bind / /'`
91 # iconv gone in Perl 5.8.1, but if someone compiles 5.8.0 or earlier.
92 libswanted=`echo $libswanted | sed 's/ iconv / /'`
97 # d_dosuid='define' # Obsolete.
100 case "$usemymalloc" in
104 libswanted=`echo $libswanted | sed 's/ malloc / /'`
108 # Dynamic Loading flags have not changed much, so they are separated
109 # out here to avoid duplicating them everywhere.
113 1*|2*) cccdlflags='-DPIC -fpic'
114 lddlflags="-Bshareable $lddlflags"
118 objformat=`/usr/bin/objformat`
119 if [ x$objformat = xaout ]; then
120 if [ -e /usr/lib/aout ]; then
121 libpth="/usr/lib/aout /usr/local/lib /usr/lib"
122 glibpth="/usr/lib/aout /usr/local/lib /usr/lib"
124 lddlflags='-Bshareable'
126 libpth="/usr/lib /usr/local/lib"
127 glibpth="/usr/lib /usr/local/lib"
131 cccdlflags='-DPIC -fPIC'
139 ccflags="${ccflags} -DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H"
140 if /usr/bin/file -L /usr/lib/libc.so | /usr/bin/grep -vq "not stripped" ; then
148 Some users have reported that Configure halts when testing for
149 the O_NONBLOCK symbol with a syntax error. This is apparently a
150 sh error. Rerunning Configure with ksh apparently fixes the
152 ksh Configure [your options]
156 # From: Anton Berezin <tobez@plab.ku.dk>
157 # To: perl5-porters@perl.org
158 # Subject: [PATCH 5.005_54] Configure - hints/freebsd.sh signal handler type
159 # Date: 30 Nov 1998 19:46:24 +0100
160 # Message-ID: <864srhhvcv.fsf@lion.plab.ku.dk>
165 # set libperl.so.X.X for 2.2.X
168 # unfortunately this code gets executed before
169 # the equivalent in the main Configure so we copy a little
170 # from Configure XXX Configure should be fixed.
171 if $test -r $src/patchlevel.h;then
172 patchlevel=`awk '/define[ ]+PERL_VERSION/ {print $3}' $src/patchlevel.h`
173 subversion=`awk '/define[ ]+PERL_SUBVERSION/ {print $3}' $src/patchlevel.h`
178 libperl="libperl.so.$patchlevel.$subversion"
184 # This script UU/usethreads.cbu will get 'called-back' by Configure
185 # after it has prompted the user for whether to use threads.
186 cat > UU/usethreads.cbu <<'EOCBU'
187 case "$usethreads" in
189 lc_r=`/sbin/ldconfig -r|grep ':-lc_r'|awk '{print $NF}'|sed -n '$p'`
191 0*|1*|2.0*|2.1*) cat <<EOM >&4
192 I did not know that FreeBSD $osvers supports POSIX threads.
194 Feel free to tell perlbug@perl.org otherwise.
201 POSIX threads are not supported well by FreeBSD $osvers.
203 Please consider upgrading to at least FreeBSD 2.2.8,
204 or preferably to the most recent -RELEASE or -STABLE
205 version (see http://www.freebsd.org/releases/).
207 (While 2.2.7 does have pthreads, it has some problems
208 with the combination of threads and pipes and therefore
209 many Perl tests will either hang or fail.)
215 if [ ! -r "$lc_r" ]; then
217 POSIX threads should be supported by FreeBSD $osvers --
218 but your system is missing the shared libc_r.
219 (/sbin/ldconfig -r doesn't find any).
221 Consider using the latest STABLE release.
225 # 500016 is the first osreldate in which one could
226 # just link against libc_r without disposing of libc
227 # at the same time. 500016 ... up to whatever it was
228 # on the 31st of August 2003 can still be used with -pthread,
229 # but it is not necessary.
231 # Anton Berezin says that post 500something we're wrong to be
232 # to be using -lc_r, and should just be using -pthread on the
234 # So presumably really we should be checking that $osver is 5.*)
235 # and that `/sbin/sysctl -n kern.osreldate` -ge 500016
236 # or -lt 500something and only in that range not doing this:
237 ldflags="-pthread $ldflags"
239 # Both in 4.x and 5.x gethostbyaddr_r exists but
240 # it is "Temporary function, not threadsafe"...
241 # Presumably earlier it didn't even exist.
242 d_gethostbyaddr_r="undef"
243 d_gethostbyaddr_r_proto="0"
250 set `echo X "$libswanted "| sed -e 's/ c / c_r /'`
255 set `echo X "$libswanted "| sed -e 's/ c //'`
261 # Configure will probably pick the wrong libc to use for nm scan.
262 # The safest quick-fix is just to not use nm at all...
267 # ... but this does not apply for 2.2.8 - we know it's safe
275 # Even with the malloc mutexes the Perl malloc does not
276 # seem to be threadsafe in FreeBSD?
277 case "$usemymalloc" in
284 case "$usemallocwrap" in
285 '') usemallocwrap='define' ;;
288 # XXX Under FreeBSD 6.0 (and probably most other similar versions)
289 # Perl_die(NULL) generates a warning:
290 # pp_sys.c:491: warning: null format string
291 # Configure supposedely tests for this, but apparently the test doesn't
292 # work. Volunteers with FreeBSD are needed to improving the Configure test.
293 # Meanwhile, the following workaround should be safe on all versions
295 d_printf_format_null='undef'