qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [Qemu-trivial] [PATCH] configure: try pkg-config for curses
@ 2012-12-31 16:30 Vadim Evard
  2013-01-11 12:51 ` Vadim Evard
  0 siblings, 1 reply; 4+ messages in thread
From: Vadim Evard @ 2012-12-31 16:30 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial

configure: try pkg-config for curses

Static linkikng against ncurses may require explicit -ltinfo.
In case -lcurses and -lncurses both didn't work give pkg-config a
chance.

Signed-off-by: Vadim Evard <v.e.evard@gmail.com>
---
  configure |    4 +++-
  1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/configure b/configure
index b0c7e54..16280e2 100755
--- a/configure
+++ b/configure
@@ -2030,7 +2030,7 @@ fi
  if test "$mingw32" = "yes" ; then
      curses_list="-lpdcurses"
  else
-    curses_list="-lncurses -lcurses"
+    curses_list="-lncurses:-lcurses:$($pkg_config --libs ncurses)"
  fi

  if test "$curses" != "no" ; then
@@ -2043,7 +2043,9 @@ int main(void) {
    return s != 0;
  }
  EOF
+  IFS=:
    for curses_lib in $curses_list; do
+    unset IFS
      if compile_prog "" "$curses_lib" ; then
        curses_found=yes
        libs_softmmu="$curses_lib $libs_softmmu"
-- 
1.7.10.4

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

end of thread, other threads:[~2013-01-15 12:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-31 16:30 [Qemu-devel] [Qemu-trivial] [PATCH] configure: try pkg-config for curses Vadim Evard
2013-01-11 12:51 ` Vadim Evard
2013-01-15  9:49   ` Stefan Hajnoczi
2013-01-15 12:17     ` [Qemu-devel] [Qemu-trivial] [PATCH v2] " Vadim Evard

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 NNTP newsgroup(s).