From 5352c9b3609bca63814f9f6f03dbbbadf6c6333a Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Mon, 17 Jan 2011 09:12:45 -0500 Subject: Remove support for pre-1.1 netlink Netlink 1.0 and older is buggy and unreliable, occasionally causing tight-loops. We're no longer going to try to support it. https://fedorahosted.org/sssd/ticket/755 --- src/conf_macros.m4 | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/conf_macros.m4') diff --git a/src/conf_macros.m4 b/src/conf_macros.m4 index 5898bc7f..d759c48e 100644 --- a/src/conf_macros.m4 +++ b/src/conf_macros.m4 @@ -240,15 +240,14 @@ AC_DEFUN([WITH_SEMANAGE], AC_DEFUN([WITH_LIBNL], [ AC_ARG_WITH([libnl], [AC_HELP_STRING([--with-libnl], - [Whether to build with libnetlink support [yes]] + [Whether to build with libnetlink support [AUTO]] ) ], [], with_libnl=yes ) if test x"$with_libnl" = xyes; then - HAVE_LIBNL=1 - AC_SUBST(HAVE_LIBNL) - AC_DEFINE_UNQUOTED(HAVE_LIBNL, 1, [Build with libnetlink support]) + BUILD_LIBNL=1 + AC_SUBST(BUILD_LIBNL) fi ]) -- cgit