m4: Fix check for yajl.pc
[libvirt/ericb.git] / m4 / virt-dbus.m4
blobf5af1a8022bdce5afabd88136603f157170e6d19
1 dnl The libdbus.so library
2 dnl
3 dnl Copyright (C) 2012-2014 Red Hat, Inc.
4 dnl
5 dnl This library is free software; you can redistribute it and/or
6 dnl modify it under the terms of the GNU Lesser General Public
7 dnl License as published by the Free Software Foundation; either
8 dnl version 2.1 of the License, or (at your option) any later version.
9 dnl
10 dnl This library is distributed in the hope that it will be useful,
11 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
12 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 dnl Lesser General Public License for more details.
14 dnl
15 dnl You should have received a copy of the GNU Lesser General Public
16 dnl License along with this library.  If not, see
17 dnl <http://www.gnu.org/licenses/>.
18 dnl
20 AC_DEFUN([LIBVIRT_ARG_DBUS],[
21   LIBVIRT_ARG_WITH_FEATURE([DBUS], [dbus-1], [check], [1.0.0])
24 AC_DEFUN([LIBVIRT_CHECK_DBUS],[
25   LIBVIRT_CHECK_PKG([DBUS], [dbus-1], [1.0.0])
27   if test "$with_dbus" = "yes" ; then
28     old_CFLAGS="$CFLAGS"
29     old_LIBS="$LIBS"
30     CFLAGS="$CFLAGS $DBUS_CFLAGS"
31     LIBS="$LIBS $DBUS_LIBS"
32     AC_CHECK_FUNCS([dbus_watch_get_unix_fd])
33     AC_CHECK_TYPES([DBusBasicValue], [], [], [[#include <dbus/dbus.h>]])
34     CFLAGS="$old_CFLAGS"
35     LIBS="$old_LIBS"
36   fi
39 AC_DEFUN([LIBVIRT_RESULT_DBUS],[
40   LIBVIRT_RESULT_LIB([DBUS])