diff options
| author | Bruce Momjian | 2007-03-26 21:30:56 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2007-03-26 21:30:56 +0000 |
| commit | 357be8c974fc0039cca0c88590358205b83ad77d (patch) | |
| tree | c55c48efe1e9ce54ebfb7e076324620dfa799a3c /configure.in | |
| parent | 0b1e4f8530139c5191f2b630743a7f6453d92843 (diff) | |
Properly fix PORTNAME in configure.
Diffstat (limited to 'configure.in')
| -rw-r--r-- | configure.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.in b/configure.in index 5a06e22e5f1..194c56a5671 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -dnl $PostgreSQL: pgsql/configure.in,v 1.505 2007/03/26 19:46:56 momjian Exp $ +dnl $PostgreSQL: pgsql/configure.in,v 1.506 2007/03/26 21:30:56 momjian Exp $ dnl dnl Developers, please strive to achieve this order: dnl @@ -1328,7 +1328,7 @@ AC_CHECK_TYPES([int8, uint8, int64, uint64], [], [], AC_CHECK_TYPES(sig_atomic_t, [], [], [#include <signal.h>]) -if "$PORTNAME" != "win32" +if test "$PORTNAME" != "win32" then PGAC_FUNC_POSIX_SIGNALS if test "$pgac_cv_func_posix_signals" != yes -a "$enable_thread_safety" = yes; then @@ -1415,7 +1415,7 @@ AC_CHECK_PROGS(SGMLSPL, sgmlspl) # defined. Cross compiling throws a warning. # if test "$enable_thread_safety_force" = yes; then -if "$PORTNAME" != "win32" +if test "$PORTNAME" != "win32" then AC_MSG_WARN([ *** Skipping thread test program. --enable-thread-safety-force was used. @@ -1426,7 +1426,7 @@ else AC_MSG_WARN([*** skipping thread test on Win32]) fi elif test "$enable_thread_safety" = yes; then -if "$PORTNAME" != "win32" +if test "$PORTNAME" != "win32" then AC_MSG_CHECKING([thread safety of required library functions]) |
