mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Properly fix PORTNAME in configure.
This commit is contained in:
6
configure
vendored
6
configure
vendored
@ -21710,7 +21710,7 @@ fi
|
||||
|
||||
|
||||
|
||||
if "$PORTNAME" != "win32"
|
||||
if test "$PORTNAME" != "win32"
|
||||
then
|
||||
echo "$as_me:$LINENO: checking for POSIX signal interface" >&5
|
||||
echo $ECHO_N "checking for POSIX signal interface... $ECHO_C" >&6
|
||||
@ -23252,7 +23252,7 @@ done
|
||||
# defined. Cross compiling throws a warning.
|
||||
#
|
||||
if test "$enable_thread_safety_force" = yes; then
|
||||
if "$PORTNAME" != "win32"
|
||||
if test "$PORTNAME" != "win32"
|
||||
then
|
||||
{ echo "$as_me:$LINENO: WARNING:
|
||||
*** Skipping thread test program. --enable-thread-safety-force was used.
|
||||
@ -23269,7 +23269,7 @@ else
|
||||
echo "$as_me: WARNING: *** skipping thread test on Win32" >&2;}
|
||||
fi
|
||||
elif test "$enable_thread_safety" = yes; then
|
||||
if "$PORTNAME" != "win32"
|
||||
if test "$PORTNAME" != "win32"
|
||||
then
|
||||
echo "$as_me:$LINENO: checking thread safety of required library functions" >&5
|
||||
echo $ECHO_N "checking thread safety of required library functions... $ECHO_C" >&6
|
||||
|
Reference in New Issue
Block a user