Commit | Line | Data |
a0d0e21e |
1 | # hints/netbsd.sh |
4633a7c4 |
2 | # |
099685bc |
3 | # talk to packages@netbsd.org if you want to change this file. |
4633a7c4 |
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 |
099685bc |
8 | # introduce shared libraries. |
c9ef717e |
9 | |
10 | case "$archname" in |
11 | '') |
12 | archname=`uname -m`-${osname} |
13 | ;; |
14 | esac |
15 | |
a0d0e21e |
16 | case "$osvers" in |
4633a7c4 |
17 | 0.9|0.8*) |
a0d0e21e |
18 | usedl="$undef" |
19 | ;; |
c9ef717e |
20 | *) |
099685bc |
21 | if [ -f /usr/libexec/ld.elf_so ]; then |
22 | d_dlopen=$define |
23 | d_dlerror=$define |
24 | ccdlflags="-Wl,-E -Wl,-R${PREFIX}/lib $ccdlflags" |
25 | cccdlflags="-DPIC -fPIC $cccdlflags" |
26 | lddlflags="--whole-archive -shared $lddlflags" |
27 | elif [ "`uname -m`" = "pmax" ]; then |
28 | # NetBSD 1.3 and 1.3.1 on pmax shipped an `old' ld.so, which will not work. |
c9ef717e |
29 | d_dlopen=$undef |
099685bc |
30 | elif [ -f /usr/libexec/ld.so ]; then |
c9ef717e |
31 | d_dlopen=$define |
32 | d_dlerror=$define |
099685bc |
33 | ccdlflags="-Wl,-R${PREFIX}/lib $ccdlflags" |
4633a7c4 |
34 | # we use -fPIC here because -fpic is *NOT* enough for some of the |
35 | # extensions like Tk on some netbsd platforms (the sparc is one) |
c9ef717e |
36 | cccdlflags="-DPIC -fPIC $cccdlflags" |
cb50131a |
37 | lddlflags="-Bshareable $lddlflags" |
099685bc |
38 | else |
39 | d_dlopen=$undef |
40 | fi |
491527d0 |
41 | ;; |
42 | esac |
c9ef717e |
43 | |
44 | # netbsd had these but they don't really work as advertised, in the |
45 | # versions listed below. if they are defined, then there isn't a |
46 | # way to make perl call setuid() or setgid(). if they aren't, then |
47 | # ($<, $>) = ($u, $u); will work (same for $(/$)). this is because |
48 | # you can not change the real userid of a process under 4.4BSD. |
099685bc |
49 | # netbsd fixed this in 1.3.2. |
229e211d |
50 | case "$osvers" in |
099685bc |
51 | 0.9*|1.[012]*|1.3|1.3.1) |
4633a7c4 |
52 | d_setregid="$undef" |
53 | d_setreuid="$undef" |
a0d0e21e |
54 | ;; |
55 | esac |
c4f23d77 |
56 | |
434e0566 |
57 | # These are obsolete in any netbsd. |
58 | d_setrgid="$undef" |
59 | d_setruid="$undef" |
60 | |
099685bc |
61 | # there's no problem with vfork. |
c4f23d77 |
62 | case "$usevfork" in |
63 | '') usevfork=true ;; |
64 | esac |
099685bc |
65 | |
099685bc |
66 | # Pre-empt the /usr/bin/perl question of installperl. |
67 | installusrbinperl='n' |
68 | |
2bf2710f |
69 | # Recognize the NetBSD packages collection. |
70 | # GDBM might be here. |
71 | test -d /usr/pkg/lib && loclibpth="$loclibpth /usr/pkg/lib" |
72 | test -d /usr/pkg/include && locincpth="$locincpth /usr/pkg/include" |