mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-17 02:56:08 +03:00
Add license to standalone/
This commit is contained in:
parent
429ba6ac41
commit
bc5930086d
20
configure.ac
20
configure.ac
@ -162,6 +162,23 @@ if test "$build_apache2_module" -eq 1; then
|
|||||||
TOPLEVEL_SUBDIRS="$TOPLEVEL_SUBDIRS apache2"
|
TOPLEVEL_SUBDIRS="$TOPLEVEL_SUBDIRS apache2"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
AC_ARG_ENABLE(standalone-module,
|
||||||
|
AS_HELP_STRING([--disable-standalone-module],
|
||||||
|
[Disable building standalone module.]),
|
||||||
|
[
|
||||||
|
if test "$enableval" != "no"; then
|
||||||
|
build_standalone_module=1
|
||||||
|
else
|
||||||
|
build_standalone_module=0
|
||||||
|
fi
|
||||||
|
],
|
||||||
|
[
|
||||||
|
build_standalone_module=1
|
||||||
|
])
|
||||||
|
AM_CONDITIONAL([BUILD_STANDALONE_MODULE], [test "$build_standalone_module" -eq 1])
|
||||||
|
if test "$build_standalone_module" -eq 1; then
|
||||||
|
TOPLEVEL_SUBDIRS="$TOPLEVEL_SUBDIRS standalone"
|
||||||
|
fi
|
||||||
|
|
||||||
# Extensions
|
# Extensions
|
||||||
AC_ARG_ENABLE(extentions,
|
AC_ARG_ENABLE(extentions,
|
||||||
@ -662,6 +679,9 @@ fi
|
|||||||
if test "$build_apache2_module" -ne 0; then
|
if test "$build_apache2_module" -ne 0; then
|
||||||
AC_CONFIG_FILES([apache2/Makefile])
|
AC_CONFIG_FILES([apache2/Makefile])
|
||||||
fi
|
fi
|
||||||
|
if test "$build_standalone_module" -ne 0; then
|
||||||
|
AC_CONFIG_FILES([standalone/Makefile])
|
||||||
|
fi
|
||||||
if test "$build_extentions" -ne 0; then
|
if test "$build_extentions" -ne 0; then
|
||||||
AC_CONFIG_FILES([ext/Makefile])
|
AC_CONFIG_FILES([ext/Makefile])
|
||||||
fi
|
fi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user