From c300e953fb3d4ee1c7809d848056a982eb20d57b Mon Sep 17 00:00:00 2001 From: Emanuele Aina Date: Sat, 4 May 2013 01:46:14 +0200 Subject: [PATCH] build: Require libnl >= 3.2.8 for nl_object_get_type() https://bugzilla.gnome.org/show_bug.cgi?id=698452 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 43372a10b2..94b921702c 100644 --- a/configure.ac +++ b/configure.ac @@ -331,7 +331,7 @@ AM_CONDITIONAL(SUSPEND_RESUME_UPOWER, test "x$with_suspend_resume" = "xupower") AM_CONDITIONAL(SUSPEND_RESUME_SYSTEMD, test "x$with_suspend_resume" = "xsystemd") # libnl support for the linux platform -PKG_CHECK_MODULES(LIBNL, libnl-3.0 >= 3.2.7 libnl-route-3.0 libnl-genl-3.0) +PKG_CHECK_MODULES(LIBNL, libnl-3.0 >= 3.2.8 libnl-route-3.0 libnl-genl-3.0) AC_SUBST(LIBNL_CFLAGS) AC_SUBST(LIBNL_LIBS)