summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPete Batard <pbatard@gmail.com>2010-03-06 00:39:09 +0000
committerPete Batard <pbatard@gmail.com>2010-03-06 00:39:09 +0000
commitbb6dcbdf19d8bdeb5595704b53f4d687768da3a7 (patch)
treec230b82e64d6781d348ff09d26758956d8019b8a
parent858b13ab77b65c8bce26c8fb4804767507b394fa (diff)
downloadlibusb-r198.tar.gz
removed unneeded versioning/options from autotool scriptsr198
-rwxr-xr-xautogen.sh3
-rw-r--r--configure.ac8
2 files changed, 1 insertions, 10 deletions
diff --git a/autogen.sh b/autogen.sh
index d5c6a19..d8b2838 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -8,5 +8,4 @@ aclocal || exit 1
autoheader || exit 1
autoconf || exit 1
automake -a -c || exit 1
-./configure --enable-maintainer-mode --enable-debug-log \
- --enable-examples-build $*
+./configure --enable-debug-log --enable-examples-build $*
diff --git a/configure.ac b/configure.ac
index ac08e0b..a0abae3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -66,14 +66,6 @@ AM_CONDITIONAL([OS_DARWIN], [test "x$backend" == "xdarwin"])
AM_CONDITIONAL([OS_WINDOWS], [test "x$backend" == "xwindows"])
AM_CONDITIONAL([POSIX_THREADS], [test "x$threads" == "xposix"])
-# Library versioning
-lt_major="0"
-lt_revision="0"
-lt_age="0"
-AC_SUBST(lt_major)
-AC_SUBST(lt_revision)
-AC_SUBST(lt_age)
-
# timerfd
AC_CHECK_HEADER([sys/timerfd.h], [timerfd_h=1], [timerfd_h=0])
AC_ARG_ENABLE([timerfd],