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
b8a89da2
Commit
b8a89da2
authored
Jul 20, 2004
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Suppress readline usage in mingw in configure.
parent
54069555
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
5 deletions
+26
-5
configure
configure
+13
-2
configure.in
configure.in
+13
-3
No files found.
configure
View file @
b8a89da2
...
...
@@ -2980,8 +2980,8 @@ else
fi
;
if
test
"
$enable_thread_safety
"
=
yes
-o
test
"
$enable_thread_safety_force
"
=
yes
;
then
if
test
"
$enable_thread_safety
"
=
yes
-o
\
"
$enable_thread_safety_force
"
=
yes
;
then
enable_thread_safety
=
"yes"
# for 'force'
cat
>>
confdefs.h
<<
\
_ACEOF
...
...
@@ -3409,6 +3409,17 @@ else
fi
;
# readline on MinGW has problems with backslashes in psql and other bugs.
# This is particularly a problem with non-US code pages.
# Therefore disable its use until we understand the cause. 2004-07-20
case
$host_os
in
mingw
*
)
if
test
"
$with_readline
"
=
yes
;
then
{
echo
"
$as_me
:
$LINENO
: WARNING: *** Readline does not work on MinGW --- disabling"
>
&5
echo
"
$as_me
: WARNING: *** Readline does not work on MinGW --- disabling"
>
&2
;
}
with_readline
=
no
fi
;;
esac
#
# Zlib
...
...
configure.in
View file @
b8a89da2
dnl Process this file with autoconf to produce a configure script.
dnl $PostgreSQL: pgsql/configure.in,v 1.36
8 2004/07/17 18:53:56 petere
Exp $
dnl $PostgreSQL: pgsql/configure.in,v 1.36
9 2004/07/20 20:37:13 momjian
Exp $
dnl
dnl Developers, please strive to achieve this order:
dnl
...
...
@@ -360,8 +360,8 @@ IFS=$ac_save_IFS
AC_MSG_CHECKING([allow thread-safe client libraries])
PGAC_ARG_BOOL(enable, thread-safety, no, [ --enable-thread-safety make client libraries thread-safe])
PGAC_ARG_BOOL(enable, thread-safety-force, no, [ --enable-thread-safety-force force thread-safety in spite of thread test failure])
if test "$enable_thread_safety" = yes -o
test
"$enable_thread_safety_force" = yes; then
if test "$enable_thread_safety" = yes -o
\
"$enable_thread_safety_force" = yes; then
enable_thread_safety="yes" # for 'force'
AC_DEFINE([ENABLE_THREAD_SAFETY], 1,
[Define to 1 to build client libraries as thread-safe code. (--enable-thread-safety)])
...
...
@@ -480,6 +480,16 @@ AC_SUBST(with_openssl)
#
PGAC_ARG_BOOL(with, readline, yes,
[ --without-readline do not use Readline])
# readline on MinGW has problems with backslashes in psql and other bugs.
# This is particularly a problem with non-US code pages.
# Therefore disable its use until we understand the cause. 2004-07-20
case $host_os in mingw*)
if test "$with_readline" = yes; then
AC_MSG_WARN([*** Readline does not work on MinGW --- disabling])
with_readline=no
fi;;
esac
#
# Zlib
...
...
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