All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] use ncurses-config to find all curses related libs
@ 2011-11-22 11:35 Olaf Hering
  2011-11-24 18:38 ` Ian Jackson
  2011-11-29 12:50 ` [PATCH v2] " Olaf Hering
  0 siblings, 2 replies; 8+ messages in thread
From: Olaf Hering @ 2011-11-22 11:35 UTC (permalink / raw)
  To: xen-devel

After a split of libtinfo from libncurses in openSuSE Factory the tools
will not link anymore. In the URL below it was suggested to use
'ncurses-config --libs' to find the correct linker options. But
ncurses-config does not exist neither in SLES11 nor in openSuSE. So
check for both ncurses5-config and ncurses-config, if the latter happens
to exist in other environments.

With this change xen-unstable tools build succeeds again in SLES11 and
the latest openSuSE development branch.

http://lists.opensuse.org/opensuse-packaging/2011-11/msg00055.html

Signed-off-by: Olaf Hering <olaf@aepfle.de>

diff -r 0b1ac7b3ee4d config/StdGNU.mk
--- a/config/StdGNU.mk
+++ b/config/StdGNU.mk
@@ -67,7 +67,7 @@ XEN_CONFIG_DIR = $(CONFIG_DIR)/xen
 XEN_SCRIPT_DIR = $(XEN_CONFIG_DIR)/scripts
 
 SOCKET_LIBS =
-CURSES_LIBS = -lncurses
+CURSES_LIBS = $(shell if ! ncurses5-config --libs 2>/dev/null ; then ncurses-config --libs ; fi)
 PTHREAD_LIBS = -lpthread
 UTIL_LIBS = -lutil
 DLOPEN_LIBS = -ldl

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

end of thread, other threads:[~2011-11-29 12:50 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-22 11:35 [PATCH] use ncurses-config to find all curses related libs Olaf Hering
2011-11-24 18:38 ` Ian Jackson
2011-11-24 18:49   ` Olaf Hering
2011-11-24 18:53     ` Ian Jackson
2011-11-24 19:15       ` Olaf Hering
2011-11-24 19:20         ` Ian Jackson
2011-11-24 19:37           ` Olaf Hering
2011-11-29 12:50 ` [PATCH v2] " Olaf Hering

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.