summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 579c00a)
raw | patch | inline | side by side (parent: 579c00a)
author | Ruben Kerkhof <ruben@rubenkerkhof.com> | |
Tue, 6 Dec 2016 11:12:49 +0000 (12:12 +0100) | ||
committer | Ruben Kerkhof <ruben@rubenkerkhof.com> | |
Tue, 6 Dec 2016 11:12:49 +0000 (12:12 +0100) |
Older versions of autoconf really don't like empty action-if-not-found
sections.
sections.
configure.ac | patch | blob | history |
diff --git a/configure.ac b/configure.ac
index 3d577b4d1054e700572008d080741dc8e8796fca..ad717e3d410467796b628dd9d89923ea7943da3e 100644 (file)
--- a/configure.ac
+++ b/configure.ac
with_libkvm="no"
AC_CHECK_LIB([kvm], [kvm_getprocs],
[with_kvm_getprocs="yes"],
- []
+ [with_kvm_getprocs="no"]
)
if test "x$with_kvm_getprocs" = "xyes"; then
@@ -1998,7 +1998,7 @@ AM_CONDITIONAL([BUILD_WITH_LIBKVM_GETPROCS], [test "x$with_kvm_getprocs" = "xyes
AC_CHECK_LIB([kvm], [kvm_getswapinfo],
[with_kvm_getswapinfo="yes"],
- []
+ [with_kvm_getswapinfo="no"]
)
if test "x$with_kvm_getswapinfo" = "xyes"; then
@@ -2012,7 +2012,7 @@ AM_CONDITIONAL([BUILD_WITH_LIBKVM_GETSWAPINFO], [test "x$with_kvm_getswapinfo" =
AC_CHECK_LIB([kvm], [kvm_nlist],
[with_kvm_nlist="yes"],
- []
+ [with_kvm_nlist="no"]
)
if test "x$with_kvm_nlist" = "xyes"; then
AC_CHECK_LIB([kvm], [kvm_openfiles],
[with_kvm_openfiles="yes"],
- []
+ [with_kvm_openfiles="no"]
)
if test "x$with_kvm_openfiles" = "xyes"; then
AC_CHECK_HEADERS([mysql.h],
[have_mysql_h="yes"],
- []
+ [have_mysql_h="no"]
)
if test "x$have_mysql_h" != "xyes"; then
[
AC_DEFINE([HAVE_AMQP_TCP_SOCKET], [1],
[Define if librabbitmq provides the new TCP socket interface.])
- ],
- []
+ ]
)
AC_CHECK_DECLS([amqp_socket_close],