Commit c648f058 authored by Tom Lane's avatar Tom Lane

Put AC_MSG_RESULT() call in the right place.

Thinko in ecb0d20a --- this needs to go one level further out in
the "if" nest.  As it stood, nothing got printed in the case of
selecting named POSIX semaphores.  Cosmetic issue only, but a bug.
parent 4212cb73
...@@ -14989,9 +14989,9 @@ $as_echo "#define USE_SYSV_SEMAPHORES 1" >>confdefs.h ...@@ -14989,9 +14989,9 @@ $as_echo "#define USE_SYSV_SEMAPHORES 1" >>confdefs.h
SEMA_IMPLEMENTATION="src/backend/port/sysv_sema.c" SEMA_IMPLEMENTATION="src/backend/port/sysv_sema.c"
sematype="System V" sematype="System V"
fi fi
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sematype" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $sematype" >&5
$as_echo "$sematype" >&6; } $as_echo "$sematype" >&6; }
fi
else else
$as_echo "#define USE_WIN32_SEMAPHORES 1" >>confdefs.h $as_echo "#define USE_WIN32_SEMAPHORES 1" >>confdefs.h
......
...@@ -1955,8 +1955,8 @@ if test "$PORTNAME" != "win32"; then ...@@ -1955,8 +1955,8 @@ if test "$PORTNAME" != "win32"; then
SEMA_IMPLEMENTATION="src/backend/port/sysv_sema.c" SEMA_IMPLEMENTATION="src/backend/port/sysv_sema.c"
sematype="System V" sematype="System V"
fi fi
AC_MSG_RESULT([$sematype])
fi fi
AC_MSG_RESULT([$sematype])
else else
AC_DEFINE(USE_WIN32_SEMAPHORES, 1, [Define to select Win32-style semaphores.]) AC_DEFINE(USE_WIN32_SEMAPHORES, 1, [Define to select Win32-style semaphores.])
SEMA_IMPLEMENTATION="src/backend/port/win32_sema.c" SEMA_IMPLEMENTATION="src/backend/port/win32_sema.c"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment