diff mbox

[v2,2/7] configure: Add -lutil to libs_qga if necessary

Message ID 1408704863-12343-3-git-send-email-famz@redhat.com
State New
Headers show

Commit Message

Fam Zheng Aug. 22, 2014, 10:54 a.m. UTC
Since we will soon need to resolve openpty (3) when linking.

Signed-off-by: Fam Zheng <famz@redhat.com>
---
 configure | 1 +
 1 file changed, 1 insertion(+)
diff mbox

Patch

diff --git a/configure b/configure
index 283c71c..5c35ecf 100755
--- a/configure
+++ b/configure
@@ -3546,6 +3546,7 @@  fi
 if test "$darwin" != "yes" -a "$mingw32" != "yes" -a "$solaris" != yes -a \
         "$aix" != "yes" -a "$haiku" != "yes" ; then
     libs_softmmu="-lutil $libs_softmmu"
+    libs_qga="-lutil $libs_qga"
 fi
 
 ##########################################