X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=hints%2Ffreebsd.sh;h=a5062381e87f867fadde54c4567db53ec6be948a;hb=c372d929e82a56503fe8b3b070d05d130fc3d0d9;hp=2dd6a6cbbe872aa82eb5ccc06d46a4c0788a029a;hpb=3927333227fbad66c1c7ecc9cb01abe773020682;p=p5sagit%2Fp5-mst-13.2.git diff --git a/hints/freebsd.sh b/hints/freebsd.sh index 2dd6a6c..a506238 100644 --- a/hints/freebsd.sh +++ b/hints/freebsd.sh @@ -222,24 +222,42 @@ Consider using the latest STABLE release. EOM exit 1 fi - case "$osvers" in + # 500016 is the first osreldate in which one could + # just link against libc_r without disposing of libc + # at the same time. 500016 ... up to whatever it was + # on the 31st of August 2003 can still be used with -pthread, + # but it is not necessary. + + # Anton Berezin says that post 500something we're wrong to be + # to be using -lc_r, and should just be using -pthread on the + # linker line. + # So presumably really we should be checking that $osver is 5.*) + # and that `/sbin/sysctl -n kern.osreldate` -ge 500016 + # or -lt 500something and only in that range not doing this: + ldflags="-pthread $ldflags" + # Both in 4.x and 5.x gethostbyaddr_r exists but # it is "Temporary function, not threadsafe"... - 4.*) d_gethostbyaddr_r="undef" - d_gethostbyaddr_r_proto="0" - ;; - 5.*) d_gethostbyaddr_r="undef" - d_gethostbyaddr_r_proto="0" - - ;; - esac + # Presumably earlier it didn't even exist. + d_gethostbyaddr_r="undef" + d_gethostbyaddr_r_proto="0" ;; esac - set `echo X "$libswanted "| sed -e 's/ c / c_r /'` - shift - libswanted="$*" + case "$osvers" in + [1-4]*) + set `echo X "$libswanted "| sed -e 's/ c / c_r /'` + shift + libswanted="$*" + ;; + *) + set `echo X "$libswanted "| sed -e 's/ c //'` + shift + libswanted="$*" + ;; + esac + # Configure will probably pick the wrong libc to use for nm scan. # The safest quick-fix is just to not use nm at all... usenm=false @@ -256,8 +274,13 @@ EOM # Even with the malloc mutexes the Perl malloc does not # seem to be threadsafe in FreeBSD? - usemymalloc=n - + case "$usemymalloc" in + '') usemymalloc=n ;; + esac esac EOCBU +# malloc wrap works +case "$usemallocwrap" in +'') usemallocwrap='define' ;; +esac