From: Thomas Graf Date: Tue, 29 Apr 2008 21:02:42 +0000 (+0200) Subject: Move to version 1.2 and remove some dead code in configure.in X-Git-Tag: libnl2_0~124 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1240cd6635dfc14d4337d844796ed913f2cd44e4;p=thirdparty%2Flibnl.git Move to version 1.2 and remove some dead code in configure.in --- diff --git a/configure.in b/configure.in index f99292e..45981c1 100644 --- a/configure.in +++ b/configure.in @@ -9,7 +9,7 @@ # Copyright (c) 2003-2008 Thomas Graf # -AC_INIT(libnl, 1.1, tgraf@suug.ch) +AC_INIT(libnl, 1.2, tgraf@suug.ch) AC_CONFIG_HEADER(lib/defs.h) save_CFLAGS="${CFLAGS}" @@ -22,58 +22,16 @@ AC_PROG_INSTALL AC_C_CONST AC_C_INLINE -##################################################################### -## -## libm check -## -##################################################################### -M="No " AC_CHECK_LIB(m, pow, [ LIBM="-lm" - M="Yes" ],[ echo echo "*** Error: libm required ***" echo - exit ]) -##################################################################### -## -## verbose error strings -## -##################################################################### -AC_ARG_ENABLE(verbose-errors, -[ --enable-verbose-errors enable verbose errors (debugging)],[ - if test x$enableval = xyes; then - AC_DEFINE_UNQUOTED(VERBOSE_ERRORS,"1",[verbose errors]) - fi -]) - -##################################################################### -## -## compile decisions -## -##################################################################### -COMPILE_LIBNL="Yes " LIBNL_LIB="$LIBM" - AC_SUBST(LIBNL_LIB) AC_OUTPUT([Makefile.opts libnl-1.pc doc/Doxyfile]) - -##################################################################### -## -## status report -## -##################################################################### -echo " ----------------------------------------------------------------------- -SUMMARY: - -Included in Compilation: - libnl: $COMPILE_LIBNL $LIBNL_LIB - -Dependencies: - libm $M (required)"