diff options
author | Thomas Graf <tgr@lsx.localdomain> | 2008-04-29 21:02:42 (GMT) |
---|---|---|
committer | Thomas Graf <tgr@lsx.localdomain> | 2008-04-29 21:02:42 (GMT) |
commit | 1240cd6635dfc14d4337d844796ed913f2cd44e4 (patch) | |
tree | b06d1f174fa07537b15b265bf81afffba534b6f9 | |
parent | 5ab64d5173acee3b28d993321372211605fdbf4c (diff) | |
download | libnl-1240cd6635dfc14d4337d844796ed913f2cd44e4.zip libnl-1240cd6635dfc14d4337d844796ed913f2cd44e4.tar.gz libnl-1240cd6635dfc14d4337d844796ed913f2cd44e4.tar.bz2 |
Move to version 1.2 and remove some dead code in configure.in
-rw-r--r-- | configure.in | 44 |
1 files changed, 1 insertions, 43 deletions
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 <tgraf@suug.ch> # -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)" |