[libvirt] [PATCH] Report an error if no XDR library can be found

Matthias Bolte matthias.bolte at googlemail.com
Tue Dec 22 01:12:51 UTC 2009


---
 configure.in |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/configure.in b/configure.in
index 3be11f2..81548b8 100644
--- a/configure.in
+++ b/configure.in
@@ -116,7 +116,8 @@ dnl If portablexdr is installed, prefer that.
 dnl Otherwise try -lrpc (Cygwin) -lxdr (some MinGW), -lnsl (Solaris)
 dnl or none (most Unix)
 AC_CHECK_LIB([portablexdr],[xdrmem_create],[],[
-	AC_SEARCH_LIBS([xdrmem_create],[rpc xdr nsl])
+	AC_SEARCH_LIBS([xdrmem_create],[rpc xdr nsl],[],
+		[AC_MSG_ERROR([Cannot find a XDR library])])
 	])
 
 AC_CHECK_LIB([intl],[gettext],[])
-- 
1.6.0.4




More information about the libvir-list mailing list