diff options
-rw-r--r-- | configure.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.in b/configure.in index 5f4c7df..3465861 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,7 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT(brctl/brctl.c) -AC_CONFIG_HEADER(libbridge/config.h) -AM_INIT_AUTOMAKE(bridge-utils,1.0.6) +AC_INIT(bridge-utils, 1.1) +AM_INIT_AUTOMAKE +AC_CONFIG_HEADERS(libbridge/config.h) AC_ARG_WITH( linux-headers, [ --with-linux-headers Location of the linux headers to use], KERNEL_HEADERS=$withval, KERNEL_HEADERS="/usr/src/linux/include") @@ -27,7 +27,7 @@ AC_CHECK_FUNCS(if_nametoindex if_indextoname) dnl Check for libsysfs AC_CHECK_HEADER(sysfs/libsysfs.h, - [AC_CHECK_LIB(sysfs, sysfs_open_directory, + [AC_CHECK_LIB(sysfs, sysfs_open_directory_list, [AC_DEFINE(HAVE_LIBSYSFS) LIBS="$LIBS -lsysfs"], [AC_MSG_WARN([Missing sysfs library!])])], |