[binutils-gdb] Don't build readline/libreadline.a, when --with-system-readline is supplied
Simon Marchi
simark@sourceware.org
Thu Jan 3 05:06:00 GMT 2019
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=69961a84c9b3744a10248fb6cbccc3c688a1e0a5
commit 69961a84c9b3744a10248fb6cbccc3c688a1e0a5
Author: ÃÂøûÃÂý ÃÂðûðÃÂ÷þò <dilyan.palauzov@aegee.org>
Date: Wed Dec 12 07:46:03 2018 +0000
Don't build readline/libreadline.a, when --with-system-readline is supplied
https://sourceware.org/bugzilla/show_bug.cgi?id=18632
The bundled libreadline is always built, even if the system is
./configure'd --with-system-readline and the build libreadline.a is not
used.
Proposed patch:
Fix ./configure.ac not to proceed readline/, when --with-system-
readline is provided
Diff:
---
ChangeLog | 6 ++++++
configure | 6 ++++++
configure.ac | 6 ++++++
3 files changed, 18 insertions(+)
diff --git a/ChangeLog b/ChangeLog
index 60b19fd..81654d0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2019-01-03 ÃÂøûÃÂý ÃÂðûðÃÂ÷þò <dilyan.palauzov@aegee.org>
+
+ * configure.ac: Don't configure readline if --with-system-readline is
+ used.
+ * configure: Re-generate.
+
2018-10-31 Joseph Myers <joseph@codesourcery.com>
Merge from GCC:
diff --git a/configure b/configure
index 08dd35c..3747645 100755
--- a/configure
+++ b/configure
@@ -2907,6 +2907,12 @@ if test x$with_system_zlib = xyes ; then
noconfigdirs="$noconfigdirs zlib"
fi
+# Don't compile the bundled readline/libreadline.a if --with-system-readline
+# is provided.
+if test x$with_system_readline = xyes ; then
+ noconfigdirs="$noconfigdirs readline"
+fi
+
# some tools are so dependent upon X11 that if we're not building with X,
# it's not even worth trying to configure, much less build, that tool.
diff --git a/configure.ac b/configure.ac
index 99229d9..46501c2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -245,6 +245,12 @@ if test x$with_system_zlib = xyes ; then
noconfigdirs="$noconfigdirs zlib"
fi
+# Don't compile the bundled readline/libreadline.a if --with-system-readline
+# is provided.
+if test x$with_system_readline = xyes ; then
+ noconfigdirs="$noconfigdirs readline"
+fi
+
# some tools are so dependent upon X11 that if we're not building with X,
# it's not even worth trying to configure, much less build, that tool.
More information about the Gdb-cvs
mailing list