mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
03b2c83164
- 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]
14 lines
428 B
Bash
14 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
|