mirror of
https://github.com/libvirt/libvirt.git
synced 2026-07-29 15:54:48 -05:00
build: allow autoconf 2.59 again
Autoconf 2.59 doesn't define ${localedir}, so libvirt was failing
to compile due to a missing LOCALEDIR until today's configmake fix.
* .gnulib: Update to latest for configmake fix.
* configure.ac (libpcap): Avoid AS_CASE.
This commit is contained in:
+1
-1
Submodule .gnulib updated: 980f9d2ceb...ce083ca023
+5
-5
@@ -1211,11 +1211,11 @@ LIBPCAP_FOUND="no"
|
||||
|
||||
AC_ARG_WITH([libpcap], AC_HELP_STRING([--with-libpcap=@<:@PFX@:>@], [libpcap location]))
|
||||
if test "$with_qemu" = "yes"; then
|
||||
AS_CASE(["x$with_libpcap"],
|
||||
[xno], [LIBPCAP_CONFIG=""],
|
||||
[x|xyes], [LIBPCAP_CONFIG="pcap-config"],
|
||||
[LIBPCAP_CONFIG="$with_libpcap/bin/pcap-config"]
|
||||
)
|
||||
case $with_libpcap in
|
||||
no) LIBPCAP_CONFIG= ;;
|
||||
''|yes) LIBPCAP_CONFIG="pcap-config" ;;
|
||||
*) LIBPCAP_CONFIG="$with_libpcap/bin/pcap-config" ;;
|
||||
esac
|
||||
AS_IF([test "x$LIBPCAP_CONFIG" != "x"], [
|
||||
AC_MSG_CHECKING(libpcap $LIBPCAP_CONFIG >= $LIBPCAP_REQUIRED )
|
||||
if ! $LIBPCAP_CONFIG --libs > /dev/null 2>&1 ; then
|
||||
|
||||
Reference in New Issue
Block a user