Change 18647 by merijn@merijn-l1 on 2003/02/03 16:14:00
Subject: Re: [perl #20606] [PATCH} openbsd hints
From: Abe Timmerman <[EMAIL PROTECTED]>
Date: Sun, 2 Feb 2003 18:27:57 +0100
Message-Id: <[EMAIL PROTECTED]>
Affected files ...
... //depot/perl/hints/openbsd.sh#18 edit
Differences ...
==== //depot/perl/hints/openbsd.sh#18 (text) ====
Index: perl/hints/openbsd.sh
--- perl/hints/openbsd.sh#17~18602~ Wed Jan 29 22:31:50 2003
+++ perl/hints/openbsd.sh Mon Feb 3 08:14:00 2003
@@ -104,6 +104,14 @@
# any openbsd version dependencies with pthreads?
ccflags="-pthread $ccflags"
ldflags="-pthread $ldflags"
+ case "$osvers" in
+ [0-2].*|3.[0-2])
+ # Change from -lc to -lc_r
+ set `echo "X $libswanted " | sed 's/ c / c_r /'`
+ shift
+ libswanted="$*"
+ ;;
+ esac
esac
EOCBU
End of Patch.