virt-udev.m4 1.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
dnl The libudev.so library
dnl
dnl Copyright (C) 2012-2013 Red Hat, Inc.
dnl
dnl This library is free software; you can redistribute it and/or
dnl modify it under the terms of the GNU Lesser General Public
dnl License as published by the Free Software Foundation; either
dnl version 2.1 of the License, or (at your option) any later version.
dnl
dnl This library is distributed in the hope that it will be useful,
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
dnl Lesser General Public License for more details.
dnl
dnl You should have received a copy of the GNU Lesser General Public
dnl License along with this library.  If not, see
dnl <http://www.gnu.org/licenses/>.
dnl

20
AC_DEFUN([LIBVIRT_ARG_UDEV],[
21
  LIBVIRT_ARG_WITH_FEATURE([UDEV], [libudev], [check], [145])
22 23 24
])

AC_DEFUN([LIBVIRT_CHECK_UDEV],[
25 26 27 28
  AC_REQUIRE([LIBVIRT_CHECK_PCIACCESS])
  LIBVIRT_CHECK_PKG([UDEV], [libudev], [145])

  if test "$with_udev" = "yes" && test "$with_pciaccess" != "yes" ; then
E
Eric Blake 已提交
29
    AC_MSG_ERROR([You must install the pciaccess module to build with udev])
30
  fi
31 32

  if test "$with_udev" = "yes" ; then
33 34 35 36 37 38 39
    old_CFLAGS="$CFLAGS"
    old_LIBS="$LIBS"
    CFLAGS="$CFLAGS $UDEV_CFLAGS"
    LIBS="$CFLAGS $UDEV_LIBS"
    AC_CHECK_FUNCS([udev_monitor_set_receive_buffer_size])
    CFLAGS="$old_CFLAGS"
    LIBS="$old_LIBS"
40
  fi
41 42 43 44 45 46
])

AC_DEFUN([LIBVIRT_RESULT_UDEV],[
  AC_REQUIRE([LIBVIRT_RESULT_PCIACCESS])
  LIBVIRT_RESULT_LIB([UDEV])
])