]> granicus.if.org Git - postgresql/commitdiff
Suppress readline usage in mingw in configure.
authorBruce Momjian <bruce@momjian.us>
Tue, 20 Jul 2004 20:37:13 +0000 (20:37 +0000)
committerBruce Momjian <bruce@momjian.us>
Tue, 20 Jul 2004 20:37:13 +0000 (20:37 +0000)
configure
configure.in

index 1ad862be1d302e7743e231ea1784aed46b6c0071..f4c9f36c62a9275ba2cc770a65a7df14d0f21753 100755 (executable)
--- a/configure
+++ b/configure
@@ -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
index cf9236b652274fdbc447675a7d476fa865090d8e..e11c1a5dba9ce415c47b2f771e43c8d90be0cc01 100644 (file)
@@ -1,5 +1,5 @@
 dnl Process this file with autoconf to produce a configure script.
-dnl $PostgreSQL: pgsql/configure.in,v 1.368 2004/07/17 18:53:56 petere Exp $
+dnl $PostgreSQL: pgsql/configure.in,v 1.369 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