From 624b29b43ee9bc440524a09e1ee6bd5a04cfc94f Mon Sep 17 00:00:00 2001 From: Jarkko Hietaniemi Date: Sat, 16 Mar 2002 18:29:26 +0000 Subject: FreeBSD is lying to us: there is no threadsafe gethostbyaddr_r. p4raw-id: //depot/perl@15262 --- hints/freebsd.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'hints/freebsd.sh') diff --git a/hints/freebsd.sh b/hints/freebsd.sh index 8b324da26e..394abb86b9 100644 --- a/hints/freebsd.sh +++ b/hints/freebsd.sh @@ -210,7 +210,13 @@ EOM exit 1 fi ldflags="-pthread $ldflags" - ccflags="-D_THREAD_SAFE $ccflags" + case "$osvers" in + 4.5*) # 4.5 has gethostbyaddr_r but it is + # "Temporary function, not threadsafe"... + d_gethostbyaddr_r="undef" + d_gethostbyaddr_r_proto="undef" + ;; + esac ;; esac -- cgit v1.2.1