From: Simon Ruderich Date: Mon, 10 Jun 2013 14:22:09 +0000 (+0200) Subject: configure.ac: Minor style fix. X-Git-Tag: 0.1~80 X-Git-Url: https://ruderich.org/simon/gitweb/?p=coloredstderr%2Fcoloredstderr.git;a=commitdiff_plain;h=d4f585e07894e949c3479b0ab679003064a28689 configure.ac: Minor style fix. --- diff --git a/configure.ac b/configure.ac index f4154bd..cb3af17 100644 --- a/configure.ac +++ b/configure.ac @@ -61,12 +61,12 @@ AC_SEARCH_LIBS([dlsym], [dl], [], [AC_MSG_ERROR([dlsym() is required])]) AC_ARG_ENABLE([warnings], [AS_HELP_STRING([--enable-warnings],[enable warning output])], [if test "x$enableval" = xyes; then - AC_DEFINE([WARNING], 1, [Define to enable warning output.]) + AC_DEFINE([WARNING], 1, [Define to 1 enable warning output.]) fi]) AC_ARG_ENABLE([debug], [AS_HELP_STRING([--enable-debug],[enable debug output])], [if test "x$enableval" = xyes; then - AC_DEFINE([DEBUG], 1, [Define to enable debug output.]) + AC_DEFINE([DEBUG], 1, [Define to 1 enable debug output.]) dnl DEBUG implies WARNING AC_DEFINE([WARNING], 1) fi])