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
bcd8986e
Commit
bcd8986e
authored
Sep 13, 2003
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename --without-spinlocks to --disable-spinlocks, per Peter.
parent
cd47a4d3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
41 additions
and
44 deletions
+41
-44
configure
configure
+30
-32
configure.in
configure.in
+8
-9
doc/src/sgml/installation.sgml
doc/src/sgml/installation.sgml
+3
-3
No files found.
configure
View file @
bcd8986e
...
...
@@ -841,6 +841,7 @@ Optional Features:
--enable-nls[=LANGUAGES] enable Native Language Support
--disable-shared do not build shared libraries
--disable-rpath do not embed shared library search path in executables
--disable-spinlocks do not use Spinlocks
--enable-debug build with debugging symbols (-g)
--enable-depend turn on automatic dependency tracking
--enable-cassert enable assertion checks (for debugging)
...
...
@@ -869,7 +870,6 @@ Optional Packages:
--with-rendezvous build with Rendezvous support
--with-openssl[=DIR] build with OpenSSL support [/usr/local/ssl]
--without-readline do not use Readline
--without-spinlocks do not use Spinlocks
--without-zlib do not use Zlib
--with-gnu-ld assume the C compiler uses GNU ld default=no
...
...
@@ -1746,6 +1746,34 @@ fi;
#
# Spinlocks
#
# Check whether --enable-spinlocks or --disable-spinlocks was given.
if
test
"
${
enable_spinlocks
+set
}
"
=
set
;
then
enableval
=
"
$enable_spinlocks
"
case
$enableval
in
yes
)
:
;;
no
)
:
;;
*
)
{
{
echo
"
$as_me
:
$LINENO
: error: no argument expected for --enable-spinlocks option"
>
&5
echo
"
$as_me
: error: no argument expected for --enable-spinlocks option"
>
&2
;
}
{
(
exit
1
)
;
exit
1
;
}
;
}
;;
esac
else
enable_spinlocks
=
yes
fi
;
#
# --enable-debug adds -g to compiler flags
...
...
@@ -3494,36 +3522,6 @@ else
fi
;
#
# Spinlocks
#
# Check whether --with-spinlocks or --without-spinlocks was given.
if
test
"
${
with_spinlocks
+set
}
"
=
set
;
then
withval
=
"
$with_spinlocks
"
case
$withval
in
yes
)
:
;;
no
)
:
;;
*
)
{
{
echo
"
$as_me
:
$LINENO
: error: no argument expected for --with-spinlocks option"
>
&5
echo
"
$as_me
: error: no argument expected for --with-spinlocks option"
>
&2
;
}
{
(
exit
1
)
;
exit
1
;
}
;
}
;;
esac
else
with_spinlocks
=
yes
fi
;
#
# Zlib
#
...
...
@@ -6092,7 +6090,7 @@ fi
fi
if
test
"
$
with
_spinlocks
"
=
yes
;
then
if
test
"
$
enable
_spinlocks
"
=
yes
;
then
cat
>>
confdefs.h
<<
\
_ACEOF
#define HAVE_SPINLOCKS 1
...
...
configure.in
View file @
bcd8986e
dnl Process this file with autoconf to produce a configure script.
dnl $Header: /cvsroot/pgsql/configure.in,v 1.28
8 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.28
9 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([
...
...
doc/src/sgml/installation.sgml
View file @
bcd8986e
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/installation.sgml,v 1.14
2 2003/09/12 16:10:26
momjian Exp $ -->
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/installation.sgml,v 1.14
3 2003/09/13 17:01:09
momjian Exp $ -->
<chapter id="installation">
<title><![%standalone-include[<productname>PostgreSQL</>]]>
...
...
@@ -900,12 +900,12 @@ JAVACMD=$JAVA_HOME/bin/java
</varlistentry>
<varlistentry>
<term><option>--
without
-spinlocks</option></term>
<term><option>--
disable
-spinlocks</option></term>
<listitem>
<para>
Allows source builds to succeed without CPU spinlock support.
Lack of spinlock support will produce poor performance.
This option is to be used only by platforms
without
This option is to be used only by platforms
lacking
spinlock support.
</para>
</listitem>
...
...
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