author | Michael Krelin <hacker@klever.net> | 2009-04-05 13:52:57 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2009-04-05 13:52:57 (UTC) |
commit | 5b0b3555099d53bfed7b6174db4db1b35034aee9 (patch) (side-by-side diff) | |
tree | 8aa20877368092665f0c028e4a1b0a6133479585 /configure.ac | |
parent | 870b9eb4279337ce3d1415c62082247fb977ce4c (diff) | |
download | iii-5b0b3555099d53bfed7b6174db4db1b35034aee9.zip iii-5b0b3555099d53bfed7b6174db4db1b35034aee9.tar.gz iii-5b0b3555099d53bfed7b6174db4db1b35034aee9.tar.bz2 |
fixed typo
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index c3bb8ab..2e66fc4 100644 --- a/configure.ac +++ b/configure.ac @@ -31,41 +31,41 @@ AC_CHECK_HEADERS([autosprintf.h],[ AC_CHECK_LIB([asprintf],[main],,[notfound=true]) ],[notfound=true]) $notfound && AC_MSG_ERROR([no autosprintf, part of gettext, found]) AC_LANG_POP([C++]) nitpick=false AC_ARG_ENABLE([nitpicking], AC_HELP_STRING([--enable-nitpicking],[make compiler somewhat overly fastidious about the code it deals with]), [ test "$enableval" = "no" || nitpick=true ] ) if $nitpick ; then CPP_NITPICK="-pedantic -Wall -Wextra -Wundef -Wshadow \ -Wunsafe-loop-optimizations -Wconversion -Wmissing-format-attribute \ -Wredundant-decls -ansi -Wlogical-op -Wmissing-noreturn" C_NITPICK="$CPP_NITPICK" CXX_NITPICK="$C_NITPICK" CPPFLAGS="$CPPFLAGS $CPP_NITPICK" CFLAGS="$CFLAGS $C_NITPICK" CXXFLAGS="$CXXFLAGS $CXX_NITPICK" fi ndebug=true AC_ARG_ENABLE([debug], - AC_HELP_STRING([--enable-debug],[enable debugginc code]), + AC_HELP_STRING([--enable-debug],[enable debugging code]), [ test "$enableval" = "no" || ndebug=false ] ) if $ndebug ; then CPPFLAGS_DEBUG="-DNDEBUG" else CPPFLAGS_DEBUG="-DDEBUG" fi AC_SUBST([CPPFLAGS_DEBUG]) AC_CONFIG_FILES([ Makefile src/Makefile doc/Makefile doc/iiid.8 ]) AC_OUTPUT |