diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2011-01-17 09:12:45 -0500 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2011-01-17 14:50:23 -0500 |
commit | 5352c9b3609bca63814f9f6f03dbbbadf6c6333a (patch) | |
tree | b066ac5fbd429af1966451bb6e9ec077bca63fc5 /src/conf_macros.m4 | |
parent | 50b2904bc09dee04fbc5b13246a33f5d3b257d2e (diff) | |
download | sssd-5352c9b3609bca63814f9f6f03dbbbadf6c6333a.tar.gz sssd-5352c9b3609bca63814f9f6f03dbbbadf6c6333a.tar.xz sssd-5352c9b3609bca63814f9f6f03dbbbadf6c6333a.zip |
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
Diffstat (limited to 'src/conf_macros.m4')
-rw-r--r-- | src/conf_macros.m4 | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/conf_macros.m4 b/src/conf_macros.m4 index 5898bc7f1..d759c48e9 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 ]) |