summaryrefslogtreecommitdiff
path: root/config/python.m4
diff options
context:
space:
mode:
authorPeter Eisentraut2006-10-16 17:24:54 +0000
committerPeter Eisentraut2006-10-16 17:24:54 +0000
commit6ab23dabf50de05767563c4b81aeed7949c4fdec (patch)
tree57aced6b4a8370443c377d89a900bffd4a0baad7 /config/python.m4
parente0dece127db86f40cdcf1fa63441eac93a1ba5ff (diff)
Punt when trying to build with threaded Python on FreeBSD.
Also cut back on excessive use of *** to decorate configure error messages. If it's an error message, you are sure to see it without any decoration.
Diffstat (limited to 'config/python.m4')
-rw-r--r--config/python.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/config/python.m4 b/config/python.m4
index 1bfc826d50e..ca77d5defbd 100644
--- a/config/python.m4
+++ b/config/python.m4
@@ -1,7 +1,7 @@
#
# Autoconf macros for configuring the build of Python extension modules
#
-# $PostgreSQL: pgsql/config/python.m4,v 1.13 2005/10/13 20:40:04 momjian Exp $
+# $PostgreSQL: pgsql/config/python.m4,v 1.14 2006/10/16 17:24:54 petere Exp $
#
# PGAC_PATH_PYTHON
@@ -84,8 +84,8 @@ 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*|freebsd4*)
- AC_MSG_ERROR([*** Threaded Python not supported on this platform ***])
+ openbsd*|freebsd*)
+ AC_MSG_ERROR([threaded Python not supported on this platform])
;;
esac
else