mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-09-27 10:18:49 +03:00
Eliminate non-posix standard variables
This commit is contained in:
parent
a07ed61e74
commit
506bc97617
1
.gitignore
vendored
1
.gitignore
vendored
@ -32,6 +32,7 @@ src/location.hh
|
|||||||
src/position.hh
|
src/position.hh
|
||||||
src/stack.hh
|
src/stack.hh
|
||||||
src/stamp-h1
|
src/stamp-h1
|
||||||
|
src/headers.mk
|
||||||
/test/rules_optimization
|
/test/rules_optimization
|
||||||
/test/regression_tests
|
/test/regression_tests
|
||||||
/test/unit_tests
|
/test/unit_tests
|
||||||
|
22
build.sh
22
build.sh
@ -2,6 +2,28 @@
|
|||||||
|
|
||||||
rm -rf autom4te.cache
|
rm -rf autom4te.cache
|
||||||
rm -f aclocal.m4
|
rm -f aclocal.m4
|
||||||
|
|
||||||
|
cd src
|
||||||
|
rm -f haders.mk
|
||||||
|
echo "noinst_HEADERS = \\" > headers.mk
|
||||||
|
ls -1 \
|
||||||
|
actions/*.h \
|
||||||
|
actions/ctl/*.h \
|
||||||
|
actions/data/*.h \
|
||||||
|
actions/disruptive/*.h \
|
||||||
|
actions/transformations/*.h \
|
||||||
|
debug_log/*.h \
|
||||||
|
audit_log/writer/*.h \
|
||||||
|
collection/backend/*.h \
|
||||||
|
operators/*.h \
|
||||||
|
parser/*.h \
|
||||||
|
request_body_processor/*.h \
|
||||||
|
utils/*.h \
|
||||||
|
variables/*.h \
|
||||||
|
engine/*.h \
|
||||||
|
*.h | tr "\012" " " >> headers.mk
|
||||||
|
cd ../
|
||||||
|
|
||||||
case `uname` in Darwin*) glibtoolize --force --copy ;;
|
case `uname` in Darwin*) glibtoolize --force --copy ;;
|
||||||
*) libtoolize --force --copy ;; esac
|
*) libtoolize --force --copy ;; esac
|
||||||
autoreconf --install
|
autoreconf --install
|
||||||
|
@ -66,24 +66,7 @@ libmodsecurity_includesub_collection_HEADERS = \
|
|||||||
libmodsecurity_includesub_actions_HEADERS = \
|
libmodsecurity_includesub_actions_HEADERS = \
|
||||||
../headers/modsecurity/actions/action.h
|
../headers/modsecurity/actions/action.h
|
||||||
|
|
||||||
|
include headers.mk
|
||||||
noinst_HEADERS = \
|
|
||||||
$(wildcard actions/*.h) \
|
|
||||||
$(wildcard actions/ctl/*.h) \
|
|
||||||
$(wildcard actions/data/*.h) \
|
|
||||||
$(wildcard actions/disruptive/*.h) \
|
|
||||||
$(wildcard actions/transformations/*.h) \
|
|
||||||
$(wildcard debug_log/*.h) \
|
|
||||||
$(wildcard audit_log/writer/*.h) \
|
|
||||||
$(wildcard collection/backend/*.h) \
|
|
||||||
$(wildcard operators/*.h) \
|
|
||||||
$(wildcard parser/*.h) \
|
|
||||||
$(wildcard request_body_processor/*.h) \
|
|
||||||
$(wildcard utils/*.h) \
|
|
||||||
$(wildcard variables/*.h) \
|
|
||||||
$(wildcard engine/*.h) \
|
|
||||||
$(wildcard *.h)
|
|
||||||
|
|
||||||
|
|
||||||
ENGINES = \
|
ENGINES = \
|
||||||
engine/lua.cc
|
engine/lua.cc
|
||||||
|
Loading…
x
Reference in New Issue
Block a user