From: Wouter Wijngaards Date: Fri, 1 Jul 2011 08:58:34 +0000 (+0000) Subject: - fix that --enable-static-exe does not complain about it unknown. X-Git-Tag: release-1.4.12rc1^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=60e8c2204013a9987cface6899464fbed22045fd;p=thirdparty%2Funbound.git - fix that --enable-static-exe does not complain about it unknown. git-svn-id: file:///svn/unbound/trunk@2458 be551aaa-1e26-0410-a405-d3ace91eadb9 --- diff --git a/configure b/configure index 8e3242a26..ccf9d1152 100755 --- a/configure +++ b/configure @@ -757,7 +757,7 @@ enable_sha2 enable_gost with_libevent with_libexpat -enable_staticexe +enable_static_exe enable_lock_checks enable_alloc_checks enable_alloc_lite @@ -15924,9 +15924,9 @@ done # set static linking if requested staticexe="" -# Check whether --enable-staticexe was given. -if test "${enable_staticexe+set}" = set; then : - enableval=$enable_staticexe; +# Check whether --enable-static-exe was given. +if test "${enable_static_exe+set}" = set; then : + enableval=$enable_static_exe; fi if test x_$enable_static_exe = x_yes; then diff --git a/configure.ac b/configure.ac index 016b7112b..38a4acb25 100644 --- a/configure.ac +++ b/configure.ac @@ -585,7 +585,7 @@ AC_CHECK_HEADERS([expat.h],,, [AC_INCLUDES_DEFAULT]) # set static linking if requested AC_SUBST(staticexe) staticexe="" -AC_ARG_ENABLE(staticexe, AC_HELP_STRING([--enable-static-exe], +AC_ARG_ENABLE(static-exe, AC_HELP_STRING([--enable-static-exe], [ enable to compile executables statically against event, ldns libs, for debug purposes ]), , ) if test x_$enable_static_exe = x_yes; then diff --git a/doc/Changelog b/doc/Changelog index d572ef325..27e083834 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,5 +1,6 @@ 1 July 2011: Wouter - version number in example config file. + - fix that --enable-static-exe does not complain about it unknown. 30 June 2011: Wouter - tag relase 1.4.11, trunk is 1.4.12 development.