freebsd-ports/www/mod_python/pkg-req.threads
Hye-Shik Chang 03b2c83164 - Update to 2.7.10 and unmark BROKEN. [1]
- Respect LOCALBASE for APXS location. [2]
- Assign maintainership to submitter. [2]

PR:		63960 [2]
Submitted by:	Simon Barner <barner@in.tum.de> [1],
		Josh Elsasser <jre@vineyard.net> [2]
Requested by:	Hideki Machida <hido@neojapangz.com> [1]
2004-03-11 13:20:01 +00:00

13 lines
428 B
Bash

#! /bin/sh
# anders@fix.no, 2001-08-07
pydir=`dirname $1 | sed "s/\/bin//"`
if [ "`ldd $1|egrep 'libc_r|libkse|libthr|libpthread'`" ]; 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
else
echo "Using a no-threads Python installation (in $pydir). Good."
exit 0
fi