This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Fix error messages returned by S_require_tie_mod. Fix small leaks
[perl5.git] / hints / netbsd.sh
1 # hints/netbsd.sh
2 #
3 # Please check with packages@netbsd.org before making modifications
4 # to this file.
5
6 case "$archname" in
7 '')
8     archname=`uname -m`-${osname}
9     ;;
10 esac
11
12 # NetBSD keeps dynamic loading dl*() functions in /usr/lib/crt0.o,
13 # so Configure doesn't find them (unless you abandon the nm scan).
14 # Also, NetBSD 0.9a was the first release to introduce shared
15 # libraries.
16 #
17 case "$osvers" in
18 0.9|0.8*)
19         usedl="$undef"
20         ;;
21 *)
22         case `uname -m` in
23         pmax)
24                 # NetBSD 1.3 and 1.3.1 on pmax shipped an `old' ld.so,
25                 # which will not work.
26                 case "$osvers" in
27                 1.3|1.3.1)
28                         d_dlopen=$undef
29                         ;;
30                 esac
31                 ;;
32         esac
33         if test -f /usr/libexec/ld.elf_so; then
34                 # ELF
35                 d_dlopen=$define
36                 d_dlerror=$define
37                 cccdlflags="-DPIC -fPIC $cccdlflags"
38                 lddlflags="--whole-archive -shared $lddlflags"
39                 rpathflag="-Wl,-rpath,"
40                 case "$osvers" in
41                 1.[0-5]*)
42                         #
43                         # Include the whole libgcc.a into the perl executable
44                         # so that certain symbols needed by loadable modules
45                         # built as C++ objects (__eh_alloc, __pure_virtual,
46                         # etc.) will always be defined.
47                         #
48                         ccdlflags="-Wl,-whole-archive -lgcc \
49                                 -Wl,-no-whole-archive -Wl,-E $ccdlflags"
50                         ;;
51                 *)
52                         ccdlflags="-Wl,-E $ccdlflags"
53                         ;;
54                 esac
55         elif test -f /usr/libexec/ld.so; then
56                 # a.out
57                 d_dlopen=$define
58                 d_dlerror=$define
59                 cccdlflags="-DPIC -fPIC $cccdlflags"
60                 lddlflags="-Bshareable $lddlflags"
61                 rpathflag="-R"
62         else
63                 d_dlopen=$undef
64                 rpathflag=
65         fi
66         ;;
67 esac
68
69 # netbsd had these but they don't really work as advertised, in the
70 # versions listed below.  if they are defined, then there isn't a
71 # way to make perl call setuid() or setgid().  if they aren't, then
72 # ($<, $>) = ($u, $u); will work (same for $(/$)).  this is because
73 # you can not change the real userid of a process under 4.4BSD.
74 # netbsd fixed this in 1.3.2.
75 case "$osvers" in
76 0.9*|1.[012]*|1.3|1.3.1)
77         d_setregid="$undef"
78         d_setreuid="$undef"
79         ;;
80 esac
81
82 # These are obsolete in any netbsd.
83 d_setrgid="$undef"
84 d_setruid="$undef"
85
86 # there's no problem with vfork.
87 usevfork=true
88
89 # This is there but in machine/ieeefp_h.
90 ieeefp_h="define"
91
92 # This script UU/usethreads.cbu will get 'called-back' by Configure 
93 # after it has prompted the user for whether to use threads. 
94 cat > UU/usethreads.cbu <<'EOCBU' 
95 case "$usethreads" in 
96 $define|true|[yY]*) 
97         lpthread=
98         for xxx in pthread; do
99                 for yyy in $loclibpth $plibpth $glibpth dummy; do
100                         zzz=$yyy/lib$xxx.a
101                         if test -f "$zzz"; then
102                                 lpthread=$xxx
103                                 break;
104                         fi
105                         zzz=$yyy/lib$xxx.so
106                         if test -f "$zzz"; then
107                                 lpthread=$xxx
108                                 break;
109                         fi
110                         zzz=`ls $yyy/lib$xxx.so.* 2>/dev/null`
111                         if test "X$zzz" != X; then
112                                 lpthread=$xxx
113                                 break;
114                         fi
115                 done
116                 if test "X$lpthread" != X; then
117                         break;
118                 fi
119         done
120         if test "X$lpthread" != X; then
121                 # Add -lpthread. 
122                 libswanted="$libswanted $lpthread" 
123                 # There is no libc_r as of NetBSD 1.5.2, so no c -> c_r.
124                 # This will be revisited when NetBSD gains a native pthreads
125                 # implementation.
126         else 
127                 echo "$0: No POSIX threads library (-lpthread) found.  " \
128                      "You may want to install GNU pth.  Aborting." >&4 
129                 exit 1 
130         fi
131         unset lpthread
132          
133         # several reentrant functions are embeded in libc, but haven't
134         # been added to the header files yet.  Let's hold off on using
135         # them until they are a valid part of the API
136         case "$osvers" in
137         [012].*|3.[0-1])
138                 d_getprotobyname_r=$undef
139                 d_getprotobynumber_r=$undef
140                 d_getprotoent_r=$undef
141                 d_getservbyname_r=$undef
142                 d_getservbyport_r=$undef
143                 d_getservent_r=$undef
144                 d_setprotoent_r=$undef
145                 d_setservent_r=$undef
146                 d_endprotoent_r=$undef
147                 d_endservent_r=$undef ;;
148         esac
149         ;;
150
151 esac 
152 EOCBU
153
154 # Set sensible defaults for NetBSD: look for local software in
155 # /usr/pkg (NetBSD Packages Collection) and in /usr/local.
156 #
157 loclibpth="/usr/pkg/lib /usr/local/lib"
158 locincpth="/usr/pkg/include /usr/local/include"
159 case "$rpathflag" in
160 '')
161         ldflags=
162         ;;
163 *)
164         ldflags=
165         for yyy in $loclibpth; do
166                 ldflags="$ldflags $rpathflag$yyy"
167         done
168         ;;
169 esac
170
171 case `uname -m` in
172 alpha)
173     echo 'int main() {}' > try.c
174     gcc=`${cc:-cc} -v -c try.c 2>&1|grep 'gcc version egcs-2'`
175     case "$gcc" in
176     '' | "gcc version egcs-2.95."[3-9]*) ;; # 2.95.3 or better okay
177     *)  cat >&4 <<EOF
178 ***
179 *** Your gcc ($gcc) is known to be
180 *** too buggy on netbsd/alpha to compile Perl with optimization.
181 *** It is suggested you install the lang/gcc package which should
182 *** have at least gcc 2.95.3 which should work okay: use for example
183 *** Configure -Dcc=/usr/pkg/gcc-2.95.3/bin/cc.  You could also
184 *** Configure -Doptimize=-O0 to compile Perl without any optimization
185 *** but that is not recommended.
186 ***
187 EOF
188         exit 1
189         ;;
190     esac
191     rm -f try.*
192     ;;
193 esac
194
195 # NetBSD/sparc 1.5.3/1.6.1 dumps core in the semid_ds test of Configure.
196 case `uname -m` in
197 sparc) d_semctl_semid_ds=undef ;;
198 esac
199