aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorshemminger <shemminger>2006-01-31 19:46:44 +0000
committershemminger <shemminger>2006-01-31 19:46:44 +0000
commit241b93ef8fb6761ed89871fc3d51531fba6c4845 (patch)
tree8ebafbf27966bb49489807248b06a6cbe833ab70
parent1a3515681b242f0d91c8853fffd10e46b19355f0 (diff)
downloadandroid_external_brctl-241b93ef8fb6761ed89871fc3d51531fba6c4845.tar.gz
android_external_brctl-241b93ef8fb6761ed89871fc3d51531fba6c4845.tar.bz2
android_external_brctl-241b93ef8fb6761ed89871fc3d51531fba6c4845.zip
Update for v1.1
-rw-r--r--configure.in8
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!])])],