mirror of https://github.com/postgres/postgres
Re-add USE_THREADS, used by ecpg.
This commit is contained in:
parent
c45b851e37
commit
98bf004421
|
@ -2785,7 +2785,11 @@ if test "${enable_thread_safety+set}" = set; then
|
|||
|
||||
case $enableval in
|
||||
yes)
|
||||
:
|
||||
|
||||
cat >>confdefs.h <<\_ACEOF
|
||||
#define USE_THREADS 1
|
||||
_ACEOF
|
||||
|
||||
;;
|
||||
no)
|
||||
:
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
dnl Process this file with autoconf to produce a configure script.
|
||||
dnl $Header: /cvsroot/pgsql/configure.in,v 1.275 2003/08/04 16:48:03 momjian Exp $
|
||||
dnl $Header: /cvsroot/pgsql/configure.in,v 1.276 2003/08/04 21:26:26 momjian Exp $
|
||||
dnl
|
||||
dnl Developers, please strive to achieve this order:
|
||||
dnl
|
||||
|
@ -314,7 +314,8 @@ IFS=$ac_save_IFS
|
|||
# Enable libpq to be thread-safety
|
||||
#
|
||||
AC_MSG_CHECKING([allow thread-safe libpq and ecpg])
|
||||
PGAC_ARG_BOOL(enable, thread-safety, no, [ --enable-thread-safety allow libpq and ecpg to be thread-safe])
|
||||
PGAC_ARG_BOOL(enable, thread-safety, no, [ --enable-thread-safety allow libpq and ecpg to be thread-safe],
|
||||
[AC_DEFINE([USE_THREADS], 1, [Define to 1 to build libpq and ecpg to be thread-safe. (--enable-thread-safety)])])
|
||||
AC_MSG_RESULT([$enable_thread_safety])
|
||||
AC_SUBST(enable_thread_safety)
|
||||
|
||||
|
|
|
@ -600,6 +600,10 @@
|
|||
/* Define to select SysV-style shared memory. */
|
||||
#undef USE_SYSV_SHARED_MEMORY
|
||||
|
||||
/* Define to 1 to build libpq and ecpg to be thread-safe.
|
||||
(--enable-thread-safety) */
|
||||
#undef USE_THREADS
|
||||
|
||||
/* Define to select unnamed POSIX semaphores. */
|
||||
#undef USE_UNNAMED_POSIX_SEMAPHORES
|
||||
|
||||
|
|
Loading…
Reference in New Issue