Fixed corrupted character

This commit is contained in:
Marc Stern 2024-04-12 18:04:16 +02:00
parent 38d4b5c898
commit 556835c6fe

View File

@ -304,20 +304,24 @@ if test "$build_docs" -eq 1; then
AC_CONFIG_FILES([doc/Makefile]) AC_CONFIG_FILES([doc/Makefile])
fi fi
# Add assert() usage
AC_ARG_ENABLE(assertions, AC_ARG_ENABLE(assertions,
AS_HELP_STRING([--enable-assertions], AS_HELP_STRING([--enable-assertions],
[Turn on assertions checks (undefine NDEBUG)]), [Turn on assertions checks (undefine NDEBUG)]),
[ [
if test "${enableval}" = "yes"; then if test "${enableval}" = "yes"; then
assertions=-UNDEBUG assertions='-UNDEBUG'
MODSEC_EXTRA_CFLAGS="$MODSEC_EXTRA_CFLAGS $assertions" MODSEC_EXTRA_CFLAGS="$MODSEC_EXTRA_CFLAGS $assertions"
else else
assertions=-DNDEBUG assertions='-DNDEBUG'
fi fi
], ],
[ [
assertions=-DNDEBUG assertions='-DNDEBUG'
]) ])
# Add PCRE Studying # Add PCRE Studying
AC_ARG_ENABLE(pcre-study, AC_ARG_ENABLE(pcre-study,
@ -774,7 +778,7 @@ VERSION_OK
AC_MSG_NOTICE(apache is too old, mmn must be at least $HTTPD_WANTED_MMN) AC_MSG_NOTICE(apache is too old, mmn must be at least $HTTPD_WANTED_MMN)
fi fi
]) ])
ÿfi fi
APXS_INCLUDEDIR="`$APXS -q INCLUDEDIR`" APXS_INCLUDEDIR="`$APXS -q INCLUDEDIR`"
if test "$verbose_output" -eq 1; then AC_MSG_NOTICE(apxs INCLUDEDIR: $APXS_INCLUDEDIR); fi if test "$verbose_output" -eq 1; then AC_MSG_NOTICE(apxs INCLUDEDIR: $APXS_INCLUDEDIR); fi
# Make sure the include dir is used # Make sure the include dir is used