public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* Don't build readline/libreadline.a, when --with-system-readline is supplied
@ 2018-12-12  7:46 Дилян Палаузов
  2018-12-31 12:18 ` +reminder+ " Дилян Палаузов
  2019-01-03  5:09 ` Simon Marchi
  0 siblings, 2 replies; 4+ messages in thread
From: Дилян Палаузов @ 2018-12-12  7:46 UTC (permalink / raw)
  To: gdb-patches

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 --git a/configure.ac b/configure.ac
index 159f968..adf6dfb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -253,6 +253,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.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-10-20  9:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-12  7:46 Don't build readline/libreadline.a, when --with-system-readline is supplied Дилян Палаузов
2018-12-31 12:18 ` +reminder+ " Дилян Палаузов
2019-01-03  5:09 ` Simon Marchi
2022-10-20  9:22   ` Tom de Vries

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).