Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit357be8c

Browse files
committed
Properly fix PORTNAME in configure.
1 parent0b1e4f8 commit357be8c

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

‎configure

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21710,7 +21710,7 @@ fi
2171021710

2171121711

2171221712

21713-
if "$PORTNAME" != "win32"
21713+
iftest"$PORTNAME" != "win32"
2171421714
then
2171521715
echo "$as_me:$LINENO: checking for POSIX signal interface" >&5
2171621716
echo $ECHO_N "checking for POSIX signal interface... $ECHO_C" >&6
@@ -23252,7 +23252,7 @@ done
2325223252
# defined. Cross compiling throws a warning.
2325323253
#
2325423254
if test "$enable_thread_safety_force" = yes; then
23255-
if "$PORTNAME" != "win32"
23255+
iftest"$PORTNAME" != "win32"
2325623256
then
2325723257
{ echo "$as_me:$LINENO: WARNING:
2325823258
*** Skipping thread test program. --enable-thread-safety-force was used.
@@ -23269,7 +23269,7 @@ else
2326923269
echo "$as_me: WARNING: *** skipping thread test on Win32" >&2;}
2327023270
fi
2327123271
elif test "$enable_thread_safety" = yes; then
23272-
if "$PORTNAME" != "win32"
23272+
iftest"$PORTNAME" != "win32"
2327323273
then
2327423274
echo "$as_me:$LINENO: checking thread safety of required library functions" >&5
2327523275
echo $ECHO_N "checking thread safety of required library functions... $ECHO_C" >&6

‎configure.in

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
dnl Process this file with autoconf to produce a configure script.
2-
dnl $PostgreSQL: pgsql/configure.in,v 1.505 2007/03/2619:46:56 momjian Exp $
2+
dnl $PostgreSQL: pgsql/configure.in,v 1.506 2007/03/2621:30:56 momjian Exp $
33
dnl
44
dnl Developers, please strive to achieve this order:
55
dnl
@@ -1328,7 +1328,7 @@ AC_CHECK_TYPES([int8, uint8, int64, uint64], [], [],
13281328
AC_CHECK_TYPES(sig_atomic_t, [], [], [#include <signal.h>])
13291329

13301330

1331-
if "$PORTNAME" != "win32"
1331+
iftest"$PORTNAME" != "win32"
13321332
then
13331333
PGAC_FUNC_POSIX_SIGNALS
13341334
if test "$pgac_cv_func_posix_signals" != yes -a "$enable_thread_safety" = yes; then
@@ -1415,7 +1415,7 @@ AC_CHECK_PROGS(SGMLSPL, sgmlspl)
14151415
# defined. Cross compiling throws a warning.
14161416
#
14171417
if test "$enable_thread_safety_force" = yes; then
1418-
if "$PORTNAME" != "win32"
1418+
iftest"$PORTNAME" != "win32"
14191419
then
14201420
AC_MSG_WARN([
14211421
*** Skipping thread test program. --enable-thread-safety-force was used.
@@ -1426,7 +1426,7 @@ else
14261426
AC_MSG_WARN([*** skipping thread test on Win32])
14271427
fi
14281428
elif test "$enable_thread_safety" = yes; then
1429-
if "$PORTNAME" != "win32"
1429+
iftest"$PORTNAME" != "win32"
14301430
then
14311431
AC_MSG_CHECKING([thread safety of required library functions])
14321432

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp