1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

Fix libc_r detection routine that didn't work on -current.

Spotted by:	"Richard Johannesson" <rtjohan@syspres.com>
This commit is contained in:
Hye-Shik Chang 2003-08-05 03:21:47 +00:00
parent bd08591cdf
commit 52b7dff335
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=86322

View File

@ -2,21 +2,12 @@
# anders@fix.no, 2001-08-07
pydir=`dirname $1 | sed "s/\/bin//"`
mylibc=`ldd $1 | tail +2 | awk '{print $1}' | cut -d'.' -f1 | grep ^libc`
case $mylibc in
libc_r)
if [ "`ldd $1|grep libc_r`" ]; then
echo "Error: Python installation in $pydir uses threads. mod_python requires"
echo "it to be built without threads. Please deinstall & rebuild/reinstall Python with"
echo "WITHOUT_THREADS set."
exit 1
;;
libc)
else
echo "Using a no-threads Python installation (in $pydir). Good."
exit 0
;;
*)
echo "Unknown libc library. Cannot use a Python installation that uses this."
exit 1
;;
esac
fi