aboutsummaryrefslogtreecommitdiff
path: root/www/mod_python3/pkg-req.threads
blob: 5328a30cedb5b2280383f4189e0e7efe991fc112 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#! /bin/sh
# 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)
	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)
	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