mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-14 05:45:59 +03:00
Fixed corrupted character
This commit is contained in:
parent
38d4b5c898
commit
556835c6fe
12
configure.ac
12
configure.ac
@ -304,20 +304,24 @@ if test "$build_docs" -eq 1; then
|
||||
AC_CONFIG_FILES([doc/Makefile])
|
||||
fi
|
||||
|
||||
|
||||
# Add assert() usage
|
||||
|
||||
AC_ARG_ENABLE(assertions,
|
||||
AS_HELP_STRING([--enable-assertions],
|
||||
[Turn on assertions checks (undefine NDEBUG)]),
|
||||
[
|
||||
if test "${enableval}" = "yes"; then
|
||||
assertions=-UNDEBUG
|
||||
assertions='-UNDEBUG'
|
||||
MODSEC_EXTRA_CFLAGS="$MODSEC_EXTRA_CFLAGS $assertions"
|
||||
else
|
||||
assertions=-DNDEBUG
|
||||
assertions='-DNDEBUG'
|
||||
fi
|
||||
],
|
||||
[
|
||||
assertions=-DNDEBUG
|
||||
assertions='-DNDEBUG'
|
||||
])
|
||||
|
||||
# Add PCRE Studying
|
||||
|
||||
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)
|
||||
fi
|
||||
])
|
||||
ÿ |