mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-14 13:56:01 +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])
|
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
|
||||||
])
|
])
|
||||||
ÿ |