summaryrefslogtreecommitdiff
path: root/m4/spice-deps.m4
diff options
context:
space:
mode:
Diffstat (limited to 'm4/spice-deps.m4')
-rw-r--r--m4/spice-deps.m412
1 files changed, 12 insertions, 0 deletions
diff --git a/m4/spice-deps.m4 b/m4/spice-deps.m4
index e11fc4e..6a07ee6 100644
--- a/m4/spice-deps.m4
+++ b/m4/spice-deps.m4
@@ -302,6 +302,18 @@ AC_DEFUN([SPICE_CHECK_OPENSSL], [
PKG_CHECK_MODULES(OPENSSL, openssl)
])
+# SPICE_CHECK_UDEV
+# -----------------
+# Check for the availability of libudev. If found, it will help to determine
+# if a given vendor GPU is available or not.
+#------------------
+AC_DEFUN([SPICE_CHECK_UDEV], [
+ PKG_CHECK_MODULES([UDEV], [libudev], [have_udev=yes],[have_udev=no])
+ if test "x$have_udev" = "xyes"; then
+ AC_DEFINE([HAVE_UDEV], 1, [whether libudev is available to identify GPU])
+ fi
+])
+
# SPICE_CHECK_INSTRUMENTATION
# -----------------
# Check for the availability of an instrumentation library.