]> xenbits.xensource.com Git - libvirt.git/commitdiff
Mon Nov 26 11:42:00 UTC 2007 Richard W.M. Jones <rjones@redhat.com>
authorRichard W.M. Jones <rjones@redhat.com>
Mon, 26 Nov 2007 11:43:01 +0000 (11:43 +0000)
committerRichard W.M. Jones <rjones@redhat.com>
Mon, 26 Nov 2007 11:43:01 +0000 (11:43 +0000)
* configure.in: Check if -lrpc is needed to get XDR functions.

ChangeLog
configure.in

index f996e7b6be2889d2b4bf0996c45a653b82281725..98342aae665a5ec60e443eb834b6806eaeb69a13 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+Mon Nov 26 11:42:00 UTC 2007 Richard W.M. Jones <rjones@redhat.com>
+
+       * configure.in: Check if -lrpc is needed to get XDR functions.
+
+Mon Nov 26 11:39:59 UTC 2007 Richard W.M. Jones <rjones@redhat.com>
+
+       * configure.in, src/internal.h, src/xml.c: <sys/syslimits.h>
+         is needed on Cygwin to get PATH_MAX.  HOST_NAME_MAX and
+         IF_NAMESIZE defined if not in header files.
+
 Mon Nov 26 11:39:04 UTC 2007 Richard W.M. Jones <rjones@redhat.com>
 
        * configure.in: Minimum version of GnuTLS we support is 1.0.25.
index d13c3f2ab794304279dc1b085ce5bf43ef8ecc6b..925cf14ad47cded32f3b953f8db0b0dd1c5a2748 100644 (file)
@@ -66,6 +66,9 @@ AC_CHECK_FUNCS([regexec])
 dnl Availability of various common headers (non-fatal if missing).
 AC_CHECK_HEADERS([paths.h sys/syslimits.h])
 
+dnl Need -lrpc? (Cygwin needs this)
+AC_SEARCH_LIBS(xdrmem_create,rpc)
+
 dnl Specific dir for HTML output ?
 AC_ARG_WITH(html-dir, AC_HELP_STRING([--with-html-dir=path],
             [path to base html directory, default $datadir/doc/html]),