From 6ab23dabf50de05767563c4b81aeed7949c4fdec Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Mon, 16 Oct 2006 17:24:54 +0000 Subject: 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. --- config/python.m4 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'config/python.m4') diff --git a/config/python.m4 b/config/python.m4 index 1bfc826d50..ca77d5defb 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 -- cgit v1.2.1