diff options
author | Bruce Momjian | 2005-10-13 20:40:04 +0000 |
---|---|---|
committer | Bruce Momjian | 2005-10-13 20:40:04 +0000 |
commit | b9ebafa983c80406a44824d7b9344edd37789080 (patch) | |
tree | bcbd1a61c2d8866466d1745491c00c0ba5fac76d | |
parent | dbad75c236c1d160b1461037759349bcafede7bb (diff) |
Enable threaded python builds on freebsd5, per report from Jim C. Nasby
-rw-r--r-- | config/python.m4 | 2 | ||||
-rwxr-xr-x | configure | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/config/python.m4 b/config/python.m4 index 9e2e74ae25..458284dd67 100644 --- a/config/python.m4 +++ b/config/python.m4 @@ -84,7 +84,7 @@ pythreads=`${PYTHON} -c "import sys; print int('thread' in sys.builtin_module_na if test "$pythreads" = "1"; then AC_MSG_RESULT(yes) case $host_os in - openbsd*|freebsd*) + openbsd*|freebsd4*) AC_MSG_ERROR([*** Threaded Python not supported on this platform ***]) ;; esac @@ -4698,7 +4698,7 @@ if test "$pythreads" = "1"; then echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 case $host_os in - openbsd*|freebsd*) + openbsd*|freebsd4*) { { echo "$as_me:$LINENO: error: *** Threaded Python not supported on this platform ***" >&5 echo "$as_me: error: *** Threaded Python not supported on this platform ***" >&2;} { (exit 1); exit 1; }; } |