mirror of
https://github.com/postgres/postgres.git
synced 2025-09-02 04:21:28 +03:00
Rename --without-spinlocks to --disable-spinlocks, per Peter.
This commit is contained in:
17
configure.in
17
configure.in
@@ -1,5 +1,5 @@
|
||||
dnl Process this file with autoconf to produce a configure script.
|
||||
dnl $Header: /cvsroot/pgsql/configure.in,v 1.288 2003/09/13 14:49:51 momjian Exp $
|
||||
\dnl Process this file with autoconf to produce a configure script.
|
||||
dnl $Header: /cvsroot/pgsql/configure.in,v 1.289 2003/09/13 17:01:09 momjian Exp $
|
||||
dnl
|
||||
dnl Developers, please strive to achieve this order:
|
||||
dnl
|
||||
@@ -199,6 +199,11 @@ PGAC_ARG_BOOL(enable, rpath, yes,
|
||||
[ --disable-rpath do not embed shared library search path in executables])
|
||||
AC_SUBST(enable_rpath)
|
||||
|
||||
#
|
||||
# Spinlocks
|
||||
#
|
||||
PGAC_ARG_BOOL(enable, spinlocks, yes,
|
||||
[ --disable-spinlocks do not use Spinlocks])
|
||||
|
||||
#
|
||||
# --enable-debug adds -g to compiler flags
|
||||
@@ -521,12 +526,6 @@ AC_SUBST(with_openssl)
|
||||
PGAC_ARG_BOOL(with, readline, yes,
|
||||
[ --without-readline do not use Readline])
|
||||
|
||||
#
|
||||
# Spinlocks
|
||||
#
|
||||
PGAC_ARG_BOOL(with, spinlocks, yes,
|
||||
[ --without-spinlocks do not use Spinlocks])
|
||||
|
||||
#
|
||||
# Zlib
|
||||
#
|
||||
@@ -683,7 +682,7 @@ failure. It is possible the compiler isn't looking in the proper directory.
|
||||
Use --without-zlib to disable zlib support.])])
|
||||
fi
|
||||
|
||||
if test "$with_spinlocks" = yes; then
|
||||
if test "$enable_spinlocks" = yes; then
|
||||
AC_DEFINE(HAVE_SPINLOCKS, 1, [Define to 1 if you have spinlocks.])
|
||||
else
|
||||
AC_MSG_WARN([
|
||||
|
Reference in New Issue
Block a user