fill gaps in sig_* entries in win32/config.?c
[p5sagit/p5-mst-13.2.git] / hints / netbsd.sh
CommitLineData
a0d0e21e 1# hints/netbsd.sh
4633a7c4 2#
3# talk to mrg@eterna.com.au if you want to change this file.
4#
5# netbsd keeps dynamic loading dl*() functions in /usr/lib/crt0.o,
232e078e 6# so Configure doesn't find them (unless you abandon the nm scan).
4633a7c4 7# this should be *just* 0.9 below as netbsd 0.9a was the first to
c9ef717e 8# introduce shared libraries. however, they don't work/build on
9# pmax, powerpc and alpha ports correctly, yet.
10
11case "$archname" in
12'')
13 archname=`uname -m`-${osname}
14 ;;
15esac
16
a0d0e21e 17case "$osvers" in
4633a7c4 180.9|0.8*)
a0d0e21e 19 usedl="$undef"
20 ;;
c9ef717e 21*)
22 case `uname -m` in
23 alpha|powerpc|pmax)
24 d_dlopen=$undef
25 ;;
26# this doesn't work (yet).
27# alpha)
28# d_dlopen=$define
29# d_dlerror=$define
30# cccdlflags="-DPIC -fPIC $cccdlflags"
31# lddlflags="-shared $lddlflags"
32# ;;
33 *)
34 d_dlopen=$define
35 d_dlerror=$define
4633a7c4 36# we use -fPIC here because -fpic is *NOT* enough for some of the
37# extensions like Tk on some netbsd platforms (the sparc is one)
c9ef717e 38 cccdlflags="-DPIC -fPIC $cccdlflags"
39 lddlflags="-Bforcearchive -Bshareable $lddlflags"
40 ;;
41 esac
42 ;;
43esac
491527d0 44# netbsd 1.3 linker warns about setr[gu]id being deprecated.
45# (setregid, setreuid, preferred?)
46case "$osvers" in
471.3|1.3*)
48 d_setrgid="$undef"
49 d_setruid="$undef"
50 ;;
51esac
c9ef717e 52
53# netbsd had these but they don't really work as advertised, in the
54# versions listed below. if they are defined, then there isn't a
55# way to make perl call setuid() or setgid(). if they aren't, then
56# ($<, $>) = ($u, $u); will work (same for $(/$)). this is because
57# you can not change the real userid of a process under 4.4BSD.
58# netbsd fixed this in 1.2A.
229e211d 59case "$osvers" in
c9ef717e 600.9*|1.0*|1.1*|1.2_*|1.2|1.2.*)
4633a7c4 61 d_setregid="$undef"
62 d_setreuid="$undef"
63 d_setrgid="$undef"
64 d_setruid="$undef"
a0d0e21e 65 ;;
66esac
c6c5e21e 67# netbsd 1.3 linker warns about setr[gu]id being deprecated.
68# (setregid, setreuid, preferred?)
69case "$osvers" in
701.3|1.3*)
71 d_setrgid="$undef"
72 d_setruid="$undef"
73 ;;
74esac
c4f23d77 75
76# vfork is ok on NetBSD.
77case "$usevfork" in
78'') usevfork=true ;;
79esac