Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
5c15cb47
Commit
5c15cb47
authored
Aug 04, 2003
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix thread handling in configure.
parent
963c1fa9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
29 deletions
+25
-29
configure
configure
+16
-18
configure.in
configure.in
+9
-7
src/include/pg_config.h.in
src/include/pg_config.h.in
+0
-4
No files found.
configure
View file @
5c15cb47
...
...
@@ -844,6 +844,7 @@ Optional Features:
--enable-debug build with debugging symbols (-g)
--enable-depend turn on automatic dependency tracking
--enable-cassert enable assertion checks (for debugging)
--enable-thread-safety allow libpq and ecpg to be thread-safe
--disable-largefile omit support for large files
Optional Packages:
...
...
@@ -854,7 +855,6 @@ Optional Packages:
--with-libraries=DIRS look for additional libraries in DIRS
--with-libs=DIRS alternative spelling of --with-libraries
--with-pgport=PORTNUM change default port number 5432
--enable-thread-safety allow libpq and ecpg to be thread-safe
--with-tcl build Tcl and Tk interfaces
--without-tk do not build Tk interfaces if Tcl is enabled
--with-tclconfig=DIR tclConfig.sh and tkConfig.sh are in DIR
...
...
@@ -2779,35 +2779,29 @@ echo "$as_me:$LINENO: checking allow thread-safe libpq and ecpg" >&5
echo
$ECHO_N
"checking allow thread-safe libpq and ecpg...
$ECHO_C
"
>
&6
# Check whether --enable-thread-safety or --disable-thread-safety was given.
if
test
"
${
enable_thread_safety
+set
}
"
=
set
;
then
enableval
=
"
$enable_thread_safety
"
# Check whether --with-threads or --without-threads was given.
if
test
"
${
with_threads
+set
}
"
=
set
;
then
withval
=
"
$with_threads
"
case
$withval
in
case
$enableval
in
yes
)
cat
>>
confdefs.h
<<
\
_ACEOF
#define USE_THREADS 1
_ACEOF
:
;;
no
)
:
;;
*
)
{
{
echo
"
$as_me
:
$LINENO
: error: no argument expected for --
with-threads
option"
>
&5
echo
"
$as_me
: error: no argument expected for --
with-threads
option"
>
&2
;
}
{
{
echo
"
$as_me
:
$LINENO
: error: no argument expected for --
enable-thread-safety
option"
>
&5
echo
"
$as_me
: error: no argument expected for --
enable-thread-safety
option"
>
&2
;
}
{
(
exit
1
)
;
exit
1
;
}
;
}
;;
esac
else
with_threads
=
no
enable_thread_safety
=
no
fi
;
echo
"
$as_me
:
$LINENO
: result:
$enable_thread_safety
"
>
&5
echo
"
${
ECHO_T
}
$enable_thread_safety
"
>
&6
...
...
@@ -13079,6 +13073,10 @@ functions, or libraries required for threading support.
"
>
&2
;
}
{
(
exit
1
)
;
exit
1
;
}
;
}
fi
else
# do not use values from template file
THREAD_CFLAGS
=
THREAD_LIBS
=
fi
...
...
@@ -13096,8 +13094,8 @@ fi
#
if
test
"
$enable_thread_safety
"
=
yes
-a
"
$NEED_REENTRANT_FUNC_NAMES
"
=
yes
;
then
_CFLAGS
=
"
$CFLAGS
"
_LIB
=
"
$LIBS
"
CFLAGS
=
"
$CFLAGS
$TREAD_CFLAGS
"
_LIB
S
=
"
$LIBS
"
CFLAGS
=
"
$CFLAGS
$T
H
READ_CFLAGS
"
LIBS
=
"
$LIBS
$THREAD_LIBS
"
...
...
@@ -13178,7 +13176,7 @@ fi
done
CFLAGS
=
"
$_CFLAGS
"
LIB
=
"
$_LIBS
"
LIB
S
=
"
$_LIBS
"
fi
...
...
configure.in
View file @
5c15cb47
dnl Process this file with autoconf to produce a configure script.
dnl $Header: /cvsroot/pgsql/configure.in,v 1.27
4 2003/08/04 04:03:03 tgl
Exp $
dnl $Header: /cvsroot/pgsql/configure.in,v 1.27
5 2003/08/04 16:48:03 momjian
Exp $
dnl
dnl Developers, please strive to achieve this order:
dnl
...
...
@@ -314,9 +314,7 @@ IFS=$ac_save_IFS
# Enable libpq to be thread-safety
#
AC_MSG_CHECKING([allow thread-safe libpq and ecpg])
PGAC_ARG_BOOL(with, threads, 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)])])
PGAC_ARG_BOOL(enable, thread-safety, no, [ --enable-thread-safety allow libpq and ecpg to be thread-safe])
AC_MSG_RESULT([$enable_thread_safety])
AC_SUBST(enable_thread_safety)
...
...
@@ -970,6 +968,10 @@ so it can be added to the next release. Report all compile flags, link flags,
functions, or libraries required for threading support.
])
fi
else
# do not use values from template file
THREAD_CFLAGS=
THREAD_LIBS=
fi
AC_SUBST(THREAD_CFLAGS)
AC_SUBST(THREAD_LIBS)
...
...
@@ -987,12 +989,12 @@ AC_SUBST(THREAD_LIBS)
#
if test "$enable_thread_safety" = yes -a "$NEED_REENTRANT_FUNC_NAMES" = yes ; then
_CFLAGS="$CFLAGS"
_LIB="$LIBS"
CFLAGS="$CFLAGS $TREAD_CFLAGS"
_LIB
S
="$LIBS"
CFLAGS="$CFLAGS $T
H
READ_CFLAGS"
LIBS="$LIBS $THREAD_LIBS"
AC_CHECK_FUNCS([strerror_r getpwuid_r gethostbyname_r])
CFLAGS="$_CFLAGS"
LIB="$_LIBS"
LIB
S
="$_LIBS"
fi
...
...
src/include/pg_config.h.in
View file @
5c15cb47
...
...
@@ -600,10 +600,6 @@
/* 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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment