diff options
author | Olli Hauer <ohauer@FreeBSD.org> | 2012-01-01 19:30:58 +0000 |
---|---|---|
committer | Olli Hauer <ohauer@FreeBSD.org> | 2012-01-01 19:30:58 +0000 |
commit | 2c96f26a12ae4d0474c70d61c6cab483c2865f49 (patch) | |
tree | 3d7591c78a947273efae6c582aacdca524e69528 /www/mod_python/pkg-req.threads | |
parent | - Move all the fetching into fetch phase (diff) |
- remove apache13 and ports depending on apache13 from portstree
( EXPIRATION_DATE=2012-01-01 )
with hat apache@
Notes
Notes:
svn path=/head/; revision=288378
Diffstat (limited to 'www/mod_python/pkg-req.threads')
-rw-r--r-- | www/mod_python/pkg-req.threads | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/www/mod_python/pkg-req.threads b/www/mod_python/pkg-req.threads deleted file mode 100644 index 6244f88a580d..000000000000 --- a/www/mod_python/pkg-req.threads +++ /dev/null @@ -1,13 +0,0 @@ -#! /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 |