1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302
|
# hints/netbsd.sh
#
# Please check with packages@netbsd.org before making modifications
# to this file.
case "$archname" in
'')
archname=`uname -m`-${osname}
;;
esac
# NetBSD keeps dynamic loading dl*() functions in /usr/lib/crt0.o,
# so Configure doesn't find them (unless you abandon the nm scan).
# Also, NetBSD 0.9a was the first release to introduce shared
# libraries.
#
case "$osvers" in
0.9|0.8*)
usedl="$undef"
;;
*)
case `uname -m` in
pmax)
# NetBSD 1.3 and 1.3.1 on pmax shipped an `old' ld.so,
# which will not work.
case "$osvers" in
1.3|1.3.1)
d_dlopen=$undef
;;
esac
;;
esac
if test -f /usr/libexec/ld.elf_so; then
# ELF
d_dlopen=$define
d_dlerror=$define
cccdlflags="-DPIC -fPIC $cccdlflags"
lddlflags="-shared $lddlflags"
cat >UU/cc.cbu <<'EOCBU'
# gcc 4.6 doesn't support --whole-archive, but it's required for the
# system gcc to build correctly, so check for it
echo 'int f(void) { return 0; }' >try.c
if ${cc:-cc} $cccdlflags -c try.c -otry.o >/dev/null 2>&1 &&
${cc:-cc} --whole-archive $lddlflags try.o -otry.so >/dev/null 2>&1 ; then
lddlflags="--whole-archive $lddlflags"
fi
rm try.c try.o try.so 2>/dev/null
EOCBU
rpathflag="-Wl,-rpath,"
case "$osvers" in
1.[0-5]*)
#
# Include the whole libgcc.a into the perl executable
# so that certain symbols needed by loadable modules
# built as C++ objects (__eh_alloc, __pure_virtual,
# etc.) will always be defined.
#
ccdlflags="-Wl,-whole-archive -lgcc \
-Wl,-no-whole-archive -Wl,-E $ccdlflags"
;;
*)
ccdlflags="-Wl,-E $ccdlflags"
;;
esac
elif test -f /usr/libexec/ld.so; then
# a.out
d_dlopen=$define
d_dlerror=$define
cccdlflags="-DPIC -fPIC $cccdlflags"
lddlflags="-Bshareable $lddlflags"
rpathflag="-R"
else
d_dlopen=$undef
rpathflag=
fi
;;
esac
# netbsd had these but they don't really work as advertised, in the
# versions listed below. if they are defined, then there isn't a
# way to make perl call setuid() or setgid(). if they aren't, then
# ($<, $>) = ($u, $u); will work (same for $(/$)). this is because
# you can not change the real userid of a process under 4.4BSD.
# netbsd fixed this in 1.3.2.
case "$osvers" in
0.9*|1.[012]*|1.3|1.3.1)
d_setregid="$undef"
d_setreuid="$undef"
;;
esac
case "$osvers" in
0.8*)
;;
*)
d_getprotoent_r="$undef"
d_getprotobyname_r="$undef"
d_getprotobynumber_r="$undef"
d_setprotoent_r="$undef"
d_endprotoent_r="$undef"
d_getservent_r="$undef"
d_getservbyname_r="$undef"
d_getservbyport_r="$undef"
d_setservent_r="$undef"
d_endservent_r="$undef"
d_gethostbyname_r="$undef"
d_gethostbyaddr2_r="$undef"
d_gethostbyaddr_r="$undef"
d_sethostent_r="$undef"
d_gethostent_r="$undef"
d_endhostent_r="$undef"
d_getprotoent_r_proto="0"
d_getprotobyname_r_proto="0"
d_getprotobynumber_r_proto="0"
d_setprotoent_r_proto="0"
d_endprotoent_r_proto="0"
d_getservent_r_proto="0"
d_getservbyname_r_proto="0"
d_getservbyport_r_proto="0"
d_setservent_r_proto="0"
d_endservent_r_proto="0"
d_gethostbyname_r_proto="0"
d_gethostbyaddr2_r_proto="0"
d_gethostbyaddr_r_proto="0"
d_sethostent_r_proto="0"
d_endhostent_r_proto="0"
d_gethostent_r_proto="0"
;;
esac
# These are obsolete in any netbsd.
d_setrgid="$undef"
d_setruid="$undef"
# there's no problem with vfork.
usevfork=true
# This is there but in machine/ieeefp_h.
ieeefp_h="define"
# This script UU/usethreads.cbu will get 'called-back' by Configure
# after it has prompted the user for whether to use threads.
cat > UU/usethreads.cbu <<'EOCBU'
case "$usethreads" in
$define|true|[yY]*)
lpthread=
for xxx in pthread; do
for yyy in $loclibpth $plibpth $glibpth dummy; do
zzz=$yyy/lib$xxx.a
if test -f "$zzz"; then
lpthread=$xxx
break;
fi
zzz=$yyy/lib$xxx.so
if test -f "$zzz"; then
lpthread=$xxx
break;
fi
zzz=`ls $yyy/lib$xxx.so.* 2>/dev/null`
if test "X$zzz" != X; then
lpthread=$xxx
break;
fi
done
if test "X$lpthread" != X; then
break;
fi
done
if test "X$lpthread" != X; then
# Add -lpthread.
libswanted="$libswanted $lpthread"
# There is no libc_r as of NetBSD 1.5.2, so no c -> c_r.
# This will be revisited when NetBSD gains a native pthreads
# implementation.
else
echo "$0: No POSIX threads library (-lpthread) found. " \
"You may want to install GNU pth. Aborting." >&4
exit 1
fi
unset lpthread
# several reentrant functions are embedded in libc, but haven't
# been added to the header files yet. Let's hold off on using
# them until they are a valid part of the API
case "$osvers" in
[012].*|3.[0-1])
d_getprotobyname_r=$undef
d_getprotobynumber_r=$undef
d_getprotoent_r=$undef
d_getservbyname_r=$undef
d_getservbyport_r=$undef
d_getservent_r=$undef
d_setprotoent_r=$undef
d_setservent_r=$undef
d_endprotoent_r=$undef
d_endservent_r=$undef ;;
esac
;;
esac
EOCBU
# Set sensible defaults for NetBSD: look for local software in
# /usr/pkg (NetBSD Packages Collection) and in /usr/local.
#
loclibpth="/usr/pkg/lib /usr/local/lib"
locincpth="/usr/pkg/include /usr/local/include"
case "$rpathflag" in
'')
ldflags=
;;
*)
ldflags=
for yyy in $loclibpth; do
ldflags="$ldflags $rpathflag$yyy"
done
;;
esac
case `uname -m` in
alpha)
echo 'int main() {}' > try.c
gcc=`${cc:-cc} -v -c try.c 2>&1|grep 'gcc version egcs-2'`
case "$gcc" in
'' | "gcc version egcs-2.95."[3-9]*) ;; # 2.95.3 or better okay
*) cat >&4 <<EOF
***
*** Your gcc ($gcc) is known to be
*** too buggy on netbsd/alpha to compile Perl with optimization.
*** It is suggested you install the lang/gcc package which should
*** have at least gcc 2.95.3 which should work okay: use for example
*** Configure -Dcc=/usr/pkg/gcc-2.95.3/bin/cc. You could also
*** Configure -Doptimize=-O0 to compile Perl without any optimization
*** but that is not recommended.
***
EOF
exit 1
;;
esac
rm -f try.*
;;
esac
# NetBSD/sparc 1.5.3/1.6.1 dumps core in the semid_ds test of Configure.
case `uname -m` in
sparc) d_semctl_semid_ds=undef ;;
esac
# malloc wrap works
case "$usemallocwrap" in
'') usemallocwrap='define' ;;
esac
# don't use perl malloc by default
case "$usemymalloc" in
'') usemymalloc=n ;;
esac
# NetBSD 6 defines the *at() functions in libc, but either doesn't
# implement them, or implements them only for AT_FDCWD
case "$osver" in
[1-6].*)
d_unlinkat="$undef"
d_renameat="$undef"
d_linkat="$undef"
d_fchmodat="$undef"
;;
esac
cat >UU/uselongdouble.cbu <<'EOCBU'
# This script UU/uselongdouble.cbu will get 'called-back' by Configure
# after it has prompted the user for whether to use long doubles.
#
# See https://github.com/Perl/perl5/issues/17853 and https://github.com/Perl/perl5/issues/17854
case "$uselongdouble" in
$define|true|[yY]*)
cat >try.c <<\TRY
#include <stdio.h>
#include <math.h>
long double x = 1.0;
int main(int argc, char **argv) {
double e1 = exp(1.0);
/* as of NetBSD 9.0 expl() just calls exp(),
Fail here if they're equal. */
return expl(x) == (long double)e1;
}
TRY
if $cc -o try $ccflags $ldflags try.c -lm && $run ./try; then
echo "NetBSD seem to have fixed expl (and hopefully more)" >&4
else
cat <<EOM >&4
Warning! NetBSD's long double support is limited enough that it will cause
test failures, and possibly build failures, and this doesn't appear to have
been fixed in the release you're running.
EOM
fi
;;
esac
EOCBU
|