]> git.ipfire.org Git - thirdparty/libnl.git/commitdiff
Move to version 1.2 and remove some dead code in configure.in
authorThomas Graf <tgr@lsx.localdomain>
Tue, 29 Apr 2008 21:02:42 +0000 (23:02 +0200)
committerThomas Graf <tgr@lsx.localdomain>
Tue, 29 Apr 2008 21:02:42 +0000 (23:02 +0200)
configure.in

index f99292e7da7143d9d7c66ff4cc79ab0381679903..45981c1c51e5e56b2af472f8f4e0d113ad259cce 100644 (file)
@@ -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)"