LoginSignup
0
0

More than 1 year has passed since last update.

EC2にNginx mod_securityをインストール

Last updated at Posted at 2022-02-19

はじめに

EC2のAmazon LinuxにNginxのModsecurityをインストールしたときのメモ

必要パッケージをインストール

$sudo yum install bison build-essential ca-certificates curl dh-autoreconf doxygen flex gawk git iputils-ping libcurl4-gnutls-dev libexpat1-dev libgeoip-dev liblmdb-dev libpcre3-dev libpcre++-dev libssl-dev libtool libxml2 libxml2-dev libyajl-dev locales lua5.3-dev pkg-config wget zlib1g-dev zlibc

SSDEPをインストール

$cd
$pwd
/home/ec2-user
$ls
$mkdir download
$cd download
$git clone https://github.com/ssdeep-project/ssdeep
$cd ssdeep
$./bootstrap
$./configure
$sudo yum groupinstall "Development Tools"
$sudo yum install kernel-devel kernel-headers
$make
$make clean
$./configure
$make
$make install
$pwd
/home/ec2-user/download/ssdeep
$ls
aclocal.m4      config.guess   config.sub    cycles.o  edit_dist.c   engine.o      find-file-size.c  fuzzy.o      libfuzzy.la  main.h       match.cpp  normal.sh  ssdeep.h             TODO
AUTHORS         config.h       configure     depcomp   edit_dist.h   filedata.cpp  find-file-size.o  helpers.cpp  libtool      main.o       match.h    README     stamp-h1             ui.cpp
autom4te.cache  config.h.in    configure.ac  dig.cpp   edit_dist.lo  filedata.h    fuzzy.c           helpers.o    ltmain.sh    Makefile     match.o    sample.c   sum_table.h          ui.o
bootstrap       config.log     COPYING       dig.o     edit_dist.o   filedata.o    fuzzy.h           INSTALL      m4           Makefile.am  missing    ssdeep     tchar-local.h        win.sh
ChangeLog       config.status  cycles.cpp    Doxyfile  engine.cpp    FILEFORMAT    fuzzy.lo          install-sh   main.cpp     Makefile.in  NEWS       ssdeep.1   test-against-old.sh  world.sh

ModSecurityをダウンロード

$cd ..
$pwd
/home/ec2-user/download
$ls
ssdeep
$git clone https://github.com/SpiderLabs/ModSecurity
Cloning into 'ModSecurity'...
remote: Enumerating objects: 38206, done.
remote: Counting objects: 100% (164/164), done.
remote: Compressing objects: 100% (124/124), done.
remote: Total 38206 (delta 74), reused 82 (delta 36), pack-reused 38042
Receiving objects: 100% (38206/38206), 72.64 MiB | 22.94 MiB/s, done.
Resolving deltas: 100% (29205/29205), done.
$pwd;ls
/home/ec2-user/download
ModSecurity  ssdeep
$cd ModSecurity/
$pwd
/home/ec2-user/download/ModSecurity
$ls
AUTHORS  bindings  build  build.sh  CHANGES  configure.ac  doc  examples  headers  LICENSE  Makefile.am  modsecurity.conf-recommended  modsecurity.pc.in  others  README.md  src  test  tools  unicode.mapping
$git checkout -b v3/master origin/v3/master
fatal: A branch named 'v3/master' already exists.
$git submodule init
Submodule 'bindings/python' (https://github.com/SpiderLabs/ModSecurity-Python-bindings.git) registered for path 'bindings/python'
Submodule 'others/libinjection' (https://github.com/libinjection/libinjection.git) registered for path 'others/libinjection'
Submodule 'test/test-cases/secrules-language-tests' (https://github.com/SpiderLabs/secrules-language-tests) registered for path 'test/test-cases/secrules-language-tests'
$git submodule update
Cloning into '/home/ec2-user/download/ModSecurity/bindings/python'...
Cloning into '/home/ec2-user/download/ModSecurity/others/libinjection'...
Cloning into '/home/ec2-user/download/ModSecurity/test/test-cases/secrules-language-tests'...
Submodule path 'bindings/python': checked out 'bc625d5bb0bac6a64bcce8dc9902208612399348'
Submodule path 'others/libinjection': checked out 'bfba51f5af8f1f6cf5d6c4bf862f1e2474e018e3'
Submodule path 'test/test-cases/secrules-language-tests': checked out 'a3d4405e5a2c90488c387e589c5534974575e35b'

ModSecurity をコンパイルしてインストール

$sh build.sh
$./configure | grep error
configure: error: pcre library is required
$./configure | grep not
configure: YAJL library was not found
configure: GeoIP library was not found
configure: MaxMind library was not found
configure: LMDB library was not found
configure: error: pcre library is required
configure: LUA library was not found
configure: *** curl library not found.
configure: *** libxml2 library not found.
configure: *** pcre library not found.
$sudo yum install pcre-devel
Loaded plugins: extras_suggestions, langpacks, priorities, update-motd
amzn2-core                                                                                                                                                                                                            | 3.7 kB  00:00:00
Resolving Dependencies
--> Running transaction check
---> Package pcre-devel.x86_64 0:8.32-17.amzn2.0.2 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

=============================================================================================================================================================================================================================================
 Package                                                 Arch                                                Version                                                           Repository                                               Size
=============================================================================================================================================================================================================================================
Installing:
 pcre-devel                                              x86_64                                              8.32-17.amzn2.0.2                                                 amzn2-core                                              480 k

Transaction Summary
=============================================================================================================================================================================================================================================
Install  1 Package

Total download size: 480 k
Installed size: 1.4 M
Is this ok [y/d/N]: y
Downloading packages:
pcre-devel-8.32-17.amzn2.0.2.x86_64.rpm                                                                                                                                                                               | 480 kB  00:00:00
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  Installing : pcre-devel-8.32-17.amzn2.0.2.x86_64                                                                                                                                                                                       1/1
  Verifying  : pcre-devel-8.32-17.amzn2.0.2.x86_64                                                                                                                                                                                       1/1

Installed:
  pcre-devel.x86_64 0:8.32-17.amzn2.0.2

Complete!
$./configure
checking for a BSD-compatible install... /bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking for g++... g++
checking whether the C++ compiler works... yes
checking for C++ compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking for style of include used by make... GNU
checking dependency style of g++... gcc3
checking for gcc... gcc
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking dependency style of gcc... gcc3
checking for ar... ar
checking the archiver (ar) interface... ar
checking whether make sets $(MAKE)... (cached) yes
checking for pkg-config... /bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
configure: Nothing about YAJL was informed during the configure phase. Trying to detect it on the platform...
configure: YAJL library was not found
configure: Nothing about GeoIP was informed during the configure phase. Trying to detect it on the platform...
configure: GeoIP library was not found
configure: Nothing about MaxMind was informed during the configure phase. Trying to detect it on the platform...
configure: MaxMind library was not found
configure: Nothing about LMDB was informed during the configure phase. Trying to detect it on the platform...
*** LOOKING AT PATH:  /usr/lib
*** LOOKING AT PATH:  /usr/local/lib
*** LOOKING AT PATH:  /usr/local/liblmdb
*** LOOKING AT PATH:  /usr/local/lmdb
*** LOOKING AT PATH:  /usr/local
*** LOOKING AT PATH:  /opt/liblmdb
*** LOOKING AT PATH:  /opt/lmdb
*** LOOKING AT PATH:  /opt
*** LOOKING AT PATH:  /usr
*** LOOKING AT PATH:  /usr/lib64
*** LOOKING AT PATH:  /opt/local
configure: LMDB library was not found
*** LOOKING AT PATH:  /usr/lib
*** LOOKING AT PATH:  /usr/local/lib
configure: SSDEEP library found at: /usr/local/lib//libfuzzy.so
*** LOOKING AT PATH:  /usr/local/fuzzy
configure: SSDEEP library found at: /usr/local/lib//libfuzzy.so
*** LOOKING AT PATH:  /usr/local/libfuzzy
configure: SSDEEP library found at: /usr/local/lib//libfuzzy.so
*** LOOKING AT PATH:  /usr/local
configure: SSDEEP library found at: /usr/local/lib//libfuzzy.so
configure: SSDEEP headers found at: /usr/local/include
configure: using SSDEEP v
*** LOOKING AT PATH:  /usr/lib
*** LOOKING AT PATH:  /usr/local/lib
*** LOOKING AT PATH:  /usr/local/lib64
*** LOOKING AT PATH:  /usr/local/lua
*** LOOKING AT PATH:  /usr/local/liblua
*** LOOKING AT PATH:  /usr/local
*** LOOKING AT PATH:  /opt
*** LOOKING AT PATH:  /usr
*** LOOKING AT PATH:  /usr/lib64
configure: LUA library found at: /usr/lib64//liblua-5.1.so
*** LOOKING AT PATH:  /opt/local
configure: LUA library found at: /usr/lib64//liblua-5.1.so
*** LOOKING AT PATH:  /usr/lib/lua5.3/liblua
configure: LUA library found at: /usr/lib64//liblua-5.1.so
*** LOOKING AT PATH:  /usr/lib/lua5.2/liblua
configure: LUA library found at: /usr/lib64//liblua-5.1.so
configure: LUA library was not found
checking for libcurl config script... no
configure: *** curl library not found.
checking for libxml2 config script... no
configure: *** libxml2 library not found.
checking for libpcre config script... /usr/bin/pcre-config
configure: pcre VERSION: 8.32
configure: pcre LDADD: -lpcre
configure: pcre PCRE_LD_PATH: /-lpcre
checking for PCRE JIT... yes
configure: using pcre v8.32
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking string usability... no
checking string presence... no
checking for string... no
checking iostream usability... no
checking iostream presence... no
checking for iostream... no
checking sys/utsname.h usability... yes
checking sys/utsname.h presence... yes
checking for sys/utsname.h... yes
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for fgrep... /bin/grep -F
checking for ld used by gcc... /bin/ld
checking if the linker (/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /bin/nm -B
checking the name lister (/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for mt... no
checking if : is a manifest tool... no
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... no
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for shl_load... no
checking for shl_load in -ldld... no
checking for dlopen... no
checking for dlopen in -ldl... yes
checking whether a program can dlopen itself... yes
checking whether a statically linked program can dlopen itself... yes
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking how to run the C++ preprocessor... g++ -E
checking for ld used by g++... /bin/ld -m elf_x86_64
checking if the linker (/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the g++ linker (/bin/ld -m elf_x86_64) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... yes
checking if g++ static flag -static works... no
checking if g++ supports -c -o file.o... yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
Checking platform... Identified as Linux
checking for doxygen... /bin/doxygen
checking for perl... /bin/perl
checking for valgrind... no
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating modsecurity.pc
config.status: creating Makefile
config.status: creating doc/Makefile
config.status: creating src/Makefile
config.status: creating others/Makefile
config.status: creating tools/Makefile
config.status: creating tools/rules-check/Makefile
config.status: creating examples/Makefile
config.status: creating examples/simple_example_using_c/Makefile
config.status: creating examples/multiprocess_c/Makefile
config.status: creating examples/reading_logs_with_offset/Makefile
config.status: creating examples/reading_logs_via_rule_message/Makefile
config.status: creating examples/using_bodies_in_chunks/Makefile
config.status: creating src/config.h
config.status: executing depfiles commands
config.status: executing libtool commands


ModSecurity - v3.0.6-26-g6bd1c776 for Linux

 Mandatory dependencies
   + libInjection                                  ....v3.9.2-46-gbfba51f
   + SecLang tests                                 ....a3d4405

 Optional dependencies
   + GeoIP/MaxMind                                 ....not found
   + LibCURL                                       ....not found
   + YAJL                                          ....not found
   + LMDB                                          ....not found
   + LibXML2                                       ....not found
   + SSDEEP                                        ....found
      -lfuzzy -L/usr/local/lib/, -DWITH_SSDEEP -I/usr/local/include
   + LUA                                           ....not found

 Other Options
   + Test Utilities                                ....disabled
   + SecDebugLog                                   ....enabled
   + afl fuzzer                                    ....disabled
   + library examples                              ....enabled
   + Building parser                               ....disabled
   + Treating pm operations as critical section    ....disabled
$make
Making all in others
make[1]: Entering directory `/home/ec2-user/download/ModSecurity/others'
depbase=`echo libinjection/src/libinjection_html5.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../src     -g -O2 -MT libinjection/src/libinjection_html5.lo -MD -MP -MF $depbase.Tpo -c -o libinjection/src/libinjection_html5.lo libinjection/src/libinjection_html5.c &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../src -g -O2 -MT libinjection/src/libinjection_html5.lo -MD -MP -MF libinjection/src/.deps/libinjection_html5.Tpo -c libinjection/src/libinjection_html5.c  -fPIC -DPIC -o libinjection/src/.libs/libinjection_html5.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../src -g -O2 -MT libinjection/src/libinjection_html5.lo -MD -MP -MF libinjection/src/.deps/libinjection_html5.Tpo -c libinjection/src/libinjection_html5.c -o libinjection/src/libinjection_html5.o >/dev/null 2>&1
depbase=`echo libinjection/src/libinjection_sqli.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../src     -g -O2 -MT libinjection/src/libinjection_sqli.lo -MD -MP -MF $depbase.Tpo -c -o libinjection/src/libinjection_sqli.lo libinjection/src/libinjection_sqli.c &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../src -g -O2 -MT libinjection/src/libinjection_sqli.lo -MD -MP -MF libinjection/src/.deps/libinjection_sqli.Tpo -c libinjection/src/libinjection_sqli.c  -fPIC -DPIC -o libinjection/src/.libs/libinjection_sqli.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../src -g -O2 -MT libinjection/src/libinjection_sqli.lo -MD -MP -MF libinjection/src/.deps/libinjection_sqli.Tpo -c libinjection/src/libinjection_sqli.c -o libinjection/src/libinjection_sqli.o >/dev/null 2>&1
depbase=`echo libinjection/src/libinjection_xss.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../src     -g -O2 -MT libinjection/src/libinjection_xss.lo -MD -MP -MF $depbase.Tpo -c -o libinjection/src/libinjection_xss.lo libinjection/src/libinjection_xss.c &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../src -g -O2 -MT libinjection/src/libinjection_xss.lo -MD -MP -MF libinjection/src/.deps/libinjection_xss.Tpo -c libinjection/src/libinjection_xss.c  -fPIC -DPIC -o libinjection/src/.libs/libinjection_xss.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../src -g -O2 -MT libinjection/src/libinjection_xss.lo -MD -MP -MF libinjection/src/.deps/libinjection_xss.Tpo -c libinjection/src/libinjection_xss.c -o libinjection/src/libinjection_xss.o >/dev/null 2>&1
/bin/sh ../libtool  --tag=CC   --mode=link gcc  -g -O2   -o libinjection.la  libinjection/src/libinjection_html5.lo libinjection/src/libinjection_sqli.lo libinjection/src/libinjection_xss.lo
libtool: link: ar cru .libs/libinjection.a libinjection/src/.libs/libinjection_html5.o libinjection/src/.libs/libinjection_sqli.o libinjection/src/.libs/libinjection_xss.o
libtool: link: ranlib .libs/libinjection.a
libtool: link: ( cd ".libs" && rm -f "libinjection.la" && ln -s "../libinjection.la" "libinjection.la" )
/bin/sh ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../src    -D MBEDTLS_CONFIG_FILE=\"mbed-tls-config.h\" -Iothers -g -O2 -MT mbedtls/libmbedtls_la-base64.lo -MD -MP -MF mbedtls/.deps/libmbedtls_la-base64.Tpo -c -o mbedtls/libmbedtls_la-base64.lo `test -f 'mbedtls/base64.c' || echo './'`mbedtls/base64.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../src -D MBEDTLS_CONFIG_FILE=\"mbed-tls-config.h\" -Iothers -g -O2 -MT mbedtls/libmbedtls_la-base64.lo -MD -MP -MF mbedtls/.deps/libmbedtls_la-base64.Tpo -c mbedtls/base64.c  -fPIC -DPIC -o mbedtls/.libs/libmbedtls_la-base64.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../src -D MBEDTLS_CONFIG_FILE=\"mbed-tls-config.h\" -Iothers -g -O2 -MT mbedtls/libmbedtls_la-base64.lo -MD -MP -MF mbedtls/.deps/libmbedtls_la-base64.Tpo -c mbedtls/base64.c -o mbedtls/libmbedtls_la-base64.o >/dev/null 2>&1
mv -f mbedtls/.deps/libmbedtls_la-base64.Tpo mbedtls/.deps/libmbedtls_la-base64.Plo
/bin/sh ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../src    -D MBEDTLS_CONFIG_FILE=\"mbed-tls-config.h\" -Iothers -g -O2 -MT mbedtls/libmbedtls_la-md5.lo -MD -MP -MF mbedtls/.deps/libmbedtls_la-md5.Tpo -c -o mbedtls/libmbedtls_la-md5.lo `test -f 'mbedtls/md5.c' || echo './'`mbedtls/md5.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../src -D MBEDTLS_CONFIG_FILE=\"mbed-tls-config.h\" -Iothers -g -O2 -MT mbedtls/libmbedtls_la-md5.lo -MD -MP -MF mbedtls/.deps/libmbedtls_la-md5.Tpo -c mbedtls/md5.c  -fPIC -DPIC -o mbedtls/.libs/libmbedtls_la-md5.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../src -D MBEDTLS_CONFIG_FILE=\"mbed-tls-config.h\" -Iothers -g -O2 -MT mbedtls/libmbedtls_la-md5.lo -MD -MP -MF mbedtls/.deps/libmbedtls_la-md5.Tpo -c mbedtls/md5.c -o mbedtls/libmbedtls_la-md5.o >/dev/null 2>&1
mv -f mbedtls/.deps/libmbedtls_la-md5.Tpo mbedtls/.deps/libmbedtls_la-md5.Plo
/bin/sh ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../src    -D MBEDTLS_CONFIG_FILE=\"mbed-tls-config.h\" -Iothers -g -O2 -MT mbedtls/libmbedtls_la-sha1.lo -MD -MP -MF mbedtls/.deps/libmbedtls_la-sha1.Tpo -c -o mbedtls/libmbedtls_la-sha1.lo `test -f 'mbedtls/sha1.c' || echo './'`mbedtls/sha1.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../src -D MBEDTLS_CONFIG_FILE=\"mbed-tls-config.h\" -Iothers -g -O2 -MT mbedtls/libmbedtls_la-sha1.lo -MD -MP -MF mbedtls/.deps/libmbedtls_la-sha1.Tpo -c mbedtls/sha1.c  -fPIC -DPIC -o mbedtls/.libs/libmbedtls_la-sha1.o
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../src -D MBEDTLS_CONFIG_FILE=\"mbed-tls-config.h\" -Iothers -g -O2 -MT mbedtls/libmbedtls_la-sha1.lo -MD -MP -MF mbedtls/.deps/libmbedtls_la-sha1.Tpo -c mbedtls/sha1.c -o mbedtls/libmbedtls_la-sha1.o >/dev/null 2>&1
mv -f mbedtls/.deps/libmbedtls_la-sha1.Tpo mbedtls/.deps/libmbedtls_la-sha1.Plo
/bin/sh ../libtool  --tag=CC   --mode=link gcc -D MBEDTLS_CONFIG_FILE=\"mbed-tls-config.h\" -Iothers -g -O2   -o libmbedtls.la  mbedtls/libmbedtls_la-base64.lo mbedtls/libmbedtls_la-md5.lo mbedtls/libmbedtls_la-sha1.lo
libtool: link: ar cru .libs/libmbedtls.a mbedtls/.libs/libmbedtls_la-base64.o mbedtls/.libs/libmbedtls_la-md5.o mbedtls/.libs/libmbedtls_la-sha1.o
libtool: link: ranlib .libs/libmbedtls.a
libtool: link: ( cd ".libs" && rm -f "libmbedtls.la" && ln -s "../libmbedtls.la" "libmbedtls.la" )
make[1]: Leaving directory `/home/ec2-user/download/ModSecurity/others'
Making all in src
make[1]: Entering directory `/home/ec2-user/download/ModSecurity/src'
(CDPATH="${ZSH_VERSION+.}:" && cd .. && /bin/sh /home/ec2-user/download/ModSecurity/missing autoheader)
rm -f stamp-h1
touch config.h.in
cd .. && /bin/sh ./config.status src/config.h
config.status: creating src/config.h
config.status: src/config.h is unchanged
make  all-recursive
make[2]: Entering directory `/home/ec2-user/download/ModSecurity/src'
make[3]: Entering directory `/home/ec2-user/download/ModSecurity/src'
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT parser/libmodsecurity_la-seclang-parser.lo -MD -MP -MF parser/.deps/libmodsecurity_la-seclang-parser.Tpo -c -o parser/libmodsecurity_la-seclang-parser.lo `test -f 'parser/seclang-parser.cc' || echo './'`parser/seclang-parser.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT parser/libmodsecurity_la-seclang-parser.lo -MD -MP -MF parser/.deps/libmodsecurity_la-seclang-parser.Tpo -c parser/seclang-parser.cc  -fPIC -DPIC -o parser/.libs/libmodsecurity_la-seclang-parser.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT parser/libmodsecurity_la-seclang-parser.lo -MD -MP -MF parser/.deps/libmodsecurity_la-seclang-parser.Tpo -c parser/seclang-parser.cc -o parser/libmodsecurity_la-seclang-parser.o >/dev/null 2>&1
mv -f parser/.deps/libmodsecurity_la-seclang-parser.Tpo parser/.deps/libmodsecurity_la-seclang-parser.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT parser/libmodsecurity_la-seclang-scanner.lo -MD -MP -MF parser/.deps/libmodsecurity_la-seclang-scanner.Tpo -c -o parser/libmodsecurity_la-seclang-scanner.lo `test -f 'parser/seclang-scanner.cc' || echo './'`parser/seclang-scanner.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT parser/libmodsecurity_la-seclang-scanner.lo -MD -MP -MF parser/.deps/libmodsecurity_la-seclang-scanner.Tpo -c parser/seclang-scanner.cc  -fPIC -DPIC -o parser/.libs/libmodsecurity_la-seclang-scanner.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT parser/libmodsecurity_la-seclang-scanner.lo -MD -MP -MF parser/.deps/libmodsecurity_la-seclang-scanner.Tpo -c parser/seclang-scanner.cc -o parser/libmodsecurity_la-seclang-scanner.o >/dev/null 2>&1
mv -f parser/.deps/libmodsecurity_la-seclang-scanner.Tpo parser/.deps/libmodsecurity_la-seclang-scanner.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT parser/libmodsecurity_la-driver.lo -MD -MP -MF parser/.deps/libmodsecurity_la-driver.Tpo -c -o parser/libmodsecurity_la-driver.lo `test -f 'parser/driver.cc' || echo './'`parser/driver.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT parser/libmodsecurity_la-driver.lo -MD -MP -MF parser/.deps/libmodsecurity_la-driver.Tpo -c parser/driver.cc  -fPIC -DPIC -o parser/.libs/libmodsecurity_la-driver.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT parser/libmodsecurity_la-driver.lo -MD -MP -MF parser/.deps/libmodsecurity_la-driver.Tpo -c parser/driver.cc -o parser/libmodsecurity_la-driver.o >/dev/null 2>&1
mv -f parser/.deps/libmodsecurity_la-driver.Tpo parser/.deps/libmodsecurity_la-driver.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT libmodsecurity_la-transaction.lo -MD -MP -MF .deps/libmodsecurity_la-transaction.Tpo -c -o libmodsecurity_la-transaction.lo `test -f 'transaction.cc' || echo './'`transaction.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT libmodsecurity_la-transaction.lo -MD -MP -MF .deps/libmodsecurity_la-transaction.Tpo -c transaction.cc  -fPIC -DPIC -o .libs/libmodsecurity_la-transaction.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT libmodsecurity_la-transaction.lo -MD -MP -MF .deps/libmodsecurity_la-transaction.Tpo -c transaction.cc -o libmodsecurity_la-transaction.o >/dev/null 2>&1
mv -f .deps/libmodsecurity_la-transaction.Tpo .deps/libmodsecurity_la-transaction.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT libmodsecurity_la-anchored_set_variable.lo -MD -MP -MF .deps/libmodsecurity_la-anchored_set_variable.Tpo -c -o libmodsecurity_la-anchored_set_variable.lo `test -f 'anchored_set_variable.cc' || echo './'`anchored_set_variable.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT libmodsecurity_la-anchored_set_variable.lo -MD -MP -MF .deps/libmodsecurity_la-anchored_set_variable.Tpo -c anchored_set_variable.cc  -fPIC -DPIC -o .libs/libmodsecurity_la-anchored_set_variable.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT libmodsecurity_la-anchored_set_variable.lo -MD -MP -MF .deps/libmodsecurity_la-anchored_set_variable.Tpo -c anchored_set_variable.cc -o libmodsecurity_la-anchored_set_variable.o >/dev/null 2>&1
mv -f .deps/libmodsecurity_la-anchored_set_variable.Tpo .deps/libmodsecurity_la-anchored_set_variable.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT libmodsecurity_la-anchored_variable.lo -MD -MP -MF .deps/libmodsecurity_la-anchored_variable.Tpo -c -o libmodsecurity_la-anchored_variable.lo `test -f 'anchored_variable.cc' || echo './'`anchored_variable.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT libmodsecurity_la-anchored_variable.lo -MD -MP -MF .deps/libmodsecurity_la-anchored_variable.Tpo -c anchored_variable.cc  -fPIC -DPIC -o .libs/libmodsecurity_la-anchored_variable.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT libmodsecurity_la-anchored_variable.lo -MD -MP -MF .deps/libmodsecurity_la-anchored_variable.Tpo -c anchored_variable.cc -o libmodsecurity_la-anchored_variable.o >/dev/null 2>&1
mv -f .deps/libmodsecurity_la-anchored_variable.Tpo .deps/libmodsecurity_la-anchored_variable.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT audit_log/libmodsecurity_la-audit_log.lo -MD -MP -MF audit_log/.deps/libmodsecurity_la-audit_log.Tpo -c -o audit_log/libmodsecurity_la-audit_log.lo `test -f 'audit_log/audit_log.cc' || echo './'`audit_log/audit_log.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT audit_log/libmodsecurity_la-audit_log.lo -MD -MP -MF audit_log/.deps/libmodsecurity_la-audit_log.Tpo -c audit_log/audit_log.cc  -fPIC -DPIC -o audit_log/.libs/libmodsecurity_la-audit_log.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT audit_log/libmodsecurity_la-audit_log.lo -MD -MP -MF audit_log/.deps/libmodsecurity_la-audit_log.Tpo -c audit_log/audit_log.cc -o audit_log/libmodsecurity_la-audit_log.o >/dev/null 2>&1
mv -f audit_log/.deps/libmodsecurity_la-audit_log.Tpo audit_log/.deps/libmodsecurity_la-audit_log.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT audit_log/writer/libmodsecurity_la-writer.lo -MD -MP -MF audit_log/writer/.deps/libmodsecurity_la-writer.Tpo -c -o audit_log/writer/libmodsecurity_la-writer.lo `test -f 'audit_log/writer/writer.cc' || echo './'`audit_log/writer/writer.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT audit_log/writer/libmodsecurity_la-writer.lo -MD -MP -MF audit_log/writer/.deps/libmodsecurity_la-writer.Tpo -c audit_log/writer/writer.cc  -fPIC -DPIC -o audit_log/writer/.libs/libmodsecurity_la-writer.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT audit_log/writer/libmodsecurity_la-writer.lo -MD -MP -MF audit_log/writer/.deps/libmodsecurity_la-writer.Tpo -c audit_log/writer/writer.cc -o audit_log/writer/libmodsecurity_la-writer.o >/dev/null 2>&1
mv -f audit_log/writer/.deps/libmodsecurity_la-writer.Tpo audit_log/writer/.deps/libmodsecurity_la-writer.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT audit_log/writer/libmodsecurity_la-https.lo -MD -MP -MF audit_log/writer/.deps/libmodsecurity_la-https.Tpo -c -o audit_log/writer/libmodsecurity_la-https.lo `test -f 'audit_log/writer/https.cc' || echo './'`audit_log/writer/https.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT audit_log/writer/libmodsecurity_la-https.lo -MD -MP -MF audit_log/writer/.deps/libmodsecurity_la-https.Tpo -c audit_log/writer/https.cc  -fPIC -DPIC -o audit_log/writer/.libs/libmodsecurity_la-https.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT audit_log/writer/libmodsecurity_la-https.lo -MD -MP -MF audit_log/writer/.deps/libmodsecurity_la-https.Tpo -c audit_log/writer/https.cc -o audit_log/writer/libmodsecurity_la-https.o >/dev/null 2>&1
mv -f audit_log/writer/.deps/libmodsecurity_la-https.Tpo audit_log/writer/.deps/libmodsecurity_la-https.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT audit_log/writer/libmodsecurity_la-serial.lo -MD -MP -MF audit_log/writer/.deps/libmodsecurity_la-serial.Tpo -c -o audit_log/writer/libmodsecurity_la-serial.lo `test -f 'audit_log/writer/serial.cc' || echo './'`audit_log/writer/serial.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT audit_log/writer/libmodsecurity_la-serial.lo -MD -MP -MF audit_log/writer/.deps/libmodsecurity_la-serial.Tpo -c audit_log/writer/serial.cc  -fPIC -DPIC -o audit_log/writer/.libs/libmodsecurity_la-serial.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT audit_log/writer/libmodsecurity_la-serial.lo -MD -MP -MF audit_log/writer/.deps/libmodsecurity_la-serial.Tpo -c audit_log/writer/serial.cc -o audit_log/writer/libmodsecurity_la-serial.o >/dev/null 2>&1
mv -f audit_log/writer/.deps/libmodsecurity_la-serial.Tpo audit_log/writer/.deps/libmodsecurity_la-serial.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT audit_log/writer/libmodsecurity_la-parallel.lo -MD -MP -MF audit_log/writer/.deps/libmodsecurity_la-parallel.Tpo -c -o audit_log/writer/libmodsecurity_la-parallel.lo `test -f 'audit_log/writer/parallel.cc' || echo './'`audit_log/writer/parallel.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT audit_log/writer/libmodsecurity_la-parallel.lo -MD -MP -MF audit_log/writer/.deps/libmodsecurity_la-parallel.Tpo -c audit_log/writer/parallel.cc  -fPIC -DPIC -o audit_log/writer/.libs/libmodsecurity_la-parallel.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT audit_log/writer/libmodsecurity_la-parallel.lo -MD -MP -MF audit_log/writer/.deps/libmodsecurity_la-parallel.Tpo -c audit_log/writer/parallel.cc -o audit_log/writer/libmodsecurity_la-parallel.o >/dev/null 2>&1
mv -f audit_log/writer/.deps/libmodsecurity_la-parallel.Tpo audit_log/writer/.deps/libmodsecurity_la-parallel.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT libmodsecurity_la-modsecurity.lo -MD -MP -MF .deps/libmodsecurity_la-modsecurity.Tpo -c -o libmodsecurity_la-modsecurity.lo `test -f 'modsecurity.cc' || echo './'`modsecurity.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT libmodsecurity_la-modsecurity.lo -MD -MP -MF .deps/libmodsecurity_la-modsecurity.Tpo -c modsecurity.cc  -fPIC -DPIC -o .libs/libmodsecurity_la-modsecurity.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT libmodsecurity_la-modsecurity.lo -MD -MP -MF .deps/libmodsecurity_la-modsecurity.Tpo -c modsecurity.cc -o libmodsecurity_la-modsecurity.o >/dev/null 2>&1
mv -f .deps/libmodsecurity_la-modsecurity.Tpo .deps/libmodsecurity_la-modsecurity.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT libmodsecurity_la-rules_set.lo -MD -MP -MF .deps/libmodsecurity_la-rules_set.Tpo -c -o libmodsecurity_la-rules_set.lo `test -f 'rules_set.cc' || echo './'`rules_set.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT libmodsecurity_la-rules_set.lo -MD -MP -MF .deps/libmodsecurity_la-rules_set.Tpo -c rules_set.cc  -fPIC -DPIC -o .libs/libmodsecurity_la-rules_set.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT libmodsecurity_la-rules_set.lo -MD -MP -MF .deps/libmodsecurity_la-rules_set.Tpo -c rules_set.cc -o libmodsecurity_la-rules_set.o >/dev/null 2>&1
mv -f .deps/libmodsecurity_la-rules_set.Tpo .deps/libmodsecurity_la-rules_set.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT libmodsecurity_la-rules_set_phases.lo -MD -MP -MF .deps/libmodsecurity_la-rules_set_phases.Tpo -c -o libmodsecurity_la-rules_set_phases.lo `test -f 'rules_set_phases.cc' || echo './'`rules_set_phases.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT libmodsecurity_la-rules_set_phases.lo -MD -MP -MF .deps/libmodsecurity_la-rules_set_phases.Tpo -c rules_set_phases.cc  -fPIC -DPIC -o .libs/libmodsecurity_la-rules_set_phases.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT libmodsecurity_la-rules_set_phases.lo -MD -MP -MF .deps/libmodsecurity_la-rules_set_phases.Tpo -c rules_set_phases.cc -o libmodsecurity_la-rules_set_phases.o >/dev/null 2>&1
mv -f .deps/libmodsecurity_la-rules_set_phases.Tpo .deps/libmodsecurity_la-rules_set_phases.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT libmodsecurity_la-rules_set_properties.lo -MD -MP -MF .deps/libmodsecurity_la-rules_set_properties.Tpo -c -o libmodsecurity_la-rules_set_properties.lo `test -f 'rules_set_properties.cc' || echo './'`rules_set_properties.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT libmodsecurity_la-rules_set_properties.lo -MD -MP -MF .deps/libmodsecurity_la-rules_set_properties.Tpo -c rules_set_properties.cc  -fPIC -DPIC -o .libs/libmodsecurity_la-rules_set_properties.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT libmodsecurity_la-rules_set_properties.lo -MD -MP -MF .deps/libmodsecurity_la-rules_set_properties.Tpo -c rules_set_properties.cc -o libmodsecurity_la-rules_set_properties.o >/dev/null 2>&1
mv -f .deps/libmodsecurity_la-rules_set_properties.Tpo .deps/libmodsecurity_la-rules_set_properties.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT debug_log/libmodsecurity_la-debug_log.lo -MD -MP -MF debug_log/.deps/libmodsecurity_la-debug_log.Tpo -c -o debug_log/libmodsecurity_la-debug_log.lo `test -f 'debug_log/debug_log.cc' || echo './'`debug_log/debug_log.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT debug_log/libmodsecurity_la-debug_log.lo -MD -MP -MF debug_log/.deps/libmodsecurity_la-debug_log.Tpo -c debug_log/debug_log.cc  -fPIC -DPIC -o debug_log/.libs/libmodsecurity_la-debug_log.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT debug_log/libmodsecurity_la-debug_log.lo -MD -MP -MF debug_log/.deps/libmodsecurity_la-debug_log.Tpo -c debug_log/debug_log.cc -o debug_log/libmodsecurity_la-debug_log.o >/dev/null 2>&1
mv -f debug_log/.deps/libmodsecurity_la-debug_log.Tpo debug_log/.deps/libmodsecurity_la-debug_log.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT debug_log/libmodsecurity_la-debug_log_writer.lo -MD -MP -MF debug_log/.deps/libmodsecurity_la-debug_log_writer.Tpo -c -o debug_log/libmodsecurity_la-debug_log_writer.lo `test -f 'debug_log/debug_log_writer.cc' || echo './'`debug_log/debug_log_writer.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT debug_log/libmodsecurity_la-debug_log_writer.lo -MD -MP -MF debug_log/.deps/libmodsecurity_la-debug_log_writer.Tpo -c debug_log/debug_log_writer.cc  -fPIC -DPIC -o debug_log/.libs/libmodsecurity_la-debug_log_writer.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT debug_log/libmodsecurity_la-debug_log_writer.lo -MD -MP -MF debug_log/.deps/libmodsecurity_la-debug_log_writer.Tpo -c debug_log/debug_log_writer.cc -o debug_log/libmodsecurity_la-debug_log_writer.o >/dev/null 2>&1
mv -f debug_log/.deps/libmodsecurity_la-debug_log_writer.Tpo debug_log/.deps/libmodsecurity_la-debug_log_writer.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT libmodsecurity_la-run_time_string.lo -MD -MP -MF .deps/libmodsecurity_la-run_time_string.Tpo -c -o libmodsecurity_la-run_time_string.lo `test -f 'run_time_string.cc' || echo './'`run_time_string.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT libmodsecurity_la-run_time_string.lo -MD -MP -MF .deps/libmodsecurity_la-run_time_string.Tpo -c run_time_string.cc  -fPIC -DPIC -o .libs/libmodsecurity_la-run_time_string.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT libmodsecurity_la-run_time_string.lo -MD -MP -MF .deps/libmodsecurity_la-run_time_string.Tpo -c run_time_string.cc -o libmodsecurity_la-run_time_string.o >/dev/null 2>&1
mv -f .deps/libmodsecurity_la-run_time_string.Tpo .deps/libmodsecurity_la-run_time_string.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT libmodsecurity_la-rule.lo -MD -MP -MF .deps/libmodsecurity_la-rule.Tpo -c -o libmodsecurity_la-rule.lo `test -f 'rule.cc' || echo './'`rule.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT libmodsecurity_la-rule.lo -MD -MP -MF .deps/libmodsecurity_la-rule.Tpo -c rule.cc  -fPIC -DPIC -o .libs/libmodsecurity_la-rule.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT libmodsecurity_la-rule.lo -MD -MP -MF .deps/libmodsecurity_la-rule.Tpo -c rule.cc -o libmodsecurity_la-rule.o >/dev/null 2>&1
mv -f .deps/libmodsecurity_la-rule.Tpo .deps/libmodsecurity_la-rule.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT libmodsecurity_la-rule_unconditional.lo -MD -MP -MF .deps/libmodsecurity_la-rule_unconditional.Tpo -c -o libmodsecurity_la-rule_unconditional.lo `test -f 'rule_unconditional.cc' || echo './'`rule_unconditional.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT libmodsecurity_la-rule_unconditional.lo -MD -MP -MF .deps/libmodsecurity_la-rule_unconditional.Tpo -c rule_unconditional.cc  -fPIC -DPIC -o .libs/libmodsecurity_la-rule_unconditional.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT libmodsecurity_la-rule_unconditional.lo -MD -MP -MF .deps/libmodsecurity_la-rule_unconditional.Tpo -c rule_unconditional.cc -o libmodsecurity_la-rule_unconditional.o >/dev/null 2>&1
mv -f .deps/libmodsecurity_la-rule_unconditional.Tpo .deps/libmodsecurity_la-rule_unconditional.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT libmodsecurity_la-rule_with_actions.lo -MD -MP -MF .deps/libmodsecurity_la-rule_with_actions.Tpo -c -o libmodsecurity_la-rule_with_actions.lo `test -f 'rule_with_actions.cc' || echo './'`rule_with_actions.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT libmodsecurity_la-rule_with_actions.lo -MD -MP -MF .deps/libmodsecurity_la-rule_with_actions.Tpo -c rule_with_actions.cc  -fPIC -DPIC -o .libs/libmodsecurity_la-rule_with_actions.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT libmodsecurity_la-rule_with_actions.lo -MD -MP -MF .deps/libmodsecurity_la-rule_with_actions.Tpo -c rule_with_actions.cc -o libmodsecurity_la-rule_with_actions.o >/dev/null 2>&1
mv -f .deps/libmodsecurity_la-rule_with_actions.Tpo .deps/libmodsecurity_la-rule_with_actions.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT libmodsecurity_la-rule_with_operator.lo -MD -MP -MF .deps/libmodsecurity_la-rule_with_operator.Tpo -c -o libmodsecurity_la-rule_with_operator.lo `test -f 'rule_with_operator.cc' || echo './'`rule_with_operator.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT libmodsecurity_la-rule_with_operator.lo -MD -MP -MF .deps/libmodsecurity_la-rule_with_operator.Tpo -c rule_with_operator.cc  -fPIC -DPIC -o .libs/libmodsecurity_la-rule_with_operator.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT libmodsecurity_la-rule_with_operator.lo -MD -MP -MF .deps/libmodsecurity_la-rule_with_operator.Tpo -c rule_with_operator.cc -o libmodsecurity_la-rule_with_operator.o >/dev/null 2>&1
mv -f .deps/libmodsecurity_la-rule_with_operator.Tpo .deps/libmodsecurity_la-rule_with_operator.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT libmodsecurity_la-rule_message.lo -MD -MP -MF .deps/libmodsecurity_la-rule_message.Tpo -c -o libmodsecurity_la-rule_message.lo `test -f 'rule_message.cc' || echo './'`rule_message.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT libmodsecurity_la-rule_message.lo -MD -MP -MF .deps/libmodsecurity_la-rule_message.Tpo -c rule_message.cc  -fPIC -DPIC -o .libs/libmodsecurity_la-rule_message.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT libmodsecurity_la-rule_message.lo -MD -MP -MF .deps/libmodsecurity_la-rule_message.Tpo -c rule_message.cc -o libmodsecurity_la-rule_message.o >/dev/null 2>&1
mv -f .deps/libmodsecurity_la-rule_message.Tpo .deps/libmodsecurity_la-rule_message.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT libmodsecurity_la-rule_script.lo -MD -MP -MF .deps/libmodsecurity_la-rule_script.Tpo -c -o libmodsecurity_la-rule_script.lo `test -f 'rule_script.cc' || echo './'`rule_script.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT libmodsecurity_la-rule_script.lo -MD -MP -MF .deps/libmodsecurity_la-rule_script.Tpo -c rule_script.cc  -fPIC -DPIC -o .libs/libmodsecurity_la-rule_script.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT libmodsecurity_la-rule_script.lo -MD -MP -MF .deps/libmodsecurity_la-rule_script.Tpo -c rule_script.cc -o libmodsecurity_la-rule_script.o >/dev/null 2>&1
mv -f .deps/libmodsecurity_la-rule_script.Tpo .deps/libmodsecurity_la-rule_script.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT libmodsecurity_la-unique_id.lo -MD -MP -MF .deps/libmodsecurity_la-unique_id.Tpo -c -o libmodsecurity_la-unique_id.lo `test -f 'unique_id.cc' || echo './'`unique_id.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT libmodsecurity_la-unique_id.lo -MD -MP -MF .deps/libmodsecurity_la-unique_id.Tpo -c unique_id.cc  -fPIC -DPIC -o .libs/libmodsecurity_la-unique_id.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT libmodsecurity_la-unique_id.lo -MD -MP -MF .deps/libmodsecurity_la-unique_id.Tpo -c unique_id.cc -o libmodsecurity_la-unique_id.o >/dev/null 2>&1
mv -f .deps/libmodsecurity_la-unique_id.Tpo .deps/libmodsecurity_la-unique_id.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT libmodsecurity_la-rules_exceptions.lo -MD -MP -MF .deps/libmodsecurity_la-rules_exceptions.Tpo -c -o libmodsecurity_la-rules_exceptions.lo `test -f 'rules_exceptions.cc' || echo './'`rules_exceptions.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT libmodsecurity_la-rules_exceptions.lo -MD -MP -MF .deps/libmodsecurity_la-rules_exceptions.Tpo -c rules_exceptions.cc  -fPIC -DPIC -o .libs/libmodsecurity_la-rules_exceptions.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT libmodsecurity_la-rules_exceptions.lo -MD -MP -MF .deps/libmodsecurity_la-rules_exceptions.Tpo -c rules_exceptions.cc -o libmodsecurity_la-rules_exceptions.o >/dev/null 2>&1
mv -f .deps/libmodsecurity_la-rules_exceptions.Tpo .deps/libmodsecurity_la-rules_exceptions.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT request_body_processor/libmodsecurity_la-multipart.lo -MD -MP -MF request_body_processor/.deps/libmodsecurity_la-multipart.Tpo -c -o request_body_processor/libmodsecurity_la-multipart.lo `test -f 'request_body_processor/multipart.cc' || echo './'`request_body_processor/multipart.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT request_body_processor/libmodsecurity_la-multipart.lo -MD -MP -MF request_body_processor/.deps/libmodsecurity_la-multipart.Tpo -c request_body_processor/multipart.cc  -fPIC -DPIC -o request_body_processor/.libs/libmodsecurity_la-multipart.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT request_body_processor/libmodsecurity_la-multipart.lo -MD -MP -MF request_body_processor/.deps/libmodsecurity_la-multipart.Tpo -c request_body_processor/multipart.cc -o request_body_processor/libmodsecurity_la-multipart.o >/dev/null 2>&1
mv -f request_body_processor/.deps/libmodsecurity_la-multipart.Tpo request_body_processor/.deps/libmodsecurity_la-multipart.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT request_body_processor/libmodsecurity_la-xml.lo -MD -MP -MF request_body_processor/.deps/libmodsecurity_la-xml.Tpo -c -o request_body_processor/libmodsecurity_la-xml.lo `test -f 'request_body_processor/xml.cc' || echo './'`request_body_processor/xml.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT request_body_processor/libmodsecurity_la-xml.lo -MD -MP -MF request_body_processor/.deps/libmodsecurity_la-xml.Tpo -c request_body_processor/xml.cc  -fPIC -DPIC -o request_body_processor/.libs/libmodsecurity_la-xml.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT request_body_processor/libmodsecurity_la-xml.lo -MD -MP -MF request_body_processor/.deps/libmodsecurity_la-xml.Tpo -c request_body_processor/xml.cc -o request_body_processor/libmodsecurity_la-xml.o >/dev/null 2>&1
mv -f request_body_processor/.deps/libmodsecurity_la-xml.Tpo request_body_processor/.deps/libmodsecurity_la-xml.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT request_body_processor/libmodsecurity_la-json.lo -MD -MP -MF request_body_processor/.deps/libmodsecurity_la-json.Tpo -c -o request_body_processor/libmodsecurity_la-json.lo `test -f 'request_body_processor/json.cc' || echo './'`request_body_processor/json.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT request_body_processor/libmodsecurity_la-json.lo -MD -MP -MF request_body_processor/.deps/libmodsecurity_la-json.Tpo -c request_body_processor/json.cc  -fPIC -DPIC -o request_body_processor/.libs/libmodsecurity_la-json.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT request_body_processor/libmodsecurity_la-json.lo -MD -MP -MF request_body_processor/.deps/libmodsecurity_la-json.Tpo -c request_body_processor/json.cc -o request_body_processor/libmodsecurity_la-json.o >/dev/null 2>&1
mv -f request_body_processor/.deps/libmodsecurity_la-json.Tpo request_body_processor/.deps/libmodsecurity_la-json.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/libmodsecurity_la-accuracy.lo -MD -MP -MF actions/.deps/libmodsecurity_la-accuracy.Tpo -c -o actions/libmodsecurity_la-accuracy.lo `test -f 'actions/accuracy.cc' || echo './'`actions/accuracy.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-accuracy.lo -MD -MP -MF actions/.deps/libmodsecurity_la-accuracy.Tpo -c actions/accuracy.cc  -fPIC -DPIC -o actions/.libs/libmodsecurity_la-accuracy.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-accuracy.lo -MD -MP -MF actions/.deps/libmodsecurity_la-accuracy.Tpo -c actions/accuracy.cc -o actions/libmodsecurity_la-accuracy.o >/dev/null 2>&1
mv -f actions/.deps/libmodsecurity_la-accuracy.Tpo actions/.deps/libmodsecurity_la-accuracy.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/libmodsecurity_la-action.lo -MD -MP -MF actions/.deps/libmodsecurity_la-action.Tpo -c -o actions/libmodsecurity_la-action.lo `test -f 'actions/action.cc' || echo './'`actions/action.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-action.lo -MD -MP -MF actions/.deps/libmodsecurity_la-action.Tpo -c actions/action.cc  -fPIC -DPIC -o actions/.libs/libmodsecurity_la-action.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-action.lo -MD -MP -MF actions/.deps/libmodsecurity_la-action.Tpo -c actions/action.cc -o actions/libmodsecurity_la-action.o >/dev/null 2>&1
mv -f actions/.deps/libmodsecurity_la-action.Tpo actions/.deps/libmodsecurity_la-action.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/libmodsecurity_la-audit_log.lo -MD -MP -MF actions/.deps/libmodsecurity_la-audit_log.Tpo -c -o actions/libmodsecurity_la-audit_log.lo `test -f 'actions/audit_log.cc' || echo './'`actions/audit_log.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-audit_log.lo -MD -MP -MF actions/.deps/libmodsecurity_la-audit_log.Tpo -c actions/audit_log.cc  -fPIC -DPIC -o actions/.libs/libmodsecurity_la-audit_log.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-audit_log.lo -MD -MP -MF actions/.deps/libmodsecurity_la-audit_log.Tpo -c actions/audit_log.cc -o actions/libmodsecurity_la-audit_log.o >/dev/null 2>&1
mv -f actions/.deps/libmodsecurity_la-audit_log.Tpo actions/.deps/libmodsecurity_la-audit_log.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/libmodsecurity_la-block.lo -MD -MP -MF actions/.deps/libmodsecurity_la-block.Tpo -c -o actions/libmodsecurity_la-block.lo `test -f 'actions/block.cc' || echo './'`actions/block.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-block.lo -MD -MP -MF actions/.deps/libmodsecurity_la-block.Tpo -c actions/block.cc  -fPIC -DPIC -o actions/.libs/libmodsecurity_la-block.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-block.lo -MD -MP -MF actions/.deps/libmodsecurity_la-block.Tpo -c actions/block.cc -o actions/libmodsecurity_la-block.o >/dev/null 2>&1
mv -f actions/.deps/libmodsecurity_la-block.Tpo actions/.deps/libmodsecurity_la-block.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/libmodsecurity_la-capture.lo -MD -MP -MF actions/.deps/libmodsecurity_la-capture.Tpo -c -o actions/libmodsecurity_la-capture.lo `test -f 'actions/capture.cc' || echo './'`actions/capture.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-capture.lo -MD -MP -MF actions/.deps/libmodsecurity_la-capture.Tpo -c actions/capture.cc  -fPIC -DPIC -o actions/.libs/libmodsecurity_la-capture.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-capture.lo -MD -MP -MF actions/.deps/libmodsecurity_la-capture.Tpo -c actions/capture.cc -o actions/libmodsecurity_la-capture.o >/dev/null 2>&1
mv -f actions/.deps/libmodsecurity_la-capture.Tpo actions/.deps/libmodsecurity_la-capture.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/libmodsecurity_la-chain.lo -MD -MP -MF actions/.deps/libmodsecurity_la-chain.Tpo -c -o actions/libmodsecurity_la-chain.lo `test -f 'actions/chain.cc' || echo './'`actions/chain.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-chain.lo -MD -MP -MF actions/.deps/libmodsecurity_la-chain.Tpo -c actions/chain.cc  -fPIC -DPIC -o actions/.libs/libmodsecurity_la-chain.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-chain.lo -MD -MP -MF actions/.deps/libmodsecurity_la-chain.Tpo -c actions/chain.cc -o actions/libmodsecurity_la-chain.o >/dev/null 2>&1
mv -f actions/.deps/libmodsecurity_la-chain.Tpo actions/.deps/libmodsecurity_la-chain.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/ctl/libmodsecurity_la-audit_log_parts.lo -MD -MP -MF actions/ctl/.deps/libmodsecurity_la-audit_log_parts.Tpo -c -o actions/ctl/libmodsecurity_la-audit_log_parts.lo `test -f 'actions/ctl/audit_log_parts.cc' || echo './'`actions/ctl/audit_log_parts.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/ctl/libmodsecurity_la-audit_log_parts.lo -MD -MP -MF actions/ctl/.deps/libmodsecurity_la-audit_log_parts.Tpo -c actions/ctl/audit_log_parts.cc  -fPIC -DPIC -o actions/ctl/.libs/libmodsecurity_la-audit_log_parts.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/ctl/libmodsecurity_la-audit_log_parts.lo -MD -MP -MF actions/ctl/.deps/libmodsecurity_la-audit_log_parts.Tpo -c actions/ctl/audit_log_parts.cc -o actions/ctl/libmodsecurity_la-audit_log_parts.o >/dev/null 2>&1
mv -f actions/ctl/.deps/libmodsecurity_la-audit_log_parts.Tpo actions/ctl/.deps/libmodsecurity_la-audit_log_parts.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/ctl/libmodsecurity_la-audit_engine.lo -MD -MP -MF actions/ctl/.deps/libmodsecurity_la-audit_engine.Tpo -c -o actions/ctl/libmodsecurity_la-audit_engine.lo `test -f 'actions/ctl/audit_engine.cc' || echo './'`actions/ctl/audit_engine.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/ctl/libmodsecurity_la-audit_engine.lo -MD -MP -MF actions/ctl/.deps/libmodsecurity_la-audit_engine.Tpo -c actions/ctl/audit_engine.cc  -fPIC -DPIC -o actions/ctl/.libs/libmodsecurity_la-audit_engine.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/ctl/libmodsecurity_la-audit_engine.lo -MD -MP -MF actions/ctl/.deps/libmodsecurity_la-audit_engine.Tpo -c actions/ctl/audit_engine.cc -o actions/ctl/libmodsecurity_la-audit_engine.o >/dev/null 2>&1
mv -f actions/ctl/.deps/libmodsecurity_la-audit_engine.Tpo actions/ctl/.deps/libmodsecurity_la-audit_engine.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/ctl/libmodsecurity_la-rule_engine.lo -MD -MP -MF actions/ctl/.deps/libmodsecurity_la-rule_engine.Tpo -c -o actions/ctl/libmodsecurity_la-rule_engine.lo `test -f 'actions/ctl/rule_engine.cc' || echo './'`actions/ctl/rule_engine.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/ctl/libmodsecurity_la-rule_engine.lo -MD -MP -MF actions/ctl/.deps/libmodsecurity_la-rule_engine.Tpo -c actions/ctl/rule_engine.cc  -fPIC -DPIC -o actions/ctl/.libs/libmodsecurity_la-rule_engine.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/ctl/libmodsecurity_la-rule_engine.lo -MD -MP -MF actions/ctl/.deps/libmodsecurity_la-rule_engine.Tpo -c actions/ctl/rule_engine.cc -o actions/ctl/libmodsecurity_la-rule_engine.o >/dev/null 2>&1
mv -f actions/ctl/.deps/libmodsecurity_la-rule_engine.Tpo actions/ctl/.deps/libmodsecurity_la-rule_engine.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/ctl/libmodsecurity_la-request_body_processor_json.lo -MD -MP -MF actions/ctl/.deps/libmodsecurity_la-request_body_processor_json.Tpo -c -o actions/ctl/libmodsecurity_la-request_body_processor_json.lo `test -f 'actions/ctl/request_body_processor_json.cc' || echo './'`actions/ctl/request_body_processor_json.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/ctl/libmodsecurity_la-request_body_processor_json.lo -MD -MP -MF actions/ctl/.deps/libmodsecurity_la-request_body_processor_json.Tpo -c actions/ctl/request_body_processor_json.cc  -fPIC -DPIC -o actions/ctl/.libs/libmodsecurity_la-request_body_processor_json.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/ctl/libmodsecurity_la-request_body_processor_json.lo -MD -MP -MF actions/ctl/.deps/libmodsecurity_la-request_body_processor_json.Tpo -c actions/ctl/request_body_processor_json.cc -o actions/ctl/libmodsecurity_la-request_body_processor_json.o >/dev/null 2>&1
mv -f actions/ctl/.deps/libmodsecurity_la-request_body_processor_json.Tpo actions/ctl/.deps/libmodsecurity_la-request_body_processor_json.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/ctl/libmodsecurity_la-request_body_processor_xml.lo -MD -MP -MF actions/ctl/.deps/libmodsecurity_la-request_body_processor_xml.Tpo -c -o actions/ctl/libmodsecurity_la-request_body_processor_xml.lo `test -f 'actions/ctl/request_body_processor_xml.cc' || echo './'`actions/ctl/request_body_processor_xml.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/ctl/libmodsecurity_la-request_body_processor_xml.lo -MD -MP -MF actions/ctl/.deps/libmodsecurity_la-request_body_processor_xml.Tpo -c actions/ctl/request_body_processor_xml.cc  -fPIC -DPIC -o actions/ctl/.libs/libmodsecurity_la-request_body_processor_xml.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/ctl/libmodsecurity_la-request_body_processor_xml.lo -MD -MP -MF actions/ctl/.deps/libmodsecurity_la-request_body_processor_xml.Tpo -c actions/ctl/request_body_processor_xml.cc -o actions/ctl/libmodsecurity_la-request_body_processor_xml.o >/dev/null 2>&1
mv -f actions/ctl/.deps/libmodsecurity_la-request_body_processor_xml.Tpo actions/ctl/.deps/libmodsecurity_la-request_body_processor_xml.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/ctl/libmodsecurity_la-request_body_processor_urlencoded.lo -MD -MP -MF actions/ctl/.deps/libmodsecurity_la-request_body_processor_urlencoded.Tpo -c -o actions/ctl/libmodsecurity_la-request_body_processor_urlencoded.lo `test -f 'actions/ctl/request_body_processor_urlencoded.cc' || echo './'`actions/ctl/request_body_processor_urlencoded.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/ctl/libmodsecurity_la-request_body_processor_urlencoded.lo -MD -MP -MF actions/ctl/.deps/libmodsecurity_la-request_body_processor_urlencoded.Tpo -c actions/ctl/request_body_processor_urlencoded.cc  -fPIC -DPIC -o actions/ctl/.libs/libmodsecurity_la-request_body_processor_urlencoded.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/ctl/libmodsecurity_la-request_body_processor_urlencoded.lo -MD -MP -MF actions/ctl/.deps/libmodsecurity_la-request_body_processor_urlencoded.Tpo -c actions/ctl/request_body_processor_urlencoded.cc -o actions/ctl/libmodsecurity_la-request_body_processor_urlencoded.o >/dev/null 2>&1
mv -f actions/ctl/.deps/libmodsecurity_la-request_body_processor_urlencoded.Tpo actions/ctl/.deps/libmodsecurity_la-request_body_processor_urlencoded.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/ctl/libmodsecurity_la-rule_remove_target_by_tag.lo -MD -MP -MF actions/ctl/.deps/libmodsecurity_la-rule_remove_target_by_tag.Tpo -c -o actions/ctl/libmodsecurity_la-rule_remove_target_by_tag.lo `test -f 'actions/ctl/rule_remove_target_by_tag.cc' || echo './'`actions/ctl/rule_remove_target_by_tag.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/ctl/libmodsecurity_la-rule_remove_target_by_tag.lo -MD -MP -MF actions/ctl/.deps/libmodsecurity_la-rule_remove_target_by_tag.Tpo -c actions/ctl/rule_remove_target_by_tag.cc  -fPIC -DPIC -o actions/ctl/.libs/libmodsecurity_la-rule_remove_target_by_tag.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/ctl/libmodsecurity_la-rule_remove_target_by_tag.lo -MD -MP -MF actions/ctl/.deps/libmodsecurity_la-rule_remove_target_by_tag.Tpo -c actions/ctl/rule_remove_target_by_tag.cc -o actions/ctl/libmodsecurity_la-rule_remove_target_by_tag.o >/dev/null 2>&1
mv -f actions/ctl/.deps/libmodsecurity_la-rule_remove_target_by_tag.Tpo actions/ctl/.deps/libmodsecurity_la-rule_remove_target_by_tag.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/ctl/libmodsecurity_la-rule_remove_target_by_id.lo -MD -MP -MF actions/ctl/.deps/libmodsecurity_la-rule_remove_target_by_id.Tpo -c -o actions/ctl/libmodsecurity_la-rule_remove_target_by_id.lo `test -f 'actions/ctl/rule_remove_target_by_id.cc' || echo './'`actions/ctl/rule_remove_target_by_id.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/ctl/libmodsecurity_la-rule_remove_target_by_id.lo -MD -MP -MF actions/ctl/.deps/libmodsecurity_la-rule_remove_target_by_id.Tpo -c actions/ctl/rule_remove_target_by_id.cc  -fPIC -DPIC -o actions/ctl/.libs/libmodsecurity_la-rule_remove_target_by_id.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/ctl/libmodsecurity_la-rule_remove_target_by_id.lo -MD -MP -MF actions/ctl/.deps/libmodsecurity_la-rule_remove_target_by_id.Tpo -c actions/ctl/rule_remove_target_by_id.cc -o actions/ctl/libmodsecurity_la-rule_remove_target_by_id.o >/dev/null 2>&1
mv -f actions/ctl/.deps/libmodsecurity_la-rule_remove_target_by_id.Tpo actions/ctl/.deps/libmodsecurity_la-rule_remove_target_by_id.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/ctl/libmodsecurity_la-rule_remove_by_id.lo -MD -MP -MF actions/ctl/.deps/libmodsecurity_la-rule_remove_by_id.Tpo -c -o actions/ctl/libmodsecurity_la-rule_remove_by_id.lo `test -f 'actions/ctl/rule_remove_by_id.cc' || echo './'`actions/ctl/rule_remove_by_id.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/ctl/libmodsecurity_la-rule_remove_by_id.lo -MD -MP -MF actions/ctl/.deps/libmodsecurity_la-rule_remove_by_id.Tpo -c actions/ctl/rule_remove_by_id.cc  -fPIC -DPIC -o actions/ctl/.libs/libmodsecurity_la-rule_remove_by_id.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/ctl/libmodsecurity_la-rule_remove_by_id.lo -MD -MP -MF actions/ctl/.deps/libmodsecurity_la-rule_remove_by_id.Tpo -c actions/ctl/rule_remove_by_id.cc -o actions/ctl/libmodsecurity_la-rule_remove_by_id.o >/dev/null 2>&1
mv -f actions/ctl/.deps/libmodsecurity_la-rule_remove_by_id.Tpo actions/ctl/.deps/libmodsecurity_la-rule_remove_by_id.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/ctl/libmodsecurity_la-rule_remove_by_tag.lo -MD -MP -MF actions/ctl/.deps/libmodsecurity_la-rule_remove_by_tag.Tpo -c -o actions/ctl/libmodsecurity_la-rule_remove_by_tag.lo `test -f 'actions/ctl/rule_remove_by_tag.cc' || echo './'`actions/ctl/rule_remove_by_tag.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/ctl/libmodsecurity_la-rule_remove_by_tag.lo -MD -MP -MF actions/ctl/.deps/libmodsecurity_la-rule_remove_by_tag.Tpo -c actions/ctl/rule_remove_by_tag.cc  -fPIC -DPIC -o actions/ctl/.libs/libmodsecurity_la-rule_remove_by_tag.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/ctl/libmodsecurity_la-rule_remove_by_tag.lo -MD -MP -MF actions/ctl/.deps/libmodsecurity_la-rule_remove_by_tag.Tpo -c actions/ctl/rule_remove_by_tag.cc -o actions/ctl/libmodsecurity_la-rule_remove_by_tag.o >/dev/null 2>&1
mv -f actions/ctl/.deps/libmodsecurity_la-rule_remove_by_tag.Tpo actions/ctl/.deps/libmodsecurity_la-rule_remove_by_tag.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/ctl/libmodsecurity_la-request_body_access.lo -MD -MP -MF actions/ctl/.deps/libmodsecurity_la-request_body_access.Tpo -c -o actions/ctl/libmodsecurity_la-request_body_access.lo `test -f 'actions/ctl/request_body_access.cc' || echo './'`actions/ctl/request_body_access.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/ctl/libmodsecurity_la-request_body_access.lo -MD -MP -MF actions/ctl/.deps/libmodsecurity_la-request_body_access.Tpo -c actions/ctl/request_body_access.cc  -fPIC -DPIC -o actions/ctl/.libs/libmodsecurity_la-request_body_access.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/ctl/libmodsecurity_la-request_body_access.lo -MD -MP -MF actions/ctl/.deps/libmodsecurity_la-request_body_access.Tpo -c actions/ctl/request_body_access.cc -o actions/ctl/libmodsecurity_la-request_body_access.o >/dev/null 2>&1
mv -f actions/ctl/.deps/libmodsecurity_la-request_body_access.Tpo actions/ctl/.deps/libmodsecurity_la-request_body_access.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/disruptive/libmodsecurity_la-allow.lo -MD -MP -MF actions/disruptive/.deps/libmodsecurity_la-allow.Tpo -c -o actions/disruptive/libmodsecurity_la-allow.lo `test -f 'actions/disruptive/allow.cc' || echo './'`actions/disruptive/allow.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/disruptive/libmodsecurity_la-allow.lo -MD -MP -MF actions/disruptive/.deps/libmodsecurity_la-allow.Tpo -c actions/disruptive/allow.cc  -fPIC -DPIC -o actions/disruptive/.libs/libmodsecurity_la-allow.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/disruptive/libmodsecurity_la-allow.lo -MD -MP -MF actions/disruptive/.deps/libmodsecurity_la-allow.Tpo -c actions/disruptive/allow.cc -o actions/disruptive/libmodsecurity_la-allow.o >/dev/null 2>&1
mv -f actions/disruptive/.deps/libmodsecurity_la-allow.Tpo actions/disruptive/.deps/libmodsecurity_la-allow.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/disruptive/libmodsecurity_la-deny.lo -MD -MP -MF actions/disruptive/.deps/libmodsecurity_la-deny.Tpo -c -o actions/disruptive/libmodsecurity_la-deny.lo `test -f 'actions/disruptive/deny.cc' || echo './'`actions/disruptive/deny.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/disruptive/libmodsecurity_la-deny.lo -MD -MP -MF actions/disruptive/.deps/libmodsecurity_la-deny.Tpo -c actions/disruptive/deny.cc  -fPIC -DPIC -o actions/disruptive/.libs/libmodsecurity_la-deny.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/disruptive/libmodsecurity_la-deny.lo -MD -MP -MF actions/disruptive/.deps/libmodsecurity_la-deny.Tpo -c actions/disruptive/deny.cc -o actions/disruptive/libmodsecurity_la-deny.o >/dev/null 2>&1
mv -f actions/disruptive/.deps/libmodsecurity_la-deny.Tpo actions/disruptive/.deps/libmodsecurity_la-deny.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/disruptive/libmodsecurity_la-drop.lo -MD -MP -MF actions/disruptive/.deps/libmodsecurity_la-drop.Tpo -c -o actions/disruptive/libmodsecurity_la-drop.lo `test -f 'actions/disruptive/drop.cc' || echo './'`actions/disruptive/drop.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/disruptive/libmodsecurity_la-drop.lo -MD -MP -MF actions/disruptive/.deps/libmodsecurity_la-drop.Tpo -c actions/disruptive/drop.cc  -fPIC -DPIC -o actions/disruptive/.libs/libmodsecurity_la-drop.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/disruptive/libmodsecurity_la-drop.lo -MD -MP -MF actions/disruptive/.deps/libmodsecurity_la-drop.Tpo -c actions/disruptive/drop.cc -o actions/disruptive/libmodsecurity_la-drop.o >/dev/null 2>&1
mv -f actions/disruptive/.deps/libmodsecurity_la-drop.Tpo actions/disruptive/.deps/libmodsecurity_la-drop.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/disruptive/libmodsecurity_la-redirect.lo -MD -MP -MF actions/disruptive/.deps/libmodsecurity_la-redirect.Tpo -c -o actions/disruptive/libmodsecurity_la-redirect.lo `test -f 'actions/disruptive/redirect.cc' || echo './'`actions/disruptive/redirect.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/disruptive/libmodsecurity_la-redirect.lo -MD -MP -MF actions/disruptive/.deps/libmodsecurity_la-redirect.Tpo -c actions/disruptive/redirect.cc  -fPIC -DPIC -o actions/disruptive/.libs/libmodsecurity_la-redirect.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/disruptive/libmodsecurity_la-redirect.lo -MD -MP -MF actions/disruptive/.deps/libmodsecurity_la-redirect.Tpo -c actions/disruptive/redirect.cc -o actions/disruptive/libmodsecurity_la-redirect.o >/dev/null 2>&1
mv -f actions/disruptive/.deps/libmodsecurity_la-redirect.Tpo actions/disruptive/.deps/libmodsecurity_la-redirect.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/disruptive/libmodsecurity_la-pass.lo -MD -MP -MF actions/disruptive/.deps/libmodsecurity_la-pass.Tpo -c -o actions/disruptive/libmodsecurity_la-pass.lo `test -f 'actions/disruptive/pass.cc' || echo './'`actions/disruptive/pass.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/disruptive/libmodsecurity_la-pass.lo -MD -MP -MF actions/disruptive/.deps/libmodsecurity_la-pass.Tpo -c actions/disruptive/pass.cc  -fPIC -DPIC -o actions/disruptive/.libs/libmodsecurity_la-pass.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/disruptive/libmodsecurity_la-pass.lo -MD -MP -MF actions/disruptive/.deps/libmodsecurity_la-pass.Tpo -c actions/disruptive/pass.cc -o actions/disruptive/libmodsecurity_la-pass.o >/dev/null 2>&1
mv -f actions/disruptive/.deps/libmodsecurity_la-pass.Tpo actions/disruptive/.deps/libmodsecurity_la-pass.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/libmodsecurity_la-exec.lo -MD -MP -MF actions/.deps/libmodsecurity_la-exec.Tpo -c -o actions/libmodsecurity_la-exec.lo `test -f 'actions/exec.cc' || echo './'`actions/exec.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-exec.lo -MD -MP -MF actions/.deps/libmodsecurity_la-exec.Tpo -c actions/exec.cc  -fPIC -DPIC -o actions/.libs/libmodsecurity_la-exec.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-exec.lo -MD -MP -MF actions/.deps/libmodsecurity_la-exec.Tpo -c actions/exec.cc -o actions/libmodsecurity_la-exec.o >/dev/null 2>&1
mv -f actions/.deps/libmodsecurity_la-exec.Tpo actions/.deps/libmodsecurity_la-exec.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/libmodsecurity_la-init_col.lo -MD -MP -MF actions/.deps/libmodsecurity_la-init_col.Tpo -c -o actions/libmodsecurity_la-init_col.lo `test -f 'actions/init_col.cc' || echo './'`actions/init_col.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-init_col.lo -MD -MP -MF actions/.deps/libmodsecurity_la-init_col.Tpo -c actions/init_col.cc  -fPIC -DPIC -o actions/.libs/libmodsecurity_la-init_col.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-init_col.lo -MD -MP -MF actions/.deps/libmodsecurity_la-init_col.Tpo -c actions/init_col.cc -o actions/libmodsecurity_la-init_col.o >/dev/null 2>&1
mv -f actions/.deps/libmodsecurity_la-init_col.Tpo actions/.deps/libmodsecurity_la-init_col.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/libmodsecurity_la-log.lo -MD -MP -MF actions/.deps/libmodsecurity_la-log.Tpo -c -o actions/libmodsecurity_la-log.lo `test -f 'actions/log.cc' || echo './'`actions/log.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-log.lo -MD -MP -MF actions/.deps/libmodsecurity_la-log.Tpo -c actions/log.cc  -fPIC -DPIC -o actions/.libs/libmodsecurity_la-log.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-log.lo -MD -MP -MF actions/.deps/libmodsecurity_la-log.Tpo -c actions/log.cc -o actions/libmodsecurity_la-log.o >/dev/null 2>&1
mv -f actions/.deps/libmodsecurity_la-log.Tpo actions/.deps/libmodsecurity_la-log.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/libmodsecurity_la-log_data.lo -MD -MP -MF actions/.deps/libmodsecurity_la-log_data.Tpo -c -o actions/libmodsecurity_la-log_data.lo `test -f 'actions/log_data.cc' || echo './'`actions/log_data.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-log_data.lo -MD -MP -MF actions/.deps/libmodsecurity_la-log_data.Tpo -c actions/log_data.cc  -fPIC -DPIC -o actions/.libs/libmodsecurity_la-log_data.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-log_data.lo -MD -MP -MF actions/.deps/libmodsecurity_la-log_data.Tpo -c actions/log_data.cc -o actions/libmodsecurity_la-log_data.o >/dev/null 2>&1
mv -f actions/.deps/libmodsecurity_la-log_data.Tpo actions/.deps/libmodsecurity_la-log_data.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/libmodsecurity_la-maturity.lo -MD -MP -MF actions/.deps/libmodsecurity_la-maturity.Tpo -c -o actions/libmodsecurity_la-maturity.lo `test -f 'actions/maturity.cc' || echo './'`actions/maturity.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-maturity.lo -MD -MP -MF actions/.deps/libmodsecurity_la-maturity.Tpo -c actions/maturity.cc  -fPIC -DPIC -o actions/.libs/libmodsecurity_la-maturity.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-maturity.lo -MD -MP -MF actions/.deps/libmodsecurity_la-maturity.Tpo -c actions/maturity.cc -o actions/libmodsecurity_la-maturity.o >/dev/null 2>&1
mv -f actions/.deps/libmodsecurity_la-maturity.Tpo actions/.deps/libmodsecurity_la-maturity.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/libmodsecurity_la-msg.lo -MD -MP -MF actions/.deps/libmodsecurity_la-msg.Tpo -c -o actions/libmodsecurity_la-msg.lo `test -f 'actions/msg.cc' || echo './'`actions/msg.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-msg.lo -MD -MP -MF actions/.deps/libmodsecurity_la-msg.Tpo -c actions/msg.cc  -fPIC -DPIC -o actions/.libs/libmodsecurity_la-msg.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-msg.lo -MD -MP -MF actions/.deps/libmodsecurity_la-msg.Tpo -c actions/msg.cc -o actions/libmodsecurity_la-msg.o >/dev/null 2>&1
mv -f actions/.deps/libmodsecurity_la-msg.Tpo actions/.deps/libmodsecurity_la-msg.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/libmodsecurity_la-multi_match.lo -MD -MP -MF actions/.deps/libmodsecurity_la-multi_match.Tpo -c -o actions/libmodsecurity_la-multi_match.lo `test -f 'actions/multi_match.cc' || echo './'`actions/multi_match.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-multi_match.lo -MD -MP -MF actions/.deps/libmodsecurity_la-multi_match.Tpo -c actions/multi_match.cc  -fPIC -DPIC -o actions/.libs/libmodsecurity_la-multi_match.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-multi_match.lo -MD -MP -MF actions/.deps/libmodsecurity_la-multi_match.Tpo -c actions/multi_match.cc -o actions/libmodsecurity_la-multi_match.o >/dev/null 2>&1
mv -f actions/.deps/libmodsecurity_la-multi_match.Tpo actions/.deps/libmodsecurity_la-multi_match.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/libmodsecurity_la-no_audit_log.lo -MD -MP -MF actions/.deps/libmodsecurity_la-no_audit_log.Tpo -c -o actions/libmodsecurity_la-no_audit_log.lo `test -f 'actions/no_audit_log.cc' || echo './'`actions/no_audit_log.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-no_audit_log.lo -MD -MP -MF actions/.deps/libmodsecurity_la-no_audit_log.Tpo -c actions/no_audit_log.cc  -fPIC -DPIC -o actions/.libs/libmodsecurity_la-no_audit_log.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-no_audit_log.lo -MD -MP -MF actions/.deps/libmodsecurity_la-no_audit_log.Tpo -c actions/no_audit_log.cc -o actions/libmodsecurity_la-no_audit_log.o >/dev/null 2>&1
mv -f actions/.deps/libmodsecurity_la-no_audit_log.Tpo actions/.deps/libmodsecurity_la-no_audit_log.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/libmodsecurity_la-no_log.lo -MD -MP -MF actions/.deps/libmodsecurity_la-no_log.Tpo -c -o actions/libmodsecurity_la-no_log.lo `test -f 'actions/no_log.cc' || echo './'`actions/no_log.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-no_log.lo -MD -MP -MF actions/.deps/libmodsecurity_la-no_log.Tpo -c actions/no_log.cc  -fPIC -DPIC -o actions/.libs/libmodsecurity_la-no_log.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-no_log.lo -MD -MP -MF actions/.deps/libmodsecurity_la-no_log.Tpo -c actions/no_log.cc -o actions/libmodsecurity_la-no_log.o >/dev/null 2>&1
mv -f actions/.deps/libmodsecurity_la-no_log.Tpo actions/.deps/libmodsecurity_la-no_log.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/libmodsecurity_la-phase.lo -MD -MP -MF actions/.deps/libmodsecurity_la-phase.Tpo -c -o actions/libmodsecurity_la-phase.lo `test -f 'actions/phase.cc' || echo './'`actions/phase.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-phase.lo -MD -MP -MF actions/.deps/libmodsecurity_la-phase.Tpo -c actions/phase.cc  -fPIC -DPIC -o actions/.libs/libmodsecurity_la-phase.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-phase.lo -MD -MP -MF actions/.deps/libmodsecurity_la-phase.Tpo -c actions/phase.cc -o actions/libmodsecurity_la-phase.o >/dev/null 2>&1
mv -f actions/.deps/libmodsecurity_la-phase.Tpo actions/.deps/libmodsecurity_la-phase.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/libmodsecurity_la-rev.lo -MD -MP -MF actions/.deps/libmodsecurity_la-rev.Tpo -c -o actions/libmodsecurity_la-rev.lo `test -f 'actions/rev.cc' || echo './'`actions/rev.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-rev.lo -MD -MP -MF actions/.deps/libmodsecurity_la-rev.Tpo -c actions/rev.cc  -fPIC -DPIC -o actions/.libs/libmodsecurity_la-rev.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-rev.lo -MD -MP -MF actions/.deps/libmodsecurity_la-rev.Tpo -c actions/rev.cc -o actions/libmodsecurity_la-rev.o >/dev/null 2>&1
mv -f actions/.deps/libmodsecurity_la-rev.Tpo actions/.deps/libmodsecurity_la-rev.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/libmodsecurity_la-rule_id.lo -MD -MP -MF actions/.deps/libmodsecurity_la-rule_id.Tpo -c -o actions/libmodsecurity_la-rule_id.lo `test -f 'actions/rule_id.cc' || echo './'`actions/rule_id.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-rule_id.lo -MD -MP -MF actions/.deps/libmodsecurity_la-rule_id.Tpo -c actions/rule_id.cc  -fPIC -DPIC -o actions/.libs/libmodsecurity_la-rule_id.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-rule_id.lo -MD -MP -MF actions/.deps/libmodsecurity_la-rule_id.Tpo -c actions/rule_id.cc -o actions/libmodsecurity_la-rule_id.o >/dev/null 2>&1
mv -f actions/.deps/libmodsecurity_la-rule_id.Tpo actions/.deps/libmodsecurity_la-rule_id.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/libmodsecurity_la-severity.lo -MD -MP -MF actions/.deps/libmodsecurity_la-severity.Tpo -c -o actions/libmodsecurity_la-severity.lo `test -f 'actions/severity.cc' || echo './'`actions/severity.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-severity.lo -MD -MP -MF actions/.deps/libmodsecurity_la-severity.Tpo -c actions/severity.cc  -fPIC -DPIC -o actions/.libs/libmodsecurity_la-severity.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-severity.lo -MD -MP -MF actions/.deps/libmodsecurity_la-severity.Tpo -c actions/severity.cc -o actions/libmodsecurity_la-severity.o >/dev/null 2>&1
mv -f actions/.deps/libmodsecurity_la-severity.Tpo actions/.deps/libmodsecurity_la-severity.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/libmodsecurity_la-set_env.lo -MD -MP -MF actions/.deps/libmodsecurity_la-set_env.Tpo -c -o actions/libmodsecurity_la-set_env.lo `test -f 'actions/set_env.cc' || echo './'`actions/set_env.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-set_env.lo -MD -MP -MF actions/.deps/libmodsecurity_la-set_env.Tpo -c actions/set_env.cc  -fPIC -DPIC -o actions/.libs/libmodsecurity_la-set_env.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-set_env.lo -MD -MP -MF actions/.deps/libmodsecurity_la-set_env.Tpo -c actions/set_env.cc -o actions/libmodsecurity_la-set_env.o >/dev/null 2>&1
mv -f actions/.deps/libmodsecurity_la-set_env.Tpo actions/.deps/libmodsecurity_la-set_env.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/libmodsecurity_la-set_rsc.lo -MD -MP -MF actions/.deps/libmodsecurity_la-set_rsc.Tpo -c -o actions/libmodsecurity_la-set_rsc.lo `test -f 'actions/set_rsc.cc' || echo './'`actions/set_rsc.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-set_rsc.lo -MD -MP -MF actions/.deps/libmodsecurity_la-set_rsc.Tpo -c actions/set_rsc.cc  -fPIC -DPIC -o actions/.libs/libmodsecurity_la-set_rsc.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-set_rsc.lo -MD -MP -MF actions/.deps/libmodsecurity_la-set_rsc.Tpo -c actions/set_rsc.cc -o actions/libmodsecurity_la-set_rsc.o >/dev/null 2>&1
mv -f actions/.deps/libmodsecurity_la-set_rsc.Tpo actions/.deps/libmodsecurity_la-set_rsc.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/libmodsecurity_la-set_sid.lo -MD -MP -MF actions/.deps/libmodsecurity_la-set_sid.Tpo -c -o actions/libmodsecurity_la-set_sid.lo `test -f 'actions/set_sid.cc' || echo './'`actions/set_sid.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-set_sid.lo -MD -MP -MF actions/.deps/libmodsecurity_la-set_sid.Tpo -c actions/set_sid.cc  -fPIC -DPIC -o actions/.libs/libmodsecurity_la-set_sid.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-set_sid.lo -MD -MP -MF actions/.deps/libmodsecurity_la-set_sid.Tpo -c actions/set_sid.cc -o actions/libmodsecurity_la-set_sid.o >/dev/null 2>&1
mv -f actions/.deps/libmodsecurity_la-set_sid.Tpo actions/.deps/libmodsecurity_la-set_sid.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/libmodsecurity_la-set_uid.lo -MD -MP -MF actions/.deps/libmodsecurity_la-set_uid.Tpo -c -o actions/libmodsecurity_la-set_uid.lo `test -f 'actions/set_uid.cc' || echo './'`actions/set_uid.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-set_uid.lo -MD -MP -MF actions/.deps/libmodsecurity_la-set_uid.Tpo -c actions/set_uid.cc  -fPIC -DPIC -o actions/.libs/libmodsecurity_la-set_uid.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-set_uid.lo -MD -MP -MF actions/.deps/libmodsecurity_la-set_uid.Tpo -c actions/set_uid.cc -o actions/libmodsecurity_la-set_uid.o >/dev/null 2>&1
mv -f actions/.deps/libmodsecurity_la-set_uid.Tpo actions/.deps/libmodsecurity_la-set_uid.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/libmodsecurity_la-set_var.lo -MD -MP -MF actions/.deps/libmodsecurity_la-set_var.Tpo -c -o actions/libmodsecurity_la-set_var.lo `test -f 'actions/set_var.cc' || echo './'`actions/set_var.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-set_var.lo -MD -MP -MF actions/.deps/libmodsecurity_la-set_var.Tpo -c actions/set_var.cc  -fPIC -DPIC -o actions/.libs/libmodsecurity_la-set_var.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-set_var.lo -MD -MP -MF actions/.deps/libmodsecurity_la-set_var.Tpo -c actions/set_var.cc -o actions/libmodsecurity_la-set_var.o >/dev/null 2>&1
mv -f actions/.deps/libmodsecurity_la-set_var.Tpo actions/.deps/libmodsecurity_la-set_var.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/data/libmodsecurity_la-status.lo -MD -MP -MF actions/data/.deps/libmodsecurity_la-status.Tpo -c -o actions/data/libmodsecurity_la-status.lo `test -f 'actions/data/status.cc' || echo './'`actions/data/status.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/data/libmodsecurity_la-status.lo -MD -MP -MF actions/data/.deps/libmodsecurity_la-status.Tpo -c actions/data/status.cc  -fPIC -DPIC -o actions/data/.libs/libmodsecurity_la-status.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/data/libmodsecurity_la-status.lo -MD -MP -MF actions/data/.deps/libmodsecurity_la-status.Tpo -c actions/data/status.cc -o actions/data/libmodsecurity_la-status.o >/dev/null 2>&1
mv -f actions/data/.deps/libmodsecurity_la-status.Tpo actions/data/.deps/libmodsecurity_la-status.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/libmodsecurity_la-skip.lo -MD -MP -MF actions/.deps/libmodsecurity_la-skip.Tpo -c -o actions/libmodsecurity_la-skip.lo `test -f 'actions/skip.cc' || echo './'`actions/skip.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-skip.lo -MD -MP -MF actions/.deps/libmodsecurity_la-skip.Tpo -c actions/skip.cc  -fPIC -DPIC -o actions/.libs/libmodsecurity_la-skip.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-skip.lo -MD -MP -MF actions/.deps/libmodsecurity_la-skip.Tpo -c actions/skip.cc -o actions/libmodsecurity_la-skip.o >/dev/null 2>&1
mv -f actions/.deps/libmodsecurity_la-skip.Tpo actions/.deps/libmodsecurity_la-skip.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/libmodsecurity_la-skip_after.lo -MD -MP -MF actions/.deps/libmodsecurity_la-skip_after.Tpo -c -o actions/libmodsecurity_la-skip_after.lo `test -f 'actions/skip_after.cc' || echo './'`actions/skip_after.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-skip_after.lo -MD -MP -MF actions/.deps/libmodsecurity_la-skip_after.Tpo -c actions/skip_after.cc  -fPIC -DPIC -o actions/.libs/libmodsecurity_la-skip_after.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-skip_after.lo -MD -MP -MF actions/.deps/libmodsecurity_la-skip_after.Tpo -c actions/skip_after.cc -o actions/libmodsecurity_la-skip_after.o >/dev/null 2>&1
mv -f actions/.deps/libmodsecurity_la-skip_after.Tpo actions/.deps/libmodsecurity_la-skip_after.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/libmodsecurity_la-tag.lo -MD -MP -MF actions/.deps/libmodsecurity_la-tag.Tpo -c -o actions/libmodsecurity_la-tag.lo `test -f 'actions/tag.cc' || echo './'`actions/tag.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-tag.lo -MD -MP -MF actions/.deps/libmodsecurity_la-tag.Tpo -c actions/tag.cc  -fPIC -DPIC -o actions/.libs/libmodsecurity_la-tag.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-tag.lo -MD -MP -MF actions/.deps/libmodsecurity_la-tag.Tpo -c actions/tag.cc -o actions/libmodsecurity_la-tag.o >/dev/null 2>&1
mv -f actions/.deps/libmodsecurity_la-tag.Tpo actions/.deps/libmodsecurity_la-tag.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-base64_decode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-base64_decode.Tpo -c -o actions/transformations/libmodsecurity_la-base64_decode.lo `test -f 'actions/transformations/base64_decode.cc' || echo './'`actions/transformations/base64_decode.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-base64_decode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-base64_decode.Tpo -c actions/transformations/base64_decode.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-base64_decode.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-base64_decode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-base64_decode.Tpo -c actions/transformations/base64_decode.cc -o actions/transformations/libmodsecurity_la-base64_decode.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-base64_decode.Tpo actions/transformations/.deps/libmodsecurity_la-base64_decode.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-base64_encode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-base64_encode.Tpo -c -o actions/transformations/libmodsecurity_la-base64_encode.lo `test -f 'actions/transformations/base64_encode.cc' || echo './'`actions/transformations/base64_encode.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-base64_encode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-base64_encode.Tpo -c actions/transformations/base64_encode.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-base64_encode.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-base64_encode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-base64_encode.Tpo -c actions/transformations/base64_encode.cc -o actions/transformations/libmodsecurity_la-base64_encode.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-base64_encode.Tpo actions/transformations/.deps/libmodsecurity_la-base64_encode.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-base64_decode_ext.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-base64_decode_ext.Tpo -c -o actions/transformations/libmodsecurity_la-base64_decode_ext.lo `test -f 'actions/transformations/base64_decode_ext.cc' || echo './'`actions/transformations/base64_decode_ext.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-base64_decode_ext.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-base64_decode_ext.Tpo -c actions/transformations/base64_decode_ext.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-base64_decode_ext.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-base64_decode_ext.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-base64_decode_ext.Tpo -c actions/transformations/base64_decode_ext.cc -o actions/transformations/libmodsecurity_la-base64_decode_ext.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-base64_decode_ext.Tpo actions/transformations/.deps/libmodsecurity_la-base64_decode_ext.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-cmd_line.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-cmd_line.Tpo -c -o actions/transformations/libmodsecurity_la-cmd_line.lo `test -f 'actions/transformations/cmd_line.cc' || echo './'`actions/transformations/cmd_line.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-cmd_line.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-cmd_line.Tpo -c actions/transformations/cmd_line.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-cmd_line.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-cmd_line.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-cmd_line.Tpo -c actions/transformations/cmd_line.cc -o actions/transformations/libmodsecurity_la-cmd_line.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-cmd_line.Tpo actions/transformations/.deps/libmodsecurity_la-cmd_line.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-compress_whitespace.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-compress_whitespace.Tpo -c -o actions/transformations/libmodsecurity_la-compress_whitespace.lo `test -f 'actions/transformations/compress_whitespace.cc' || echo './'`actions/transformations/compress_whitespace.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-compress_whitespace.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-compress_whitespace.Tpo -c actions/transformations/compress_whitespace.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-compress_whitespace.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-compress_whitespace.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-compress_whitespace.Tpo -c actions/transformations/compress_whitespace.cc -o actions/transformations/libmodsecurity_la-compress_whitespace.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-compress_whitespace.Tpo actions/transformations/.deps/libmodsecurity_la-compress_whitespace.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-css_decode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-css_decode.Tpo -c -o actions/transformations/libmodsecurity_la-css_decode.lo `test -f 'actions/transformations/css_decode.cc' || echo './'`actions/transformations/css_decode.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-css_decode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-css_decode.Tpo -c actions/transformations/css_decode.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-css_decode.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-css_decode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-css_decode.Tpo -c actions/transformations/css_decode.cc -o actions/transformations/libmodsecurity_la-css_decode.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-css_decode.Tpo actions/transformations/.deps/libmodsecurity_la-css_decode.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-escape_seq_decode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-escape_seq_decode.Tpo -c -o actions/transformations/libmodsecurity_la-escape_seq_decode.lo `test -f 'actions/transformations/escape_seq_decode.cc' || echo './'`actions/transformations/escape_seq_decode.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-escape_seq_decode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-escape_seq_decode.Tpo -c actions/transformations/escape_seq_decode.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-escape_seq_decode.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-escape_seq_decode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-escape_seq_decode.Tpo -c actions/transformations/escape_seq_decode.cc -o actions/transformations/libmodsecurity_la-escape_seq_decode.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-escape_seq_decode.Tpo actions/transformations/.deps/libmodsecurity_la-escape_seq_decode.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-hex_decode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-hex_decode.Tpo -c -o actions/transformations/libmodsecurity_la-hex_decode.lo `test -f 'actions/transformations/hex_decode.cc' || echo './'`actions/transformations/hex_decode.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-hex_decode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-hex_decode.Tpo -c actions/transformations/hex_decode.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-hex_decode.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-hex_decode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-hex_decode.Tpo -c actions/transformations/hex_decode.cc -o actions/transformations/libmodsecurity_la-hex_decode.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-hex_decode.Tpo actions/transformations/.deps/libmodsecurity_la-hex_decode.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-hex_encode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-hex_encode.Tpo -c -o actions/transformations/libmodsecurity_la-hex_encode.lo `test -f 'actions/transformations/hex_encode.cc' || echo './'`actions/transformations/hex_encode.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-hex_encode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-hex_encode.Tpo -c actions/transformations/hex_encode.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-hex_encode.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-hex_encode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-hex_encode.Tpo -c actions/transformations/hex_encode.cc -o actions/transformations/libmodsecurity_la-hex_encode.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-hex_encode.Tpo actions/transformations/.deps/libmodsecurity_la-hex_encode.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-html_entity_decode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-html_entity_decode.Tpo -c -o actions/transformations/libmodsecurity_la-html_entity_decode.lo `test -f 'actions/transformations/html_entity_decode.cc' || echo './'`actions/transformations/html_entity_decode.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-html_entity_decode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-html_entity_decode.Tpo -c actions/transformations/html_entity_decode.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-html_entity_decode.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-html_entity_decode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-html_entity_decode.Tpo -c actions/transformations/html_entity_decode.cc -o actions/transformations/libmodsecurity_la-html_entity_decode.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-html_entity_decode.Tpo actions/transformations/.deps/libmodsecurity_la-html_entity_decode.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-js_decode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-js_decode.Tpo -c -o actions/transformations/libmodsecurity_la-js_decode.lo `test -f 'actions/transformations/js_decode.cc' || echo './'`actions/transformations/js_decode.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-js_decode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-js_decode.Tpo -c actions/transformations/js_decode.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-js_decode.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-js_decode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-js_decode.Tpo -c actions/transformations/js_decode.cc -o actions/transformations/libmodsecurity_la-js_decode.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-js_decode.Tpo actions/transformations/.deps/libmodsecurity_la-js_decode.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-length.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-length.Tpo -c -o actions/transformations/libmodsecurity_la-length.lo `test -f 'actions/transformations/length.cc' || echo './'`actions/transformations/length.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-length.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-length.Tpo -c actions/transformations/length.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-length.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-length.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-length.Tpo -c actions/transformations/length.cc -o actions/transformations/libmodsecurity_la-length.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-length.Tpo actions/transformations/.deps/libmodsecurity_la-length.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-lower_case.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-lower_case.Tpo -c -o actions/transformations/libmodsecurity_la-lower_case.lo `test -f 'actions/transformations/lower_case.cc' || echo './'`actions/transformations/lower_case.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-lower_case.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-lower_case.Tpo -c actions/transformations/lower_case.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-lower_case.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-lower_case.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-lower_case.Tpo -c actions/transformations/lower_case.cc -o actions/transformations/libmodsecurity_la-lower_case.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-lower_case.Tpo actions/transformations/.deps/libmodsecurity_la-lower_case.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-md5.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-md5.Tpo -c -o actions/transformations/libmodsecurity_la-md5.lo `test -f 'actions/transformations/md5.cc' || echo './'`actions/transformations/md5.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-md5.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-md5.Tpo -c actions/transformations/md5.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-md5.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-md5.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-md5.Tpo -c actions/transformations/md5.cc -o actions/transformations/libmodsecurity_la-md5.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-md5.Tpo actions/transformations/.deps/libmodsecurity_la-md5.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-none.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-none.Tpo -c -o actions/transformations/libmodsecurity_la-none.lo `test -f 'actions/transformations/none.cc' || echo './'`actions/transformations/none.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-none.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-none.Tpo -c actions/transformations/none.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-none.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-none.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-none.Tpo -c actions/transformations/none.cc -o actions/transformations/libmodsecurity_la-none.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-none.Tpo actions/transformations/.deps/libmodsecurity_la-none.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-normalise_path.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-normalise_path.Tpo -c -o actions/transformations/libmodsecurity_la-normalise_path.lo `test -f 'actions/transformations/normalise_path.cc' || echo './'`actions/transformations/normalise_path.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-normalise_path.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-normalise_path.Tpo -c actions/transformations/normalise_path.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-normalise_path.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-normalise_path.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-normalise_path.Tpo -c actions/transformations/normalise_path.cc -o actions/transformations/libmodsecurity_la-normalise_path.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-normalise_path.Tpo actions/transformations/.deps/libmodsecurity_la-normalise_path.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-normalise_path_win.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-normalise_path_win.Tpo -c -o actions/transformations/libmodsecurity_la-normalise_path_win.lo `test -f 'actions/transformations/normalise_path_win.cc' || echo './'`actions/transformations/normalise_path_win.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-normalise_path_win.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-normalise_path_win.Tpo -c actions/transformations/normalise_path_win.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-normalise_path_win.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-normalise_path_win.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-normalise_path_win.Tpo -c actions/transformations/normalise_path_win.cc -o actions/transformations/libmodsecurity_la-normalise_path_win.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-normalise_path_win.Tpo actions/transformations/.deps/libmodsecurity_la-normalise_path_win.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-parity_even_7bit.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-parity_even_7bit.Tpo -c -o actions/transformations/libmodsecurity_la-parity_even_7bit.lo `test -f 'actions/transformations/parity_even_7bit.cc' || echo './'`actions/transformations/parity_even_7bit.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-parity_even_7bit.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-parity_even_7bit.Tpo -c actions/transformations/parity_even_7bit.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-parity_even_7bit.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-parity_even_7bit.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-parity_even_7bit.Tpo -c actions/transformations/parity_even_7bit.cc -o actions/transformations/libmodsecurity_la-parity_even_7bit.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-parity_even_7bit.Tpo actions/transformations/.deps/libmodsecurity_la-parity_even_7bit.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-parity_odd_7bit.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-parity_odd_7bit.Tpo -c -o actions/transformations/libmodsecurity_la-parity_odd_7bit.lo `test -f 'actions/transformations/parity_odd_7bit.cc' || echo './'`actions/transformations/parity_odd_7bit.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-parity_odd_7bit.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-parity_odd_7bit.Tpo -c actions/transformations/parity_odd_7bit.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-parity_odd_7bit.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-parity_odd_7bit.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-parity_odd_7bit.Tpo -c actions/transformations/parity_odd_7bit.cc -o actions/transformations/libmodsecurity_la-parity_odd_7bit.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-parity_odd_7bit.Tpo actions/transformations/.deps/libmodsecurity_la-parity_odd_7bit.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-parity_zero_7bit.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-parity_zero_7bit.Tpo -c -o actions/transformations/libmodsecurity_la-parity_zero_7bit.lo `test -f 'actions/transformations/parity_zero_7bit.cc' || echo './'`actions/transformations/parity_zero_7bit.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-parity_zero_7bit.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-parity_zero_7bit.Tpo -c actions/transformations/parity_zero_7bit.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-parity_zero_7bit.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-parity_zero_7bit.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-parity_zero_7bit.Tpo -c actions/transformations/parity_zero_7bit.cc -o actions/transformations/libmodsecurity_la-parity_zero_7bit.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-parity_zero_7bit.Tpo actions/transformations/.deps/libmodsecurity_la-parity_zero_7bit.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-remove_comments.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-remove_comments.Tpo -c -o actions/transformations/libmodsecurity_la-remove_comments.lo `test -f 'actions/transformations/remove_comments.cc' || echo './'`actions/transformations/remove_comments.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-remove_comments.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-remove_comments.Tpo -c actions/transformations/remove_comments.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-remove_comments.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-remove_comments.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-remove_comments.Tpo -c actions/transformations/remove_comments.cc -o actions/transformations/libmodsecurity_la-remove_comments.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-remove_comments.Tpo actions/transformations/.deps/libmodsecurity_la-remove_comments.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-remove_comments_char.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-remove_comments_char.Tpo -c -o actions/transformations/libmodsecurity_la-remove_comments_char.lo `test -f 'actions/transformations/remove_comments_char.cc' || echo './'`actions/transformations/remove_comments_char.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-remove_comments_char.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-remove_comments_char.Tpo -c actions/transformations/remove_comments_char.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-remove_comments_char.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-remove_comments_char.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-remove_comments_char.Tpo -c actions/transformations/remove_comments_char.cc -o actions/transformations/libmodsecurity_la-remove_comments_char.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-remove_comments_char.Tpo actions/transformations/.deps/libmodsecurity_la-remove_comments_char.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-remove_nulls.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-remove_nulls.Tpo -c -o actions/transformations/libmodsecurity_la-remove_nulls.lo `test -f 'actions/transformations/remove_nulls.cc' || echo './'`actions/transformations/remove_nulls.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-remove_nulls.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-remove_nulls.Tpo -c actions/transformations/remove_nulls.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-remove_nulls.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-remove_nulls.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-remove_nulls.Tpo -c actions/transformations/remove_nulls.cc -o actions/transformations/libmodsecurity_la-remove_nulls.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-remove_nulls.Tpo actions/transformations/.deps/libmodsecurity_la-remove_nulls.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-remove_whitespace.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-remove_whitespace.Tpo -c -o actions/transformations/libmodsecurity_la-remove_whitespace.lo `test -f 'actions/transformations/remove_whitespace.cc' || echo './'`actions/transformations/remove_whitespace.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-remove_whitespace.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-remove_whitespace.Tpo -c actions/transformations/remove_whitespace.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-remove_whitespace.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-remove_whitespace.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-remove_whitespace.Tpo -c actions/transformations/remove_whitespace.cc -o actions/transformations/libmodsecurity_la-remove_whitespace.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-remove_whitespace.Tpo actions/transformations/.deps/libmodsecurity_la-remove_whitespace.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-replace_comments.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-replace_comments.Tpo -c -o actions/transformations/libmodsecurity_la-replace_comments.lo `test -f 'actions/transformations/replace_comments.cc' || echo './'`actions/transformations/replace_comments.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-replace_comments.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-replace_comments.Tpo -c actions/transformations/replace_comments.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-replace_comments.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-replace_comments.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-replace_comments.Tpo -c actions/transformations/replace_comments.cc -o actions/transformations/libmodsecurity_la-replace_comments.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-replace_comments.Tpo actions/transformations/.deps/libmodsecurity_la-replace_comments.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-replace_nulls.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-replace_nulls.Tpo -c -o actions/transformations/libmodsecurity_la-replace_nulls.lo `test -f 'actions/transformations/replace_nulls.cc' || echo './'`actions/transformations/replace_nulls.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-replace_nulls.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-replace_nulls.Tpo -c actions/transformations/replace_nulls.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-replace_nulls.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-replace_nulls.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-replace_nulls.Tpo -c actions/transformations/replace_nulls.cc -o actions/transformations/libmodsecurity_la-replace_nulls.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-replace_nulls.Tpo actions/transformations/.deps/libmodsecurity_la-replace_nulls.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-sha1.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-sha1.Tpo -c -o actions/transformations/libmodsecurity_la-sha1.lo `test -f 'actions/transformations/sha1.cc' || echo './'`actions/transformations/sha1.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-sha1.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-sha1.Tpo -c actions/transformations/sha1.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-sha1.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-sha1.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-sha1.Tpo -c actions/transformations/sha1.cc -o actions/transformations/libmodsecurity_la-sha1.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-sha1.Tpo actions/transformations/.deps/libmodsecurity_la-sha1.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-sql_hex_decode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-sql_hex_decode.Tpo -c -o actions/transformations/libmodsecurity_la-sql_hex_decode.lo `test -f 'actions/transformations/sql_hex_decode.cc' || echo './'`actions/transformations/sql_hex_decode.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-sql_hex_decode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-sql_hex_decode.Tpo -c actions/transformations/sql_hex_decode.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-sql_hex_decode.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-sql_hex_decode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-sql_hex_decode.Tpo -c actions/transformations/sql_hex_decode.cc -o actions/transformations/libmodsecurity_la-sql_hex_decode.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-sql_hex_decode.Tpo actions/transformations/.deps/libmodsecurity_la-sql_hex_decode.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-transformation.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-transformation.Tpo -c -o actions/transformations/libmodsecurity_la-transformation.lo `test -f 'actions/transformations/transformation.cc' || echo './'`actions/transformations/transformation.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-transformation.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-transformation.Tpo -c actions/transformations/transformation.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-transformation.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-transformation.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-transformation.Tpo -c actions/transformations/transformation.cc -o actions/transformations/libmodsecurity_la-transformation.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-transformation.Tpo actions/transformations/.deps/libmodsecurity_la-transformation.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-trim.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-trim.Tpo -c -o actions/transformations/libmodsecurity_la-trim.lo `test -f 'actions/transformations/trim.cc' || echo './'`actions/transformations/trim.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-trim.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-trim.Tpo -c actions/transformations/trim.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-trim.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-trim.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-trim.Tpo -c actions/transformations/trim.cc -o actions/transformations/libmodsecurity_la-trim.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-trim.Tpo actions/transformations/.deps/libmodsecurity_la-trim.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-trim_left.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-trim_left.Tpo -c -o actions/transformations/libmodsecurity_la-trim_left.lo `test -f 'actions/transformations/trim_left.cc' || echo './'`actions/transformations/trim_left.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-trim_left.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-trim_left.Tpo -c actions/transformations/trim_left.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-trim_left.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-trim_left.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-trim_left.Tpo -c actions/transformations/trim_left.cc -o actions/transformations/libmodsecurity_la-trim_left.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-trim_left.Tpo actions/transformations/.deps/libmodsecurity_la-trim_left.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-trim_right.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-trim_right.Tpo -c -o actions/transformations/libmodsecurity_la-trim_right.lo `test -f 'actions/transformations/trim_right.cc' || echo './'`actions/transformations/trim_right.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-trim_right.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-trim_right.Tpo -c actions/transformations/trim_right.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-trim_right.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-trim_right.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-trim_right.Tpo -c actions/transformations/trim_right.cc -o actions/transformations/libmodsecurity_la-trim_right.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-trim_right.Tpo actions/transformations/.deps/libmodsecurity_la-trim_right.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-upper_case.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-upper_case.Tpo -c -o actions/transformations/libmodsecurity_la-upper_case.lo `test -f 'actions/transformations/upper_case.cc' || echo './'`actions/transformations/upper_case.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-upper_case.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-upper_case.Tpo -c actions/transformations/upper_case.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-upper_case.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-upper_case.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-upper_case.Tpo -c actions/transformations/upper_case.cc -o actions/transformations/libmodsecurity_la-upper_case.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-upper_case.Tpo actions/transformations/.deps/libmodsecurity_la-upper_case.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-url_decode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-url_decode.Tpo -c -o actions/transformations/libmodsecurity_la-url_decode.lo `test -f 'actions/transformations/url_decode.cc' || echo './'`actions/transformations/url_decode.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-url_decode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-url_decode.Tpo -c actions/transformations/url_decode.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-url_decode.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-url_decode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-url_decode.Tpo -c actions/transformations/url_decode.cc -o actions/transformations/libmodsecurity_la-url_decode.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-url_decode.Tpo actions/transformations/.deps/libmodsecurity_la-url_decode.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-url_decode_uni.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-url_decode_uni.Tpo -c -o actions/transformations/libmodsecurity_la-url_decode_uni.lo `test -f 'actions/transformations/url_decode_uni.cc' || echo './'`actions/transformations/url_decode_uni.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-url_decode_uni.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-url_decode_uni.Tpo -c actions/transformations/url_decode_uni.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-url_decode_uni.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-url_decode_uni.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-url_decode_uni.Tpo -c actions/transformations/url_decode_uni.cc -o actions/transformations/libmodsecurity_la-url_decode_uni.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-url_decode_uni.Tpo actions/transformations/.deps/libmodsecurity_la-url_decode_uni.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-url_encode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-url_encode.Tpo -c -o actions/transformations/libmodsecurity_la-url_encode.lo `test -f 'actions/transformations/url_encode.cc' || echo './'`actions/transformations/url_encode.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-url_encode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-url_encode.Tpo -c actions/transformations/url_encode.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-url_encode.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-url_encode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-url_encode.Tpo -c actions/transformations/url_encode.cc -o actions/transformations/libmodsecurity_la-url_encode.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-url_encode.Tpo actions/transformations/.deps/libmodsecurity_la-url_encode.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/transformations/libmodsecurity_la-utf8_to_unicode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-utf8_to_unicode.Tpo -c -o actions/transformations/libmodsecurity_la-utf8_to_unicode.lo `test -f 'actions/transformations/utf8_to_unicode.cc' || echo './'`actions/transformations/utf8_to_unicode.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-utf8_to_unicode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-utf8_to_unicode.Tpo -c actions/transformations/utf8_to_unicode.cc  -fPIC -DPIC -o actions/transformations/.libs/libmodsecurity_la-utf8_to_unicode.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/transformations/libmodsecurity_la-utf8_to_unicode.lo -MD -MP -MF actions/transformations/.deps/libmodsecurity_la-utf8_to_unicode.Tpo -c actions/transformations/utf8_to_unicode.cc -o actions/transformations/libmodsecurity_la-utf8_to_unicode.o >/dev/null 2>&1
mv -f actions/transformations/.deps/libmodsecurity_la-utf8_to_unicode.Tpo actions/transformations/.deps/libmodsecurity_la-utf8_to_unicode.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/libmodsecurity_la-ver.lo -MD -MP -MF actions/.deps/libmodsecurity_la-ver.Tpo -c -o actions/libmodsecurity_la-ver.lo `test -f 'actions/ver.cc' || echo './'`actions/ver.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-ver.lo -MD -MP -MF actions/.deps/libmodsecurity_la-ver.Tpo -c actions/ver.cc  -fPIC -DPIC -o actions/.libs/libmodsecurity_la-ver.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-ver.lo -MD -MP -MF actions/.deps/libmodsecurity_la-ver.Tpo -c actions/ver.cc -o actions/libmodsecurity_la-ver.o >/dev/null 2>&1
mv -f actions/.deps/libmodsecurity_la-ver.Tpo actions/.deps/libmodsecurity_la-ver.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT actions/libmodsecurity_la-xmlns.lo -MD -MP -MF actions/.deps/libmodsecurity_la-xmlns.Tpo -c -o actions/libmodsecurity_la-xmlns.lo `test -f 'actions/xmlns.cc' || echo './'`actions/xmlns.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-xmlns.lo -MD -MP -MF actions/.deps/libmodsecurity_la-xmlns.Tpo -c actions/xmlns.cc  -fPIC -DPIC -o actions/.libs/libmodsecurity_la-xmlns.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT actions/libmodsecurity_la-xmlns.lo -MD -MP -MF actions/.deps/libmodsecurity_la-xmlns.Tpo -c actions/xmlns.cc -o actions/libmodsecurity_la-xmlns.o >/dev/null 2>&1
mv -f actions/.deps/libmodsecurity_la-xmlns.Tpo actions/.deps/libmodsecurity_la-xmlns.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT engine/libmodsecurity_la-lua.lo -MD -MP -MF engine/.deps/libmodsecurity_la-lua.Tpo -c -o engine/libmodsecurity_la-lua.lo `test -f 'engine/lua.cc' || echo './'`engine/lua.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT engine/libmodsecurity_la-lua.lo -MD -MP -MF engine/.deps/libmodsecurity_la-lua.Tpo -c engine/lua.cc  -fPIC -DPIC -o engine/.libs/libmodsecurity_la-lua.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT engine/libmodsecurity_la-lua.lo -MD -MP -MF engine/.deps/libmodsecurity_la-lua.Tpo -c engine/lua.cc -o engine/libmodsecurity_la-lua.o >/dev/null 2>&1
mv -f engine/.deps/libmodsecurity_la-lua.Tpo engine/.deps/libmodsecurity_la-lua.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT collection/libmodsecurity_la-collections.lo -MD -MP -MF collection/.deps/libmodsecurity_la-collections.Tpo -c -o collection/libmodsecurity_la-collections.lo `test -f 'collection/collections.cc' || echo './'`collection/collections.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT collection/libmodsecurity_la-collections.lo -MD -MP -MF collection/.deps/libmodsecurity_la-collections.Tpo -c collection/collections.cc  -fPIC -DPIC -o collection/.libs/libmodsecurity_la-collections.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT collection/libmodsecurity_la-collections.lo -MD -MP -MF collection/.deps/libmodsecurity_la-collections.Tpo -c collection/collections.cc -o collection/libmodsecurity_la-collections.o >/dev/null 2>&1
mv -f collection/.deps/libmodsecurity_la-collections.Tpo collection/.deps/libmodsecurity_la-collections.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT collection/backend/libmodsecurity_la-in_memory-per_process.lo -MD -MP -MF collection/backend/.deps/libmodsecurity_la-in_memory-per_process.Tpo -c -o collection/backend/libmodsecurity_la-in_memory-per_process.lo `test -f 'collection/backend/in_memory-per_process.cc' || echo './'`collection/backend/in_memory-per_process.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT collection/backend/libmodsecurity_la-in_memory-per_process.lo -MD -MP -MF collection/backend/.deps/libmodsecurity_la-in_memory-per_process.Tpo -c collection/backend/in_memory-per_process.cc  -fPIC -DPIC -o collection/backend/.libs/libmodsecurity_la-in_memory-per_process.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT collection/backend/libmodsecurity_la-in_memory-per_process.lo -MD -MP -MF collection/backend/.deps/libmodsecurity_la-in_memory-per_process.Tpo -c collection/backend/in_memory-per_process.cc -o collection/backend/libmodsecurity_la-in_memory-per_process.o >/dev/null 2>&1
mv -f collection/backend/.deps/libmodsecurity_la-in_memory-per_process.Tpo collection/backend/.deps/libmodsecurity_la-in_memory-per_process.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT collection/backend/libmodsecurity_la-lmdb.lo -MD -MP -MF collection/backend/.deps/libmodsecurity_la-lmdb.Tpo -c -o collection/backend/libmodsecurity_la-lmdb.lo `test -f 'collection/backend/lmdb.cc' || echo './'`collection/backend/lmdb.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT collection/backend/libmodsecurity_la-lmdb.lo -MD -MP -MF collection/backend/.deps/libmodsecurity_la-lmdb.Tpo -c collection/backend/lmdb.cc  -fPIC -DPIC -o collection/backend/.libs/libmodsecurity_la-lmdb.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT collection/backend/libmodsecurity_la-lmdb.lo -MD -MP -MF collection/backend/.deps/libmodsecurity_la-lmdb.Tpo -c collection/backend/lmdb.cc -o collection/backend/libmodsecurity_la-lmdb.o >/dev/null 2>&1
mv -f collection/backend/.deps/libmodsecurity_la-lmdb.Tpo collection/backend/.deps/libmodsecurity_la-lmdb.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-begins_with.lo -MD -MP -MF operators/.deps/libmodsecurity_la-begins_with.Tpo -c -o operators/libmodsecurity_la-begins_with.lo `test -f 'operators/begins_with.cc' || echo './'`operators/begins_with.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-begins_with.lo -MD -MP -MF operators/.deps/libmodsecurity_la-begins_with.Tpo -c operators/begins_with.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-begins_with.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-begins_with.lo -MD -MP -MF operators/.deps/libmodsecurity_la-begins_with.Tpo -c operators/begins_with.cc -o operators/libmodsecurity_la-begins_with.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-begins_with.Tpo operators/.deps/libmodsecurity_la-begins_with.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-contains.lo -MD -MP -MF operators/.deps/libmodsecurity_la-contains.Tpo -c -o operators/libmodsecurity_la-contains.lo `test -f 'operators/contains.cc' || echo './'`operators/contains.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-contains.lo -MD -MP -MF operators/.deps/libmodsecurity_la-contains.Tpo -c operators/contains.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-contains.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-contains.lo -MD -MP -MF operators/.deps/libmodsecurity_la-contains.Tpo -c operators/contains.cc -o operators/libmodsecurity_la-contains.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-contains.Tpo operators/.deps/libmodsecurity_la-contains.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-contains_word.lo -MD -MP -MF operators/.deps/libmodsecurity_la-contains_word.Tpo -c -o operators/libmodsecurity_la-contains_word.lo `test -f 'operators/contains_word.cc' || echo './'`operators/contains_word.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-contains_word.lo -MD -MP -MF operators/.deps/libmodsecurity_la-contains_word.Tpo -c operators/contains_word.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-contains_word.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-contains_word.lo -MD -MP -MF operators/.deps/libmodsecurity_la-contains_word.Tpo -c operators/contains_word.cc -o operators/libmodsecurity_la-contains_word.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-contains_word.Tpo operators/.deps/libmodsecurity_la-contains_word.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-detect_sqli.lo -MD -MP -MF operators/.deps/libmodsecurity_la-detect_sqli.Tpo -c -o operators/libmodsecurity_la-detect_sqli.lo `test -f 'operators/detect_sqli.cc' || echo './'`operators/detect_sqli.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-detect_sqli.lo -MD -MP -MF operators/.deps/libmodsecurity_la-detect_sqli.Tpo -c operators/detect_sqli.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-detect_sqli.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-detect_sqli.lo -MD -MP -MF operators/.deps/libmodsecurity_la-detect_sqli.Tpo -c operators/detect_sqli.cc -o operators/libmodsecurity_la-detect_sqli.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-detect_sqli.Tpo operators/.deps/libmodsecurity_la-detect_sqli.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-detect_xss.lo -MD -MP -MF operators/.deps/libmodsecurity_la-detect_xss.Tpo -c -o operators/libmodsecurity_la-detect_xss.lo `test -f 'operators/detect_xss.cc' || echo './'`operators/detect_xss.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-detect_xss.lo -MD -MP -MF operators/.deps/libmodsecurity_la-detect_xss.Tpo -c operators/detect_xss.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-detect_xss.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-detect_xss.lo -MD -MP -MF operators/.deps/libmodsecurity_la-detect_xss.Tpo -c operators/detect_xss.cc -o operators/libmodsecurity_la-detect_xss.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-detect_xss.Tpo operators/.deps/libmodsecurity_la-detect_xss.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-ends_with.lo -MD -MP -MF operators/.deps/libmodsecurity_la-ends_with.Tpo -c -o operators/libmodsecurity_la-ends_with.lo `test -f 'operators/ends_with.cc' || echo './'`operators/ends_with.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-ends_with.lo -MD -MP -MF operators/.deps/libmodsecurity_la-ends_with.Tpo -c operators/ends_with.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-ends_with.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-ends_with.lo -MD -MP -MF operators/.deps/libmodsecurity_la-ends_with.Tpo -c operators/ends_with.cc -o operators/libmodsecurity_la-ends_with.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-ends_with.Tpo operators/.deps/libmodsecurity_la-ends_with.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-eq.lo -MD -MP -MF operators/.deps/libmodsecurity_la-eq.Tpo -c -o operators/libmodsecurity_la-eq.lo `test -f 'operators/eq.cc' || echo './'`operators/eq.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-eq.lo -MD -MP -MF operators/.deps/libmodsecurity_la-eq.Tpo -c operators/eq.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-eq.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-eq.lo -MD -MP -MF operators/.deps/libmodsecurity_la-eq.Tpo -c operators/eq.cc -o operators/libmodsecurity_la-eq.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-eq.Tpo operators/.deps/libmodsecurity_la-eq.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-fuzzy_hash.lo -MD -MP -MF operators/.deps/libmodsecurity_la-fuzzy_hash.Tpo -c -o operators/libmodsecurity_la-fuzzy_hash.lo `test -f 'operators/fuzzy_hash.cc' || echo './'`operators/fuzzy_hash.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-fuzzy_hash.lo -MD -MP -MF operators/.deps/libmodsecurity_la-fuzzy_hash.Tpo -c operators/fuzzy_hash.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-fuzzy_hash.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-fuzzy_hash.lo -MD -MP -MF operators/.deps/libmodsecurity_la-fuzzy_hash.Tpo -c operators/fuzzy_hash.cc -o operators/libmodsecurity_la-fuzzy_hash.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-fuzzy_hash.Tpo operators/.deps/libmodsecurity_la-fuzzy_hash.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-ge.lo -MD -MP -MF operators/.deps/libmodsecurity_la-ge.Tpo -c -o operators/libmodsecurity_la-ge.lo `test -f 'operators/ge.cc' || echo './'`operators/ge.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-ge.lo -MD -MP -MF operators/.deps/libmodsecurity_la-ge.Tpo -c operators/ge.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-ge.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-ge.lo -MD -MP -MF operators/.deps/libmodsecurity_la-ge.Tpo -c operators/ge.cc -o operators/libmodsecurity_la-ge.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-ge.Tpo operators/.deps/libmodsecurity_la-ge.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-geo_lookup.lo -MD -MP -MF operators/.deps/libmodsecurity_la-geo_lookup.Tpo -c -o operators/libmodsecurity_la-geo_lookup.lo `test -f 'operators/geo_lookup.cc' || echo './'`operators/geo_lookup.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-geo_lookup.lo -MD -MP -MF operators/.deps/libmodsecurity_la-geo_lookup.Tpo -c operators/geo_lookup.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-geo_lookup.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-geo_lookup.lo -MD -MP -MF operators/.deps/libmodsecurity_la-geo_lookup.Tpo -c operators/geo_lookup.cc -o operators/libmodsecurity_la-geo_lookup.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-geo_lookup.Tpo operators/.deps/libmodsecurity_la-geo_lookup.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-gsblookup.lo -MD -MP -MF operators/.deps/libmodsecurity_la-gsblookup.Tpo -c -o operators/libmodsecurity_la-gsblookup.lo `test -f 'operators/gsblookup.cc' || echo './'`operators/gsblookup.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-gsblookup.lo -MD -MP -MF operators/.deps/libmodsecurity_la-gsblookup.Tpo -c operators/gsblookup.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-gsblookup.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-gsblookup.lo -MD -MP -MF operators/.deps/libmodsecurity_la-gsblookup.Tpo -c operators/gsblookup.cc -o operators/libmodsecurity_la-gsblookup.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-gsblookup.Tpo operators/.deps/libmodsecurity_la-gsblookup.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-gt.lo -MD -MP -MF operators/.deps/libmodsecurity_la-gt.Tpo -c -o operators/libmodsecurity_la-gt.lo `test -f 'operators/gt.cc' || echo './'`operators/gt.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-gt.lo -MD -MP -MF operators/.deps/libmodsecurity_la-gt.Tpo -c operators/gt.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-gt.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-gt.lo -MD -MP -MF operators/.deps/libmodsecurity_la-gt.Tpo -c operators/gt.cc -o operators/libmodsecurity_la-gt.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-gt.Tpo operators/.deps/libmodsecurity_la-gt.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-inspect_file.lo -MD -MP -MF operators/.deps/libmodsecurity_la-inspect_file.Tpo -c -o operators/libmodsecurity_la-inspect_file.lo `test -f 'operators/inspect_file.cc' || echo './'`operators/inspect_file.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-inspect_file.lo -MD -MP -MF operators/.deps/libmodsecurity_la-inspect_file.Tpo -c operators/inspect_file.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-inspect_file.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-inspect_file.lo -MD -MP -MF operators/.deps/libmodsecurity_la-inspect_file.Tpo -c operators/inspect_file.cc -o operators/libmodsecurity_la-inspect_file.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-inspect_file.Tpo operators/.deps/libmodsecurity_la-inspect_file.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-ip_match.lo -MD -MP -MF operators/.deps/libmodsecurity_la-ip_match.Tpo -c -o operators/libmodsecurity_la-ip_match.lo `test -f 'operators/ip_match.cc' || echo './'`operators/ip_match.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-ip_match.lo -MD -MP -MF operators/.deps/libmodsecurity_la-ip_match.Tpo -c operators/ip_match.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-ip_match.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-ip_match.lo -MD -MP -MF operators/.deps/libmodsecurity_la-ip_match.Tpo -c operators/ip_match.cc -o operators/libmodsecurity_la-ip_match.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-ip_match.Tpo operators/.deps/libmodsecurity_la-ip_match.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-ip_match_f.lo -MD -MP -MF operators/.deps/libmodsecurity_la-ip_match_f.Tpo -c -o operators/libmodsecurity_la-ip_match_f.lo `test -f 'operators/ip_match_f.cc' || echo './'`operators/ip_match_f.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-ip_match_f.lo -MD -MP -MF operators/.deps/libmodsecurity_la-ip_match_f.Tpo -c operators/ip_match_f.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-ip_match_f.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-ip_match_f.lo -MD -MP -MF operators/.deps/libmodsecurity_la-ip_match_f.Tpo -c operators/ip_match_f.cc -o operators/libmodsecurity_la-ip_match_f.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-ip_match_f.Tpo operators/.deps/libmodsecurity_la-ip_match_f.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-ip_match_from_file.lo -MD -MP -MF operators/.deps/libmodsecurity_la-ip_match_from_file.Tpo -c -o operators/libmodsecurity_la-ip_match_from_file.lo `test -f 'operators/ip_match_from_file.cc' || echo './'`operators/ip_match_from_file.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-ip_match_from_file.lo -MD -MP -MF operators/.deps/libmodsecurity_la-ip_match_from_file.Tpo -c operators/ip_match_from_file.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-ip_match_from_file.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-ip_match_from_file.lo -MD -MP -MF operators/.deps/libmodsecurity_la-ip_match_from_file.Tpo -c operators/ip_match_from_file.cc -o operators/libmodsecurity_la-ip_match_from_file.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-ip_match_from_file.Tpo operators/.deps/libmodsecurity_la-ip_match_from_file.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-le.lo -MD -MP -MF operators/.deps/libmodsecurity_la-le.Tpo -c -o operators/libmodsecurity_la-le.lo `test -f 'operators/le.cc' || echo './'`operators/le.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-le.lo -MD -MP -MF operators/.deps/libmodsecurity_la-le.Tpo -c operators/le.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-le.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-le.lo -MD -MP -MF operators/.deps/libmodsecurity_la-le.Tpo -c operators/le.cc -o operators/libmodsecurity_la-le.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-le.Tpo operators/.deps/libmodsecurity_la-le.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-lt.lo -MD -MP -MF operators/.deps/libmodsecurity_la-lt.Tpo -c -o operators/libmodsecurity_la-lt.lo `test -f 'operators/lt.cc' || echo './'`operators/lt.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-lt.lo -MD -MP -MF operators/.deps/libmodsecurity_la-lt.Tpo -c operators/lt.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-lt.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-lt.lo -MD -MP -MF operators/.deps/libmodsecurity_la-lt.Tpo -c operators/lt.cc -o operators/libmodsecurity_la-lt.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-lt.Tpo operators/.deps/libmodsecurity_la-lt.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-no_match.lo -MD -MP -MF operators/.deps/libmodsecurity_la-no_match.Tpo -c -o operators/libmodsecurity_la-no_match.lo `test -f 'operators/no_match.cc' || echo './'`operators/no_match.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-no_match.lo -MD -MP -MF operators/.deps/libmodsecurity_la-no_match.Tpo -c operators/no_match.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-no_match.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-no_match.lo -MD -MP -MF operators/.deps/libmodsecurity_la-no_match.Tpo -c operators/no_match.cc -o operators/libmodsecurity_la-no_match.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-no_match.Tpo operators/.deps/libmodsecurity_la-no_match.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-operator.lo -MD -MP -MF operators/.deps/libmodsecurity_la-operator.Tpo -c -o operators/libmodsecurity_la-operator.lo `test -f 'operators/operator.cc' || echo './'`operators/operator.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-operator.lo -MD -MP -MF operators/.deps/libmodsecurity_la-operator.Tpo -c operators/operator.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-operator.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-operator.lo -MD -MP -MF operators/.deps/libmodsecurity_la-operator.Tpo -c operators/operator.cc -o operators/libmodsecurity_la-operator.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-operator.Tpo operators/.deps/libmodsecurity_la-operator.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-pm.lo -MD -MP -MF operators/.deps/libmodsecurity_la-pm.Tpo -c -o operators/libmodsecurity_la-pm.lo `test -f 'operators/pm.cc' || echo './'`operators/pm.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-pm.lo -MD -MP -MF operators/.deps/libmodsecurity_la-pm.Tpo -c operators/pm.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-pm.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-pm.lo -MD -MP -MF operators/.deps/libmodsecurity_la-pm.Tpo -c operators/pm.cc -o operators/libmodsecurity_la-pm.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-pm.Tpo operators/.deps/libmodsecurity_la-pm.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-pm_f.lo -MD -MP -MF operators/.deps/libmodsecurity_la-pm_f.Tpo -c -o operators/libmodsecurity_la-pm_f.lo `test -f 'operators/pm_f.cc' || echo './'`operators/pm_f.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-pm_f.lo -MD -MP -MF operators/.deps/libmodsecurity_la-pm_f.Tpo -c operators/pm_f.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-pm_f.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-pm_f.lo -MD -MP -MF operators/.deps/libmodsecurity_la-pm_f.Tpo -c operators/pm_f.cc -o operators/libmodsecurity_la-pm_f.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-pm_f.Tpo operators/.deps/libmodsecurity_la-pm_f.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-pm_from_file.lo -MD -MP -MF operators/.deps/libmodsecurity_la-pm_from_file.Tpo -c -o operators/libmodsecurity_la-pm_from_file.lo `test -f 'operators/pm_from_file.cc' || echo './'`operators/pm_from_file.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-pm_from_file.lo -MD -MP -MF operators/.deps/libmodsecurity_la-pm_from_file.Tpo -c operators/pm_from_file.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-pm_from_file.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-pm_from_file.lo -MD -MP -MF operators/.deps/libmodsecurity_la-pm_from_file.Tpo -c operators/pm_from_file.cc -o operators/libmodsecurity_la-pm_from_file.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-pm_from_file.Tpo operators/.deps/libmodsecurity_la-pm_from_file.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-rbl.lo -MD -MP -MF operators/.deps/libmodsecurity_la-rbl.Tpo -c -o operators/libmodsecurity_la-rbl.lo `test -f 'operators/rbl.cc' || echo './'`operators/rbl.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-rbl.lo -MD -MP -MF operators/.deps/libmodsecurity_la-rbl.Tpo -c operators/rbl.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-rbl.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-rbl.lo -MD -MP -MF operators/.deps/libmodsecurity_la-rbl.Tpo -c operators/rbl.cc -o operators/libmodsecurity_la-rbl.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-rbl.Tpo operators/.deps/libmodsecurity_la-rbl.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-rsub.lo -MD -MP -MF operators/.deps/libmodsecurity_la-rsub.Tpo -c -o operators/libmodsecurity_la-rsub.lo `test -f 'operators/rsub.cc' || echo './'`operators/rsub.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-rsub.lo -MD -MP -MF operators/.deps/libmodsecurity_la-rsub.Tpo -c operators/rsub.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-rsub.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-rsub.lo -MD -MP -MF operators/.deps/libmodsecurity_la-rsub.Tpo -c operators/rsub.cc -o operators/libmodsecurity_la-rsub.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-rsub.Tpo operators/.deps/libmodsecurity_la-rsub.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-rx.lo -MD -MP -MF operators/.deps/libmodsecurity_la-rx.Tpo -c -o operators/libmodsecurity_la-rx.lo `test -f 'operators/rx.cc' || echo './'`operators/rx.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-rx.lo -MD -MP -MF operators/.deps/libmodsecurity_la-rx.Tpo -c operators/rx.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-rx.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-rx.lo -MD -MP -MF operators/.deps/libmodsecurity_la-rx.Tpo -c operators/rx.cc -o operators/libmodsecurity_la-rx.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-rx.Tpo operators/.deps/libmodsecurity_la-rx.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-rx_global.lo -MD -MP -MF operators/.deps/libmodsecurity_la-rx_global.Tpo -c -o operators/libmodsecurity_la-rx_global.lo `test -f 'operators/rx_global.cc' || echo './'`operators/rx_global.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-rx_global.lo -MD -MP -MF operators/.deps/libmodsecurity_la-rx_global.Tpo -c operators/rx_global.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-rx_global.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-rx_global.lo -MD -MP -MF operators/.deps/libmodsecurity_la-rx_global.Tpo -c operators/rx_global.cc -o operators/libmodsecurity_la-rx_global.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-rx_global.Tpo operators/.deps/libmodsecurity_la-rx_global.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-str_eq.lo -MD -MP -MF operators/.deps/libmodsecurity_la-str_eq.Tpo -c -o operators/libmodsecurity_la-str_eq.lo `test -f 'operators/str_eq.cc' || echo './'`operators/str_eq.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-str_eq.lo -MD -MP -MF operators/.deps/libmodsecurity_la-str_eq.Tpo -c operators/str_eq.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-str_eq.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-str_eq.lo -MD -MP -MF operators/.deps/libmodsecurity_la-str_eq.Tpo -c operators/str_eq.cc -o operators/libmodsecurity_la-str_eq.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-str_eq.Tpo operators/.deps/libmodsecurity_la-str_eq.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-str_match.lo -MD -MP -MF operators/.deps/libmodsecurity_la-str_match.Tpo -c -o operators/libmodsecurity_la-str_match.lo `test -f 'operators/str_match.cc' || echo './'`operators/str_match.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-str_match.lo -MD -MP -MF operators/.deps/libmodsecurity_la-str_match.Tpo -c operators/str_match.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-str_match.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-str_match.lo -MD -MP -MF operators/.deps/libmodsecurity_la-str_match.Tpo -c operators/str_match.cc -o operators/libmodsecurity_la-str_match.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-str_match.Tpo operators/.deps/libmodsecurity_la-str_match.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-validate_byte_range.lo -MD -MP -MF operators/.deps/libmodsecurity_la-validate_byte_range.Tpo -c -o operators/libmodsecurity_la-validate_byte_range.lo `test -f 'operators/validate_byte_range.cc' || echo './'`operators/validate_byte_range.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-validate_byte_range.lo -MD -MP -MF operators/.deps/libmodsecurity_la-validate_byte_range.Tpo -c operators/validate_byte_range.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-validate_byte_range.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-validate_byte_range.lo -MD -MP -MF operators/.deps/libmodsecurity_la-validate_byte_range.Tpo -c operators/validate_byte_range.cc -o operators/libmodsecurity_la-validate_byte_range.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-validate_byte_range.Tpo operators/.deps/libmodsecurity_la-validate_byte_range.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-validate_dtd.lo -MD -MP -MF operators/.deps/libmodsecurity_la-validate_dtd.Tpo -c -o operators/libmodsecurity_la-validate_dtd.lo `test -f 'operators/validate_dtd.cc' || echo './'`operators/validate_dtd.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-validate_dtd.lo -MD -MP -MF operators/.deps/libmodsecurity_la-validate_dtd.Tpo -c operators/validate_dtd.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-validate_dtd.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-validate_dtd.lo -MD -MP -MF operators/.deps/libmodsecurity_la-validate_dtd.Tpo -c operators/validate_dtd.cc -o operators/libmodsecurity_la-validate_dtd.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-validate_dtd.Tpo operators/.deps/libmodsecurity_la-validate_dtd.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-validate_hash.lo -MD -MP -MF operators/.deps/libmodsecurity_la-validate_hash.Tpo -c -o operators/libmodsecurity_la-validate_hash.lo `test -f 'operators/validate_hash.cc' || echo './'`operators/validate_hash.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-validate_hash.lo -MD -MP -MF operators/.deps/libmodsecurity_la-validate_hash.Tpo -c operators/validate_hash.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-validate_hash.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-validate_hash.lo -MD -MP -MF operators/.deps/libmodsecurity_la-validate_hash.Tpo -c operators/validate_hash.cc -o operators/libmodsecurity_la-validate_hash.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-validate_hash.Tpo operators/.deps/libmodsecurity_la-validate_hash.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-validate_schema.lo -MD -MP -MF operators/.deps/libmodsecurity_la-validate_schema.Tpo -c -o operators/libmodsecurity_la-validate_schema.lo `test -f 'operators/validate_schema.cc' || echo './'`operators/validate_schema.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-validate_schema.lo -MD -MP -MF operators/.deps/libmodsecurity_la-validate_schema.Tpo -c operators/validate_schema.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-validate_schema.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-validate_schema.lo -MD -MP -MF operators/.deps/libmodsecurity_la-validate_schema.Tpo -c operators/validate_schema.cc -o operators/libmodsecurity_la-validate_schema.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-validate_schema.Tpo operators/.deps/libmodsecurity_la-validate_schema.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-validate_url_encoding.lo -MD -MP -MF operators/.deps/libmodsecurity_la-validate_url_encoding.Tpo -c -o operators/libmodsecurity_la-validate_url_encoding.lo `test -f 'operators/validate_url_encoding.cc' || echo './'`operators/validate_url_encoding.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-validate_url_encoding.lo -MD -MP -MF operators/.deps/libmodsecurity_la-validate_url_encoding.Tpo -c operators/validate_url_encoding.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-validate_url_encoding.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-validate_url_encoding.lo -MD -MP -MF operators/.deps/libmodsecurity_la-validate_url_encoding.Tpo -c operators/validate_url_encoding.cc -o operators/libmodsecurity_la-validate_url_encoding.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-validate_url_encoding.Tpo operators/.deps/libmodsecurity_la-validate_url_encoding.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-validate_utf8_encoding.lo -MD -MP -MF operators/.deps/libmodsecurity_la-validate_utf8_encoding.Tpo -c -o operators/libmodsecurity_la-validate_utf8_encoding.lo `test -f 'operators/validate_utf8_encoding.cc' || echo './'`operators/validate_utf8_encoding.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-validate_utf8_encoding.lo -MD -MP -MF operators/.deps/libmodsecurity_la-validate_utf8_encoding.Tpo -c operators/validate_utf8_encoding.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-validate_utf8_encoding.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-validate_utf8_encoding.lo -MD -MP -MF operators/.deps/libmodsecurity_la-validate_utf8_encoding.Tpo -c operators/validate_utf8_encoding.cc -o operators/libmodsecurity_la-validate_utf8_encoding.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-validate_utf8_encoding.Tpo operators/.deps/libmodsecurity_la-validate_utf8_encoding.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-verify_cc.lo -MD -MP -MF operators/.deps/libmodsecurity_la-verify_cc.Tpo -c -o operators/libmodsecurity_la-verify_cc.lo `test -f 'operators/verify_cc.cc' || echo './'`operators/verify_cc.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-verify_cc.lo -MD -MP -MF operators/.deps/libmodsecurity_la-verify_cc.Tpo -c operators/verify_cc.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-verify_cc.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-verify_cc.lo -MD -MP -MF operators/.deps/libmodsecurity_la-verify_cc.Tpo -c operators/verify_cc.cc -o operators/libmodsecurity_la-verify_cc.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-verify_cc.Tpo operators/.deps/libmodsecurity_la-verify_cc.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-verify_cpf.lo -MD -MP -MF operators/.deps/libmodsecurity_la-verify_cpf.Tpo -c -o operators/libmodsecurity_la-verify_cpf.lo `test -f 'operators/verify_cpf.cc' || echo './'`operators/verify_cpf.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-verify_cpf.lo -MD -MP -MF operators/.deps/libmodsecurity_la-verify_cpf.Tpo -c operators/verify_cpf.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-verify_cpf.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-verify_cpf.lo -MD -MP -MF operators/.deps/libmodsecurity_la-verify_cpf.Tpo -c operators/verify_cpf.cc -o operators/libmodsecurity_la-verify_cpf.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-verify_cpf.Tpo operators/.deps/libmodsecurity_la-verify_cpf.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-verify_ssn.lo -MD -MP -MF operators/.deps/libmodsecurity_la-verify_ssn.Tpo -c -o operators/libmodsecurity_la-verify_ssn.lo `test -f 'operators/verify_ssn.cc' || echo './'`operators/verify_ssn.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-verify_ssn.lo -MD -MP -MF operators/.deps/libmodsecurity_la-verify_ssn.Tpo -c operators/verify_ssn.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-verify_ssn.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-verify_ssn.lo -MD -MP -MF operators/.deps/libmodsecurity_la-verify_ssn.Tpo -c operators/verify_ssn.cc -o operators/libmodsecurity_la-verify_ssn.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-verify_ssn.Tpo operators/.deps/libmodsecurity_la-verify_ssn.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-verify_svnr.lo -MD -MP -MF operators/.deps/libmodsecurity_la-verify_svnr.Tpo -c -o operators/libmodsecurity_la-verify_svnr.lo `test -f 'operators/verify_svnr.cc' || echo './'`operators/verify_svnr.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-verify_svnr.lo -MD -MP -MF operators/.deps/libmodsecurity_la-verify_svnr.Tpo -c operators/verify_svnr.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-verify_svnr.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-verify_svnr.lo -MD -MP -MF operators/.deps/libmodsecurity_la-verify_svnr.Tpo -c operators/verify_svnr.cc -o operators/libmodsecurity_la-verify_svnr.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-verify_svnr.Tpo operators/.deps/libmodsecurity_la-verify_svnr.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-within.lo -MD -MP -MF operators/.deps/libmodsecurity_la-within.Tpo -c -o operators/libmodsecurity_la-within.lo `test -f 'operators/within.cc' || echo './'`operators/within.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-within.lo -MD -MP -MF operators/.deps/libmodsecurity_la-within.Tpo -c operators/within.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-within.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-within.lo -MD -MP -MF operators/.deps/libmodsecurity_la-within.Tpo -c operators/within.cc -o operators/libmodsecurity_la-within.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-within.Tpo operators/.deps/libmodsecurity_la-within.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT operators/libmodsecurity_la-unconditional_match.lo -MD -MP -MF operators/.deps/libmodsecurity_la-unconditional_match.Tpo -c -o operators/libmodsecurity_la-unconditional_match.lo `test -f 'operators/unconditional_match.cc' || echo './'`operators/unconditional_match.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-unconditional_match.lo -MD -MP -MF operators/.deps/libmodsecurity_la-unconditional_match.Tpo -c operators/unconditional_match.cc  -fPIC -DPIC -o operators/.libs/libmodsecurity_la-unconditional_match.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT operators/libmodsecurity_la-unconditional_match.lo -MD -MP -MF operators/.deps/libmodsecurity_la-unconditional_match.Tpo -c operators/unconditional_match.cc -o operators/libmodsecurity_la-unconditional_match.o >/dev/null 2>&1
mv -f operators/.deps/libmodsecurity_la-unconditional_match.Tpo operators/.deps/libmodsecurity_la-unconditional_match.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT utils/libmodsecurity_la-acmp.lo -MD -MP -MF utils/.deps/libmodsecurity_la-acmp.Tpo -c -o utils/libmodsecurity_la-acmp.lo `test -f 'utils/acmp.cc' || echo './'`utils/acmp.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT utils/libmodsecurity_la-acmp.lo -MD -MP -MF utils/.deps/libmodsecurity_la-acmp.Tpo -c utils/acmp.cc  -fPIC -DPIC -o utils/.libs/libmodsecurity_la-acmp.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT utils/libmodsecurity_la-acmp.lo -MD -MP -MF utils/.deps/libmodsecurity_la-acmp.Tpo -c utils/acmp.cc -o utils/libmodsecurity_la-acmp.o >/dev/null 2>&1
mv -f utils/.deps/libmodsecurity_la-acmp.Tpo utils/.deps/libmodsecurity_la-acmp.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT utils/libmodsecurity_la-base64.lo -MD -MP -MF utils/.deps/libmodsecurity_la-base64.Tpo -c -o utils/libmodsecurity_la-base64.lo `test -f 'utils/base64.cc' || echo './'`utils/base64.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT utils/libmodsecurity_la-base64.lo -MD -MP -MF utils/.deps/libmodsecurity_la-base64.Tpo -c utils/base64.cc  -fPIC -DPIC -o utils/.libs/libmodsecurity_la-base64.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT utils/libmodsecurity_la-base64.lo -MD -MP -MF utils/.deps/libmodsecurity_la-base64.Tpo -c utils/base64.cc -o utils/libmodsecurity_la-base64.o >/dev/null 2>&1
mv -f utils/.deps/libmodsecurity_la-base64.Tpo utils/.deps/libmodsecurity_la-base64.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT utils/libmodsecurity_la-decode.lo -MD -MP -MF utils/.deps/libmodsecurity_la-decode.Tpo -c -o utils/libmodsecurity_la-decode.lo `test -f 'utils/decode.cc' || echo './'`utils/decode.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT utils/libmodsecurity_la-decode.lo -MD -MP -MF utils/.deps/libmodsecurity_la-decode.Tpo -c utils/decode.cc  -fPIC -DPIC -o utils/.libs/libmodsecurity_la-decode.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT utils/libmodsecurity_la-decode.lo -MD -MP -MF utils/.deps/libmodsecurity_la-decode.Tpo -c utils/decode.cc -o utils/libmodsecurity_la-decode.o >/dev/null 2>&1
mv -f utils/.deps/libmodsecurity_la-decode.Tpo utils/.deps/libmodsecurity_la-decode.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT utils/libmodsecurity_la-geo_lookup.lo -MD -MP -MF utils/.deps/libmodsecurity_la-geo_lookup.Tpo -c -o utils/libmodsecurity_la-geo_lookup.lo `test -f 'utils/geo_lookup.cc' || echo './'`utils/geo_lookup.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT utils/libmodsecurity_la-geo_lookup.lo -MD -MP -MF utils/.deps/libmodsecurity_la-geo_lookup.Tpo -c utils/geo_lookup.cc  -fPIC -DPIC -o utils/.libs/libmodsecurity_la-geo_lookup.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT utils/libmodsecurity_la-geo_lookup.lo -MD -MP -MF utils/.deps/libmodsecurity_la-geo_lookup.Tpo -c utils/geo_lookup.cc -o utils/libmodsecurity_la-geo_lookup.o >/dev/null 2>&1
mv -f utils/.deps/libmodsecurity_la-geo_lookup.Tpo utils/.deps/libmodsecurity_la-geo_lookup.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT utils/libmodsecurity_la-https_client.lo -MD -MP -MF utils/.deps/libmodsecurity_la-https_client.Tpo -c -o utils/libmodsecurity_la-https_client.lo `test -f 'utils/https_client.cc' || echo './'`utils/https_client.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT utils/libmodsecurity_la-https_client.lo -MD -MP -MF utils/.deps/libmodsecurity_la-https_client.Tpo -c utils/https_client.cc  -fPIC -DPIC -o utils/.libs/libmodsecurity_la-https_client.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT utils/libmodsecurity_la-https_client.lo -MD -MP -MF utils/.deps/libmodsecurity_la-https_client.Tpo -c utils/https_client.cc -o utils/libmodsecurity_la-https_client.o >/dev/null 2>&1
mv -f utils/.deps/libmodsecurity_la-https_client.Tpo utils/.deps/libmodsecurity_la-https_client.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT utils/libmodsecurity_la-ip_tree.lo -MD -MP -MF utils/.deps/libmodsecurity_la-ip_tree.Tpo -c -o utils/libmodsecurity_la-ip_tree.lo `test -f 'utils/ip_tree.cc' || echo './'`utils/ip_tree.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT utils/libmodsecurity_la-ip_tree.lo -MD -MP -MF utils/.deps/libmodsecurity_la-ip_tree.Tpo -c utils/ip_tree.cc  -fPIC -DPIC -o utils/.libs/libmodsecurity_la-ip_tree.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT utils/libmodsecurity_la-ip_tree.lo -MD -MP -MF utils/.deps/libmodsecurity_la-ip_tree.Tpo -c utils/ip_tree.cc -o utils/libmodsecurity_la-ip_tree.o >/dev/null 2>&1
mv -f utils/.deps/libmodsecurity_la-ip_tree.Tpo utils/.deps/libmodsecurity_la-ip_tree.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT utils/libmodsecurity_la-md5.lo -MD -MP -MF utils/.deps/libmodsecurity_la-md5.Tpo -c -o utils/libmodsecurity_la-md5.lo `test -f 'utils/md5.cc' || echo './'`utils/md5.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT utils/libmodsecurity_la-md5.lo -MD -MP -MF utils/.deps/libmodsecurity_la-md5.Tpo -c utils/md5.cc  -fPIC -DPIC -o utils/.libs/libmodsecurity_la-md5.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT utils/libmodsecurity_la-md5.lo -MD -MP -MF utils/.deps/libmodsecurity_la-md5.Tpo -c utils/md5.cc -o utils/libmodsecurity_la-md5.o >/dev/null 2>&1
mv -f utils/.deps/libmodsecurity_la-md5.Tpo utils/.deps/libmodsecurity_la-md5.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT utils/libmodsecurity_la-msc_tree.lo -MD -MP -MF utils/.deps/libmodsecurity_la-msc_tree.Tpo -c -o utils/libmodsecurity_la-msc_tree.lo `test -f 'utils/msc_tree.cc' || echo './'`utils/msc_tree.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT utils/libmodsecurity_la-msc_tree.lo -MD -MP -MF utils/.deps/libmodsecurity_la-msc_tree.Tpo -c utils/msc_tree.cc  -fPIC -DPIC -o utils/.libs/libmodsecurity_la-msc_tree.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT utils/libmodsecurity_la-msc_tree.lo -MD -MP -MF utils/.deps/libmodsecurity_la-msc_tree.Tpo -c utils/msc_tree.cc -o utils/libmodsecurity_la-msc_tree.o >/dev/null 2>&1
mv -f utils/.deps/libmodsecurity_la-msc_tree.Tpo utils/.deps/libmodsecurity_la-msc_tree.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT utils/libmodsecurity_la-random.lo -MD -MP -MF utils/.deps/libmodsecurity_la-random.Tpo -c -o utils/libmodsecurity_la-random.lo `test -f 'utils/random.cc' || echo './'`utils/random.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT utils/libmodsecurity_la-random.lo -MD -MP -MF utils/.deps/libmodsecurity_la-random.Tpo -c utils/random.cc  -fPIC -DPIC -o utils/.libs/libmodsecurity_la-random.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT utils/libmodsecurity_la-random.lo -MD -MP -MF utils/.deps/libmodsecurity_la-random.Tpo -c utils/random.cc -o utils/libmodsecurity_la-random.o >/dev/null 2>&1
mv -f utils/.deps/libmodsecurity_la-random.Tpo utils/.deps/libmodsecurity_la-random.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT utils/libmodsecurity_la-regex.lo -MD -MP -MF utils/.deps/libmodsecurity_la-regex.Tpo -c -o utils/libmodsecurity_la-regex.lo `test -f 'utils/regex.cc' || echo './'`utils/regex.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT utils/libmodsecurity_la-regex.lo -MD -MP -MF utils/.deps/libmodsecurity_la-regex.Tpo -c utils/regex.cc  -fPIC -DPIC -o utils/.libs/libmodsecurity_la-regex.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT utils/libmodsecurity_la-regex.lo -MD -MP -MF utils/.deps/libmodsecurity_la-regex.Tpo -c utils/regex.cc -o utils/libmodsecurity_la-regex.o >/dev/null 2>&1
mv -f utils/.deps/libmodsecurity_la-regex.Tpo utils/.deps/libmodsecurity_la-regex.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT utils/libmodsecurity_la-sha1.lo -MD -MP -MF utils/.deps/libmodsecurity_la-sha1.Tpo -c -o utils/libmodsecurity_la-sha1.lo `test -f 'utils/sha1.cc' || echo './'`utils/sha1.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT utils/libmodsecurity_la-sha1.lo -MD -MP -MF utils/.deps/libmodsecurity_la-sha1.Tpo -c utils/sha1.cc  -fPIC -DPIC -o utils/.libs/libmodsecurity_la-sha1.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT utils/libmodsecurity_la-sha1.lo -MD -MP -MF utils/.deps/libmodsecurity_la-sha1.Tpo -c utils/sha1.cc -o utils/libmodsecurity_la-sha1.o >/dev/null 2>&1
mv -f utils/.deps/libmodsecurity_la-sha1.Tpo utils/.deps/libmodsecurity_la-sha1.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT utils/libmodsecurity_la-string.lo -MD -MP -MF utils/.deps/libmodsecurity_la-string.Tpo -c -o utils/libmodsecurity_la-string.lo `test -f 'utils/string.cc' || echo './'`utils/string.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT utils/libmodsecurity_la-string.lo -MD -MP -MF utils/.deps/libmodsecurity_la-string.Tpo -c utils/string.cc  -fPIC -DPIC -o utils/.libs/libmodsecurity_la-string.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT utils/libmodsecurity_la-string.lo -MD -MP -MF utils/.deps/libmodsecurity_la-string.Tpo -c utils/string.cc -o utils/libmodsecurity_la-string.o >/dev/null 2>&1
mv -f utils/.deps/libmodsecurity_la-string.Tpo utils/.deps/libmodsecurity_la-string.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT utils/libmodsecurity_la-system.lo -MD -MP -MF utils/.deps/libmodsecurity_la-system.Tpo -c -o utils/libmodsecurity_la-system.lo `test -f 'utils/system.cc' || echo './'`utils/system.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT utils/libmodsecurity_la-system.lo -MD -MP -MF utils/.deps/libmodsecurity_la-system.Tpo -c utils/system.cc  -fPIC -DPIC -o utils/.libs/libmodsecurity_la-system.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT utils/libmodsecurity_la-system.lo -MD -MP -MF utils/.deps/libmodsecurity_la-system.Tpo -c utils/system.cc -o utils/libmodsecurity_la-system.o >/dev/null 2>&1
mv -f utils/.deps/libmodsecurity_la-system.Tpo utils/.deps/libmodsecurity_la-system.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT utils/libmodsecurity_la-shared_files.lo -MD -MP -MF utils/.deps/libmodsecurity_la-shared_files.Tpo -c -o utils/libmodsecurity_la-shared_files.lo `test -f 'utils/shared_files.cc' || echo './'`utils/shared_files.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT utils/libmodsecurity_la-shared_files.lo -MD -MP -MF utils/.deps/libmodsecurity_la-shared_files.Tpo -c utils/shared_files.cc  -fPIC -DPIC -o utils/.libs/libmodsecurity_la-shared_files.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT utils/libmodsecurity_la-shared_files.lo -MD -MP -MF utils/.deps/libmodsecurity_la-shared_files.Tpo -c utils/shared_files.cc -o utils/libmodsecurity_la-shared_files.o >/dev/null 2>&1
mv -f utils/.deps/libmodsecurity_la-shared_files.Tpo utils/.deps/libmodsecurity_la-shared_files.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT variables/libmodsecurity_la-duration.lo -MD -MP -MF variables/.deps/libmodsecurity_la-duration.Tpo -c -o variables/libmodsecurity_la-duration.lo `test -f 'variables/duration.cc' || echo './'`variables/duration.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-duration.lo -MD -MP -MF variables/.deps/libmodsecurity_la-duration.Tpo -c variables/duration.cc  -fPIC -DPIC -o variables/.libs/libmodsecurity_la-duration.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-duration.lo -MD -MP -MF variables/.deps/libmodsecurity_la-duration.Tpo -c variables/duration.cc -o variables/libmodsecurity_la-duration.o >/dev/null 2>&1
mv -f variables/.deps/libmodsecurity_la-duration.Tpo variables/.deps/libmodsecurity_la-duration.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT variables/libmodsecurity_la-env.lo -MD -MP -MF variables/.deps/libmodsecurity_la-env.Tpo -c -o variables/libmodsecurity_la-env.lo `test -f 'variables/env.cc' || echo './'`variables/env.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-env.lo -MD -MP -MF variables/.deps/libmodsecurity_la-env.Tpo -c variables/env.cc  -fPIC -DPIC -o variables/.libs/libmodsecurity_la-env.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-env.lo -MD -MP -MF variables/.deps/libmodsecurity_la-env.Tpo -c variables/env.cc -o variables/libmodsecurity_la-env.o >/dev/null 2>&1
mv -f variables/.deps/libmodsecurity_la-env.Tpo variables/.deps/libmodsecurity_la-env.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT variables/libmodsecurity_la-highest_severity.lo -MD -MP -MF variables/.deps/libmodsecurity_la-highest_severity.Tpo -c -o variables/libmodsecurity_la-highest_severity.lo `test -f 'variables/highest_severity.cc' || echo './'`variables/highest_severity.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-highest_severity.lo -MD -MP -MF variables/.deps/libmodsecurity_la-highest_severity.Tpo -c variables/highest_severity.cc  -fPIC -DPIC -o variables/.libs/libmodsecurity_la-highest_severity.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-highest_severity.lo -MD -MP -MF variables/.deps/libmodsecurity_la-highest_severity.Tpo -c variables/highest_severity.cc -o variables/libmodsecurity_la-highest_severity.o >/dev/null 2>&1
mv -f variables/.deps/libmodsecurity_la-highest_severity.Tpo variables/.deps/libmodsecurity_la-highest_severity.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT variables/libmodsecurity_la-modsec_build.lo -MD -MP -MF variables/.deps/libmodsecurity_la-modsec_build.Tpo -c -o variables/libmodsecurity_la-modsec_build.lo `test -f 'variables/modsec_build.cc' || echo './'`variables/modsec_build.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-modsec_build.lo -MD -MP -MF variables/.deps/libmodsecurity_la-modsec_build.Tpo -c variables/modsec_build.cc  -fPIC -DPIC -o variables/.libs/libmodsecurity_la-modsec_build.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-modsec_build.lo -MD -MP -MF variables/.deps/libmodsecurity_la-modsec_build.Tpo -c variables/modsec_build.cc -o variables/libmodsecurity_la-modsec_build.o >/dev/null 2>&1
mv -f variables/.deps/libmodsecurity_la-modsec_build.Tpo variables/.deps/libmodsecurity_la-modsec_build.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT variables/libmodsecurity_la-remote_user.lo -MD -MP -MF variables/.deps/libmodsecurity_la-remote_user.Tpo -c -o variables/libmodsecurity_la-remote_user.lo `test -f 'variables/remote_user.cc' || echo './'`variables/remote_user.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-remote_user.lo -MD -MP -MF variables/.deps/libmodsecurity_la-remote_user.Tpo -c variables/remote_user.cc  -fPIC -DPIC -o variables/.libs/libmodsecurity_la-remote_user.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-remote_user.lo -MD -MP -MF variables/.deps/libmodsecurity_la-remote_user.Tpo -c variables/remote_user.cc -o variables/libmodsecurity_la-remote_user.o >/dev/null 2>&1
mv -f variables/.deps/libmodsecurity_la-remote_user.Tpo variables/.deps/libmodsecurity_la-remote_user.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT variables/libmodsecurity_la-rule.lo -MD -MP -MF variables/.deps/libmodsecurity_la-rule.Tpo -c -o variables/libmodsecurity_la-rule.lo `test -f 'variables/rule.cc' || echo './'`variables/rule.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-rule.lo -MD -MP -MF variables/.deps/libmodsecurity_la-rule.Tpo -c variables/rule.cc  -fPIC -DPIC -o variables/.libs/libmodsecurity_la-rule.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-rule.lo -MD -MP -MF variables/.deps/libmodsecurity_la-rule.Tpo -c variables/rule.cc -o variables/libmodsecurity_la-rule.o >/dev/null 2>&1
mv -f variables/.deps/libmodsecurity_la-rule.Tpo variables/.deps/libmodsecurity_la-rule.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT variables/libmodsecurity_la-time.lo -MD -MP -MF variables/.deps/libmodsecurity_la-time.Tpo -c -o variables/libmodsecurity_la-time.lo `test -f 'variables/time.cc' || echo './'`variables/time.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-time.lo -MD -MP -MF variables/.deps/libmodsecurity_la-time.Tpo -c variables/time.cc  -fPIC -DPIC -o variables/.libs/libmodsecurity_la-time.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-time.lo -MD -MP -MF variables/.deps/libmodsecurity_la-time.Tpo -c variables/time.cc -o variables/libmodsecurity_la-time.o >/dev/null 2>&1
mv -f variables/.deps/libmodsecurity_la-time.Tpo variables/.deps/libmodsecurity_la-time.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT variables/libmodsecurity_la-time_day.lo -MD -MP -MF variables/.deps/libmodsecurity_la-time_day.Tpo -c -o variables/libmodsecurity_la-time_day.lo `test -f 'variables/time_day.cc' || echo './'`variables/time_day.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-time_day.lo -MD -MP -MF variables/.deps/libmodsecurity_la-time_day.Tpo -c variables/time_day.cc  -fPIC -DPIC -o variables/.libs/libmodsecurity_la-time_day.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-time_day.lo -MD -MP -MF variables/.deps/libmodsecurity_la-time_day.Tpo -c variables/time_day.cc -o variables/libmodsecurity_la-time_day.o >/dev/null 2>&1
mv -f variables/.deps/libmodsecurity_la-time_day.Tpo variables/.deps/libmodsecurity_la-time_day.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT variables/libmodsecurity_la-time_epoch.lo -MD -MP -MF variables/.deps/libmodsecurity_la-time_epoch.Tpo -c -o variables/libmodsecurity_la-time_epoch.lo `test -f 'variables/time_epoch.cc' || echo './'`variables/time_epoch.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-time_epoch.lo -MD -MP -MF variables/.deps/libmodsecurity_la-time_epoch.Tpo -c variables/time_epoch.cc  -fPIC -DPIC -o variables/.libs/libmodsecurity_la-time_epoch.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-time_epoch.lo -MD -MP -MF variables/.deps/libmodsecurity_la-time_epoch.Tpo -c variables/time_epoch.cc -o variables/libmodsecurity_la-time_epoch.o >/dev/null 2>&1
mv -f variables/.deps/libmodsecurity_la-time_epoch.Tpo variables/.deps/libmodsecurity_la-time_epoch.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT variables/libmodsecurity_la-time_hour.lo -MD -MP -MF variables/.deps/libmodsecurity_la-time_hour.Tpo -c -o variables/libmodsecurity_la-time_hour.lo `test -f 'variables/time_hour.cc' || echo './'`variables/time_hour.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-time_hour.lo -MD -MP -MF variables/.deps/libmodsecurity_la-time_hour.Tpo -c variables/time_hour.cc  -fPIC -DPIC -o variables/.libs/libmodsecurity_la-time_hour.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-time_hour.lo -MD -MP -MF variables/.deps/libmodsecurity_la-time_hour.Tpo -c variables/time_hour.cc -o variables/libmodsecurity_la-time_hour.o >/dev/null 2>&1
mv -f variables/.deps/libmodsecurity_la-time_hour.Tpo variables/.deps/libmodsecurity_la-time_hour.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT variables/libmodsecurity_la-time_min.lo -MD -MP -MF variables/.deps/libmodsecurity_la-time_min.Tpo -c -o variables/libmodsecurity_la-time_min.lo `test -f 'variables/time_min.cc' || echo './'`variables/time_min.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-time_min.lo -MD -MP -MF variables/.deps/libmodsecurity_la-time_min.Tpo -c variables/time_min.cc  -fPIC -DPIC -o variables/.libs/libmodsecurity_la-time_min.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-time_min.lo -MD -MP -MF variables/.deps/libmodsecurity_la-time_min.Tpo -c variables/time_min.cc -o variables/libmodsecurity_la-time_min.o >/dev/null 2>&1
mv -f variables/.deps/libmodsecurity_la-time_min.Tpo variables/.deps/libmodsecurity_la-time_min.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT variables/libmodsecurity_la-time_mon.lo -MD -MP -MF variables/.deps/libmodsecurity_la-time_mon.Tpo -c -o variables/libmodsecurity_la-time_mon.lo `test -f 'variables/time_mon.cc' || echo './'`variables/time_mon.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-time_mon.lo -MD -MP -MF variables/.deps/libmodsecurity_la-time_mon.Tpo -c variables/time_mon.cc  -fPIC -DPIC -o variables/.libs/libmodsecurity_la-time_mon.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-time_mon.lo -MD -MP -MF variables/.deps/libmodsecurity_la-time_mon.Tpo -c variables/time_mon.cc -o variables/libmodsecurity_la-time_mon.o >/dev/null 2>&1
mv -f variables/.deps/libmodsecurity_la-time_mon.Tpo variables/.deps/libmodsecurity_la-time_mon.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT variables/libmodsecurity_la-time_sec.lo -MD -MP -MF variables/.deps/libmodsecurity_la-time_sec.Tpo -c -o variables/libmodsecurity_la-time_sec.lo `test -f 'variables/time_sec.cc' || echo './'`variables/time_sec.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-time_sec.lo -MD -MP -MF variables/.deps/libmodsecurity_la-time_sec.Tpo -c variables/time_sec.cc  -fPIC -DPIC -o variables/.libs/libmodsecurity_la-time_sec.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-time_sec.lo -MD -MP -MF variables/.deps/libmodsecurity_la-time_sec.Tpo -c variables/time_sec.cc -o variables/libmodsecurity_la-time_sec.o >/dev/null 2>&1
mv -f variables/.deps/libmodsecurity_la-time_sec.Tpo variables/.deps/libmodsecurity_la-time_sec.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT variables/libmodsecurity_la-time_wday.lo -MD -MP -MF variables/.deps/libmodsecurity_la-time_wday.Tpo -c -o variables/libmodsecurity_la-time_wday.lo `test -f 'variables/time_wday.cc' || echo './'`variables/time_wday.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-time_wday.lo -MD -MP -MF variables/.deps/libmodsecurity_la-time_wday.Tpo -c variables/time_wday.cc  -fPIC -DPIC -o variables/.libs/libmodsecurity_la-time_wday.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-time_wday.lo -MD -MP -MF variables/.deps/libmodsecurity_la-time_wday.Tpo -c variables/time_wday.cc -o variables/libmodsecurity_la-time_wday.o >/dev/null 2>&1
mv -f variables/.deps/libmodsecurity_la-time_wday.Tpo variables/.deps/libmodsecurity_la-time_wday.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT variables/libmodsecurity_la-time_year.lo -MD -MP -MF variables/.deps/libmodsecurity_la-time_year.Tpo -c -o variables/libmodsecurity_la-time_year.lo `test -f 'variables/time_year.cc' || echo './'`variables/time_year.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-time_year.lo -MD -MP -MF variables/.deps/libmodsecurity_la-time_year.Tpo -c variables/time_year.cc  -fPIC -DPIC -o variables/.libs/libmodsecurity_la-time_year.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-time_year.lo -MD -MP -MF variables/.deps/libmodsecurity_la-time_year.Tpo -c variables/time_year.cc -o variables/libmodsecurity_la-time_year.o >/dev/null 2>&1
mv -f variables/.deps/libmodsecurity_la-time_year.Tpo variables/.deps/libmodsecurity_la-time_year.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT variables/libmodsecurity_la-tx.lo -MD -MP -MF variables/.deps/libmodsecurity_la-tx.Tpo -c -o variables/libmodsecurity_la-tx.lo `test -f 'variables/tx.cc' || echo './'`variables/tx.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-tx.lo -MD -MP -MF variables/.deps/libmodsecurity_la-tx.Tpo -c variables/tx.cc  -fPIC -DPIC -o variables/.libs/libmodsecurity_la-tx.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-tx.lo -MD -MP -MF variables/.deps/libmodsecurity_la-tx.Tpo -c variables/tx.cc -o variables/libmodsecurity_la-tx.o >/dev/null 2>&1
mv -f variables/.deps/libmodsecurity_la-tx.Tpo variables/.deps/libmodsecurity_la-tx.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT variables/libmodsecurity_la-variable.lo -MD -MP -MF variables/.deps/libmodsecurity_la-variable.Tpo -c -o variables/libmodsecurity_la-variable.lo `test -f 'variables/variable.cc' || echo './'`variables/variable.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-variable.lo -MD -MP -MF variables/.deps/libmodsecurity_la-variable.Tpo -c variables/variable.cc  -fPIC -DPIC -o variables/.libs/libmodsecurity_la-variable.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-variable.lo -MD -MP -MF variables/.deps/libmodsecurity_la-variable.Tpo -c variables/variable.cc -o variables/libmodsecurity_la-variable.o >/dev/null 2>&1
mv -f variables/.deps/libmodsecurity_la-variable.Tpo variables/.deps/libmodsecurity_la-variable.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers        -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include      -g -O2 -MT variables/libmodsecurity_la-xml.lo -MD -MP -MF variables/.deps/libmodsecurity_la-xml.Tpo -c -o variables/libmodsecurity_la-xml.lo `test -f 'variables/xml.cc' || echo './'`variables/xml.cc
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-xml.lo -MD -MP -MF variables/.deps/libmodsecurity_la-xml.Tpo -c variables/xml.cc  -fPIC -DPIC -o variables/.libs/libmodsecurity_la-xml.o
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -std=c++11 -I.. -g -I../others -fPIC -O3 -I../headers -DPCRE_HAVE_JIT -DWITH_SSDEEP -I/usr/local/include -g -O2 -MT variables/libmodsecurity_la-xml.lo -MD -MP -MF variables/.deps/libmodsecurity_la-xml.Tpo -c variables/xml.cc -o variables/libmodsecurity_la-xml.o >/dev/null 2>&1
mv -f variables/.deps/libmodsecurity_la-xml.Tpo variables/.deps/libmodsecurity_la-xml.Plo
/bin/sh ../libtool  --tag=CXX   --mode=link g++  -g -O2         -L/usr/local/lib/   -version-info 3:6:0  -o libmodsecurity.la -rpath /usr/local/modsecurity/lib parser/libmodsecurity_la-seclang-parser.lo parser/libmodsecurity_la-seclang-scanner.lo parser/libmodsecurity_la-driver.lo libmodsecurity_la-transaction.lo libmodsecurity_la-anchored_set_variable.lo libmodsecurity_la-anchored_variable.lo audit_log/libmodsecurity_la-audit_log.lo audit_log/writer/libmodsecurity_la-writer.lo audit_log/writer/libmodsecurity_la-https.lo audit_log/writer/libmodsecurity_la-serial.lo audit_log/writer/libmodsecurity_la-parallel.lo libmodsecurity_la-modsecurity.lo libmodsecurity_la-rules_set.lo libmodsecurity_la-rules_set_phases.lo libmodsecurity_la-rules_set_properties.lo debug_log/libmodsecurity_la-debug_log.lo debug_log/libmodsecurity_la-debug_log_writer.lo libmodsecurity_la-run_time_string.lo libmodsecurity_la-rule.lo libmodsecurity_la-rule_unconditional.lo libmodsecurity_la-rule_with_actions.lo libmodsecurity_la-rule_with_operator.lo libmodsecurity_la-rule_message.lo libmodsecurity_la-rule_script.lo libmodsecurity_la-unique_id.lo libmodsecurity_la-rules_exceptions.lo request_body_processor/libmodsecurity_la-multipart.lo request_body_processor/libmodsecurity_la-xml.lo request_body_processor/libmodsecurity_la-json.lo actions/libmodsecurity_la-accuracy.lo actions/libmodsecurity_la-action.lo actions/libmodsecurity_la-audit_log.lo actions/libmodsecurity_la-block.lo actions/libmodsecurity_la-capture.lo actions/libmodsecurity_la-chain.lo actions/ctl/libmodsecurity_la-audit_log_parts.lo actions/ctl/libmodsecurity_la-audit_engine.lo actions/ctl/libmodsecurity_la-rule_engine.lo actions/ctl/libmodsecurity_la-request_body_processor_json.lo actions/ctl/libmodsecurity_la-request_body_processor_xml.lo actions/ctl/libmodsecurity_la-request_body_processor_urlencoded.lo actions/ctl/libmodsecurity_la-rule_remove_target_by_tag.lo actions/ctl/libmodsecurity_la-rule_remove_target_by_id.lo actions/ctl/libmodsecurity_la-rule_remove_by_id.lo actions/ctl/libmodsecurity_la-rule_remove_by_tag.lo actions/ctl/libmodsecurity_la-request_body_access.lo actions/disruptive/libmodsecurity_la-allow.lo actions/disruptive/libmodsecurity_la-deny.lo actions/disruptive/libmodsecurity_la-drop.lo actions/disruptive/libmodsecurity_la-redirect.lo actions/disruptive/libmodsecurity_la-pass.lo actions/libmodsecurity_la-exec.lo actions/libmodsecurity_la-init_col.lo actions/libmodsecurity_la-log.lo actions/libmodsecurity_la-log_data.lo actions/libmodsecurity_la-maturity.lo actions/libmodsecurity_la-msg.lo actions/libmodsecurity_la-multi_match.lo actions/libmodsecurity_la-no_audit_log.lo actions/libmodsecurity_la-no_log.lo actions/libmodsecurity_la-phase.lo actions/libmodsecurity_la-rev.lo actions/libmodsecurity_la-rule_id.lo actions/libmodsecurity_la-severity.lo actions/libmodsecurity_la-set_env.lo actions/libmodsecurity_la-set_rsc.lo actions/libmodsecurity_la-set_sid.lo actions/libmodsecurity_la-set_uid.lo actions/libmodsecurity_la-set_var.lo actions/data/libmodsecurity_la-status.lo actions/libmodsecurity_la-skip.lo actions/libmodsecurity_la-skip_after.lo actions/libmodsecurity_la-tag.lo actions/transformations/libmodsecurity_la-base64_decode.lo actions/transformations/libmodsecurity_la-base64_encode.lo actions/transformations/libmodsecurity_la-base64_decode_ext.lo actions/transformations/libmodsecurity_la-cmd_line.lo actions/transformations/libmodsecurity_la-compress_whitespace.lo actions/transformations/libmodsecurity_la-css_decode.lo actions/transformations/libmodsecurity_la-escape_seq_decode.lo actions/transformations/libmodsecurity_la-hex_decode.lo actions/transformations/libmodsecurity_la-hex_encode.lo actions/transformations/libmodsecurity_la-html_entity_decode.lo actions/transformations/libmodsecurity_la-js_decode.lo actions/transformations/libmodsecurity_la-length.lo actions/transformations/libmodsecurity_la-lower_case.lo actions/transformations/libmodsecurity_la-md5.lo actions/transformations/libmodsecurity_la-none.lo actions/transformations/libmodsecurity_la-normalise_path.lo actions/transformations/libmodsecurity_la-normalise_path_win.lo actions/transformations/libmodsecurity_la-parity_even_7bit.lo actions/transformations/libmodsecurity_la-parity_odd_7bit.lo actions/transformations/libmodsecurity_la-parity_zero_7bit.lo actions/transformations/libmodsecurity_la-remove_comments.lo actions/transformations/libmodsecurity_la-remove_comments_char.lo actions/transformations/libmodsecurity_la-remove_nulls.lo actions/transformations/libmodsecurity_la-remove_whitespace.lo actions/transformations/libmodsecurity_la-replace_comments.lo actions/transformations/libmodsecurity_la-replace_nulls.lo actions/transformations/libmodsecurity_la-sha1.lo actions/transformations/libmodsecurity_la-sql_hex_decode.lo actions/transformations/libmodsecurity_la-transformation.lo actions/transformations/libmodsecurity_la-trim.lo actions/transformations/libmodsecurity_la-trim_left.lo actions/transformations/libmodsecurity_la-trim_right.lo actions/transformations/libmodsecurity_la-upper_case.lo actions/transformations/libmodsecurity_la-url_decode.lo actions/transformations/libmodsecurity_la-url_decode_uni.lo actions/transformations/libmodsecurity_la-url_encode.lo actions/transformations/libmodsecurity_la-utf8_to_unicode.lo actions/libmodsecurity_la-ver.lo actions/libmodsecurity_la-xmlns.lo engine/libmodsecurity_la-lua.lo collection/libmodsecurity_la-collections.lo collection/backend/libmodsecurity_la-in_memory-per_process.lo collection/backend/libmodsecurity_la-lmdb.lo operators/libmodsecurity_la-begins_with.lo operators/libmodsecurity_la-contains.lo operators/libmodsecurity_la-contains_word.lo operators/libmodsecurity_la-detect_sqli.lo operators/libmodsecurity_la-detect_xss.lo operators/libmodsecurity_la-ends_with.lo operators/libmodsecurity_la-eq.lo operators/libmodsecurity_la-fuzzy_hash.lo operators/libmodsecurity_la-ge.lo operators/libmodsecurity_la-geo_lookup.lo operators/libmodsecurity_la-gsblookup.lo operators/libmodsecurity_la-gt.lo operators/libmodsecurity_la-inspect_file.lo operators/libmodsecurity_la-ip_match.lo operators/libmodsecurity_la-ip_match_f.lo operators/libmodsecurity_la-ip_match_from_file.lo operators/libmodsecurity_la-le.lo operators/libmodsecurity_la-lt.lo operators/libmodsecurity_la-no_match.lo operators/libmodsecurity_la-operator.lo operators/libmodsecurity_la-pm.lo operators/libmodsecurity_la-pm_f.lo operators/libmodsecurity_la-pm_from_file.lo operators/libmodsecurity_la-rbl.lo operators/libmodsecurity_la-rsub.lo operators/libmodsecurity_la-rx.lo operators/libmodsecurity_la-rx_global.lo operators/libmodsecurity_la-str_eq.lo operators/libmodsecurity_la-str_match.lo operators/libmodsecurity_la-validate_byte_range.lo operators/libmodsecurity_la-validate_dtd.lo operators/libmodsecurity_la-validate_hash.lo operators/libmodsecurity_la-validate_schema.lo operators/libmodsecurity_la-validate_url_encoding.lo operators/libmodsecurity_la-validate_utf8_encoding.lo operators/libmodsecurity_la-verify_cc.lo operators/libmodsecurity_la-verify_cpf.lo operators/libmodsecurity_la-verify_ssn.lo operators/libmodsecurity_la-verify_svnr.lo operators/libmodsecurity_la-within.lo operators/libmodsecurity_la-unconditional_match.lo utils/libmodsecurity_la-acmp.lo utils/libmodsecurity_la-base64.lo utils/libmodsecurity_la-decode.lo utils/libmodsecurity_la-geo_lookup.lo utils/libmodsecurity_la-https_client.lo utils/libmodsecurity_la-ip_tree.lo utils/libmodsecurity_la-md5.lo utils/libmodsecurity_la-msc_tree.lo utils/libmodsecurity_la-random.lo utils/libmodsecurity_la-regex.lo utils/libmodsecurity_la-sha1.lo utils/libmodsecurity_la-string.lo utils/libmodsecurity_la-system.lo utils/libmodsecurity_la-shared_files.lo variables/libmodsecurity_la-duration.lo variables/libmodsecurity_la-env.lo variables/libmodsecurity_la-highest_severity.lo variables/libmodsecurity_la-modsec_build.lo variables/libmodsecurity_la-remote_user.lo variables/libmodsecurity_la-rule.lo variables/libmodsecurity_la-time.lo variables/libmodsecurity_la-time_day.lo variables/libmodsecurity_la-time_epoch.lo variables/libmodsecurity_la-time_hour.lo variables/libmodsecurity_la-time_min.lo variables/libmodsecurity_la-time_mon.lo variables/libmodsecurity_la-time_sec.lo variables/libmodsecurity_la-time_wday.lo variables/libmodsecurity_la-time_year.lo variables/libmodsecurity_la-tx.lo variables/libmodsecurity_la-variable.lo variables/libmodsecurity_la-xml.lo   -lrt      ../others/libinjection.la ../others/libmbedtls.la -lpcre -lpcre  -lfuzzy
libtool: link: g++  -fPIC -DPIC -shared -nostdlib /usr/lib/gcc/x86_64-redhat-linux/7/../../../../lib64/crti.o /usr/lib/gcc/x86_64-redhat-linux/7/crtbeginS.o  parser/.libs/libmodsecurity_la-seclang-parser.o parser/.libs/libmodsecurity_la-seclang-scanner.o parser/.libs/libmodsecurity_la-driver.o .libs/libmodsecurity_la-transaction.o .libs/libmodsecurity_la-anchored_set_variable.o .libs/libmodsecurity_la-anchored_variable.o audit_log/.libs/libmodsecurity_la-audit_log.o audit_log/writer/.libs/libmodsecurity_la-writer.o audit_log/writer/.libs/libmodsecurity_la-https.o audit_log/writer/.libs/libmodsecurity_la-serial.o audit_log/writer/.libs/libmodsecurity_la-parallel.o .libs/libmodsecurity_la-modsecurity.o .libs/libmodsecurity_la-rules_set.o .libs/libmodsecurity_la-rules_set_phases.o .libs/libmodsecurity_la-rules_set_properties.o debug_log/.libs/libmodsecurity_la-debug_log.o debug_log/.libs/libmodsecurity_la-debug_log_writer.o .libs/libmodsecurity_la-run_time_string.o .libs/libmodsecurity_la-rule.o .libs/libmodsecurity_la-rule_unconditional.o .libs/libmodsecurity_la-rule_with_actions.o .libs/libmodsecurity_la-rule_with_operator.o .libs/libmodsecurity_la-rule_message.o .libs/libmodsecurity_la-rule_script.o .libs/libmodsecurity_la-unique_id.o .libs/libmodsecurity_la-rules_exceptions.o request_body_processor/.libs/libmodsecurity_la-multipart.o request_body_processor/.libs/libmodsecurity_la-xml.o request_body_processor/.libs/libmodsecurity_la-json.o actions/.libs/libmodsecurity_la-accuracy.o actions/.libs/libmodsecurity_la-action.o actions/.libs/libmodsecurity_la-audit_log.o actions/.libs/libmodsecurity_la-block.o actions/.libs/libmodsecurity_la-capture.o actions/.libs/libmodsecurity_la-chain.o actions/ctl/.libs/libmodsecurity_la-audit_log_parts.o actions/ctl/.libs/libmodsecurity_la-audit_engine.o actions/ctl/.libs/libmodsecurity_la-rule_engine.o actions/ctl/.libs/libmodsecurity_la-request_body_processor_json.o actions/ctl/.libs/libmodsecurity_la-request_body_processor_xml.o actions/ctl/.libs/libmodsecurity_la-request_body_processor_urlencoded.o actions/ctl/.libs/libmodsecurity_la-rule_remove_target_by_tag.o actions/ctl/.libs/libmodsecurity_la-rule_remove_target_by_id.o actions/ctl/.libs/libmodsecurity_la-rule_remove_by_id.o actions/ctl/.libs/libmodsecurity_la-rule_remove_by_tag.o actions/ctl/.libs/libmodsecurity_la-request_body_access.o actions/disruptive/.libs/libmodsecurity_la-allow.o actions/disruptive/.libs/libmodsecurity_la-deny.o actions/disruptive/.libs/libmodsecurity_la-drop.o actions/disruptive/.libs/libmodsecurity_la-redirect.o actions/disruptive/.libs/libmodsecurity_la-pass.o actions/.libs/libmodsecurity_la-exec.o actions/.libs/libmodsecurity_la-init_col.o actions/.libs/libmodsecurity_la-log.o actions/.libs/libmodsecurity_la-log_data.o actions/.libs/libmodsecurity_la-maturity.o actions/.libs/libmodsecurity_la-msg.o actions/.libs/libmodsecurity_la-multi_match.o actions/.libs/libmodsecurity_la-no_audit_log.o actions/.libs/libmodsecurity_la-no_log.o actions/.libs/libmodsecurity_la-phase.o actions/.libs/libmodsecurity_la-rev.o actions/.libs/libmodsecurity_la-rule_id.o actions/.libs/libmodsecurity_la-severity.o actions/.libs/libmodsecurity_la-set_env.o actions/.libs/libmodsecurity_la-set_rsc.o actions/.libs/libmodsecurity_la-set_sid.o actions/.libs/libmodsecurity_la-set_uid.o actions/.libs/libmodsecurity_la-set_var.o actions/data/.libs/libmodsecurity_la-status.o actions/.libs/libmodsecurity_la-skip.o actions/.libs/libmodsecurity_la-skip_after.o actions/.libs/libmodsecurity_la-tag.o actions/transformations/.libs/libmodsecurity_la-base64_decode.o actions/transformations/.libs/libmodsecurity_la-base64_encode.o actions/transformations/.libs/libmodsecurity_la-base64_decode_ext.o actions/transformations/.libs/libmodsecurity_la-cmd_line.o actions/transformations/.libs/libmodsecurity_la-compress_whitespace.o actions/transformations/.libs/libmodsecurity_la-css_decode.o actions/transformations/.libs/libmodsecurity_la-escape_seq_decode.o actions/transformations/.libs/libmodsecurity_la-hex_decode.o actions/transformations/.libs/libmodsecurity_la-hex_encode.o actions/transformations/.libs/libmodsecurity_la-html_entity_decode.o actions/transformations/.libs/libmodsecurity_la-js_decode.o actions/transformations/.libs/libmodsecurity_la-length.o actions/transformations/.libs/libmodsecurity_la-lower_case.o actions/transformations/.libs/libmodsecurity_la-md5.o actions/transformations/.libs/libmodsecurity_la-none.o actions/transformations/.libs/libmodsecurity_la-normalise_path.o actions/transformations/.libs/libmodsecurity_la-normalise_path_win.o actions/transformations/.libs/libmodsecurity_la-parity_even_7bit.o actions/transformations/.libs/libmodsecurity_la-parity_odd_7bit.o actions/transformations/.libs/libmodsecurity_la-parity_zero_7bit.o actions/transformations/.libs/libmodsecurity_la-remove_comments.o actions/transformations/.libs/libmodsecurity_la-remove_comments_char.o actions/transformations/.libs/libmodsecurity_la-remove_nulls.o actions/transformations/.libs/libmodsecurity_la-remove_whitespace.o actions/transformations/.libs/libmodsecurity_la-replace_comments.o actions/transformations/.libs/libmodsecurity_la-replace_nulls.o actions/transformations/.libs/libmodsecurity_la-sha1.o actions/transformations/.libs/libmodsecurity_la-sql_hex_decode.o actions/transformations/.libs/libmodsecurity_la-transformation.o actions/transformations/.libs/libmodsecurity_la-trim.o actions/transformations/.libs/libmodsecurity_la-trim_left.o actions/transformations/.libs/libmodsecurity_la-trim_right.o actions/transformations/.libs/libmodsecurity_la-upper_case.o actions/transformations/.libs/libmodsecurity_la-url_decode.o actions/transformations/.libs/libmodsecurity_la-url_decode_uni.o actions/transformations/.libs/libmodsecurity_la-url_encode.o actions/transformations/.libs/libmodsecurity_la-utf8_to_unicode.o actions/.libs/libmodsecurity_la-ver.o actions/.libs/libmodsecurity_la-xmlns.o engine/.libs/libmodsecurity_la-lua.o collection/.libs/libmodsecurity_la-collections.o collection/backend/.libs/libmodsecurity_la-in_memory-per_process.o collection/backend/.libs/libmodsecurity_la-lmdb.o operators/.libs/libmodsecurity_la-begins_with.o operators/.libs/libmodsecurity_la-contains.o operators/.libs/libmodsecurity_la-contains_word.o operators/.libs/libmodsecurity_la-detect_sqli.o operators/.libs/libmodsecurity_la-detect_xss.o operators/.libs/libmodsecurity_la-ends_with.o operators/.libs/libmodsecurity_la-eq.o operators/.libs/libmodsecurity_la-fuzzy_hash.o operators/.libs/libmodsecurity_la-ge.o operators/.libs/libmodsecurity_la-geo_lookup.o operators/.libs/libmodsecurity_la-gsblookup.o operators/.libs/libmodsecurity_la-gt.o operators/.libs/libmodsecurity_la-inspect_file.o operators/.libs/libmodsecurity_la-ip_match.o operators/.libs/libmodsecurity_la-ip_match_f.o operators/.libs/libmodsecurity_la-ip_match_from_file.o operators/.libs/libmodsecurity_la-le.o operators/.libs/libmodsecurity_la-lt.o operators/.libs/libmodsecurity_la-no_match.o operators/.libs/libmodsecurity_la-operator.o operators/.libs/libmodsecurity_la-pm.o operators/.libs/libmodsecurity_la-pm_f.o operators/.libs/libmodsecurity_la-pm_from_file.o operators/.libs/libmodsecurity_la-rbl.o operators/.libs/libmodsecurity_la-rsub.o operators/.libs/libmodsecurity_la-rx.o operators/.libs/libmodsecurity_la-rx_global.o operators/.libs/libmodsecurity_la-str_eq.o operators/.libs/libmodsecurity_la-str_match.o operators/.libs/libmodsecurity_la-validate_byte_range.o operators/.libs/libmodsecurity_la-validate_dtd.o operators/.libs/libmodsecurity_la-validate_hash.o operators/.libs/libmodsecurity_la-validate_schema.o operators/.libs/libmodsecurity_la-validate_url_encoding.o operators/.libs/libmodsecurity_la-validate_utf8_encoding.o operators/.libs/libmodsecurity_la-verify_cc.o operators/.libs/libmodsecurity_la-verify_cpf.o operators/.libs/libmodsecurity_la-verify_ssn.o operators/.libs/libmodsecurity_la-verify_svnr.o operators/.libs/libmodsecurity_la-within.o operators/.libs/libmodsecurity_la-unconditional_match.o utils/.libs/libmodsecurity_la-acmp.o utils/.libs/libmodsecurity_la-base64.o utils/.libs/libmodsecurity_la-decode.o utils/.libs/libmodsecurity_la-geo_lookup.o utils/.libs/libmodsecurity_la-https_client.o utils/.libs/libmodsecurity_la-ip_tree.o utils/.libs/libmodsecurity_la-md5.o utils/.libs/libmodsecurity_la-msc_tree.o utils/.libs/libmodsecurity_la-random.o utils/.libs/libmodsecurity_la-regex.o utils/.libs/libmodsecurity_la-sha1.o utils/.libs/libmodsecurity_la-string.o utils/.libs/libmodsecurity_la-system.o utils/.libs/libmodsecurity_la-shared_files.o variables/.libs/libmodsecurity_la-duration.o variables/.libs/libmodsecurity_la-env.o variables/.libs/libmodsecurity_la-highest_severity.o variables/.libs/libmodsecurity_la-modsec_build.o variables/.libs/libmodsecurity_la-remote_user.o variables/.libs/libmodsecurity_la-rule.o variables/.libs/libmodsecurity_la-time.o variables/.libs/libmodsecurity_la-time_day.o variables/.libs/libmodsecurity_la-time_epoch.o variables/.libs/libmodsecurity_la-time_hour.o variables/.libs/libmodsecurity_la-time_min.o variables/.libs/libmodsecurity_la-time_mon.o variables/.libs/libmodsecurity_la-time_sec.o variables/.libs/libmodsecurity_la-time_wday.o variables/.libs/libmodsecurity_la-time_year.o variables/.libs/libmodsecurity_la-tx.o variables/.libs/libmodsecurity_la-variable.o variables/.libs/libmodsecurity_la-xml.o  -Wl,--whole-archive ../others/.libs/libinjection.a ../others/.libs/libmbedtls.a -Wl,--no-whole-archive  -Wl,-rpath -Wl,/usr/local/lib -Wl,-rpath -Wl,/usr/local/lib -L/usr/local/lib/ -lrt -lpcre /usr/local/lib/libfuzzy.so -L/usr/local/lib -L/usr/lib/gcc/x86_64-redhat-linux/7 -L/usr/lib/gcc/x86_64-redhat-linux/7/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/7/../../.. -lstdc++ -lm -lc -lgcc_s /usr/lib/gcc/x86_64-redhat-linux/7/crtendS.o /usr/lib/gcc/x86_64-redhat-linux/7/../../../../lib64/crtn.o  -O2   -Wl,-soname -Wl,libmodsecurity.so.3 -o .libs/libmodsecurity.so.3.0.6
libtool: link: (cd ".libs" && rm -f "libmodsecurity.so.3" && ln -s "libmodsecurity.so.3.0.6" "libmodsecurity.so.3")
libtool: link: (cd ".libs" && rm -f "libmodsecurity.so" && ln -s "libmodsecurity.so.3.0.6" "libmodsecurity.so")
libtool: link: (cd .libs/libmodsecurity.lax/libinjection.a && ar x "/home/ec2-user/download/ModSecurity/src/../others/.libs/libinjection.a")
libtool: link: (cd .libs/libmodsecurity.lax/libmbedtls.a && ar x "/home/ec2-user/download/ModSecurity/src/../others/.libs/libmbedtls.a")
copying selected object files to avoid basename conflicts...
libtool: link: ln actions/libmodsecurity_la-audit_log.o .libs/libmodsecurity.lax/lt1-libmodsecurity_la-audit_log.o || cp actions/libmodsecurity_la-audit_log.o .libs/libmodsecurity.lax/lt1-libmodsecurity_la-audit_log.o
libtool: link: ln utils/libmodsecurity_la-geo_lookup.o .libs/libmodsecurity.lax/lt2-libmodsecurity_la-geo_lookup.o || cp utils/libmodsecurity_la-geo_lookup.o .libs/libmodsecurity.lax/lt2-libmodsecurity_la-geo_lookup.o
libtool: link: ln utils/libmodsecurity_la-md5.o .libs/libmodsecurity.lax/lt3-libmodsecurity_la-md5.o || cp utils/libmodsecurity_la-md5.o .libs/libmodsecurity.lax/lt3-libmodsecurity_la-md5.o
libtool: link: ln utils/libmodsecurity_la-sha1.o .libs/libmodsecurity.lax/lt4-libmodsecurity_la-sha1.o || cp utils/libmodsecurity_la-sha1.o .libs/libmodsecurity.lax/lt4-libmodsecurity_la-sha1.o
libtool: link: ln variables/libmodsecurity_la-rule.o .libs/libmodsecurity.lax/lt5-libmodsecurity_la-rule.o || cp variables/libmodsecurity_la-rule.o .libs/libmodsecurity.lax/lt5-libmodsecurity_la-rule.o
libtool: link: ln variables/libmodsecurity_la-xml.o .libs/libmodsecurity.lax/lt6-libmodsecurity_la-xml.o || cp variables/libmodsecurity_la-xml.o .libs/libmodsecurity.lax/lt6-libmodsecurity_la-xml.o
libtool: link: ar cru .libs/libmodsecurity.a parser/libmodsecurity_la-seclang-parser.o parser/libmodsecurity_la-seclang-scanner.o parser/libmodsecurity_la-driver.o libmodsecurity_la-transaction.o libmodsecurity_la-anchored_set_variable.o libmodsecurity_la-anchored_variable.o audit_log/libmodsecurity_la-audit_log.o audit_log/writer/libmodsecurity_la-writer.o audit_log/writer/libmodsecurity_la-https.o audit_log/writer/libmodsecurity_la-serial.o audit_log/writer/libmodsecurity_la-parallel.o libmodsecurity_la-modsecurity.o libmodsecurity_la-rules_set.o libmodsecurity_la-rules_set_phases.o libmodsecurity_la-rules_set_properties.o debug_log/libmodsecurity_la-debug_log.o debug_log/libmodsecurity_la-debug_log_writer.o libmodsecurity_la-run_time_string.o libmodsecurity_la-rule.o libmodsecurity_la-rule_unconditional.o libmodsecurity_la-rule_with_actions.o libmodsecurity_la-rule_with_operator.o libmodsecurity_la-rule_message.o libmodsecurity_la-rule_script.o libmodsecurity_la-unique_id.o libmodsecurity_la-rules_exceptions.o request_body_processor/libmodsecurity_la-multipart.o request_body_processor/libmodsecurity_la-xml.o request_body_processor/libmodsecurity_la-json.o actions/libmodsecurity_la-accuracy.o actions/libmodsecurity_la-action.o .libs/libmodsecurity.lax/lt1-libmodsecurity_la-audit_log.o actions/libmodsecurity_la-block.o actions/libmodsecurity_la-capture.o actions/libmodsecurity_la-chain.o actions/ctl/libmodsecurity_la-audit_log_parts.o actions/ctl/libmodsecurity_la-audit_engine.o actions/ctl/libmodsecurity_la-rule_engine.o actions/ctl/libmodsecurity_la-request_body_processor_json.o actions/ctl/libmodsecurity_la-request_body_processor_xml.o actions/ctl/libmodsecurity_la-request_body_processor_urlencoded.o actions/ctl/libmodsecurity_la-rule_remove_target_by_tag.o actions/ctl/libmodsecurity_la-rule_remove_target_by_id.o actions/ctl/libmodsecurity_la-rule_remove_by_id.o actions/ctl/libmodsecurity_la-rule_remove_by_tag.o actions/ctl/libmodsecurity_la-request_body_access.o actions/disruptive/libmodsecurity_la-allow.o actions/disruptive/libmodsecurity_la-deny.o actions/disruptive/libmodsecurity_la-drop.o actions/disruptive/libmodsecurity_la-redirect.o actions/disruptive/libmodsecurity_la-pass.o actions/libmodsecurity_la-exec.o actions/libmodsecurity_la-init_col.o actions/libmodsecurity_la-log.o actions/libmodsecurity_la-log_data.o actions/libmodsecurity_la-maturity.o actions/libmodsecurity_la-msg.o actions/libmodsecurity_la-multi_match.o actions/libmodsecurity_la-no_audit_log.o actions/libmodsecurity_la-no_log.o actions/libmodsecurity_la-phase.o actions/libmodsecurity_la-rev.o actions/libmodsecurity_la-rule_id.o actions/libmodsecurity_la-severity.o actions/libmodsecurity_la-set_env.o actions/libmodsecurity_la-set_rsc.o actions/libmodsecurity_la-set_sid.o actions/libmodsecurity_la-set_uid.o actions/libmodsecurity_la-set_var.o actions/data/libmodsecurity_la-status.o actions/libmodsecurity_la-skip.o actions/libmodsecurity_la-skip_after.o actions/libmodsecurity_la-tag.o actions/transformations/libmodsecurity_la-base64_decode.o actions/transformations/libmodsecurity_la-base64_encode.o actions/transformations/libmodsecurity_la-base64_decode_ext.o actions/transformations/libmodsecurity_la-cmd_line.o actions/transformations/libmodsecurity_la-compress_whitespace.o actions/transformations/libmodsecurity_la-css_decode.o actions/transformations/libmodsecurity_la-escape_seq_decode.o actions/transformations/libmodsecurity_la-hex_decode.o actions/transformations/libmodsecurity_la-hex_encode.o actions/transformations/libmodsecurity_la-html_entity_decode.o actions/transformations/libmodsecurity_la-js_decode.o actions/transformations/libmodsecurity_la-length.o actions/transformations/libmodsecurity_la-lower_case.o actions/transformations/libmodsecurity_la-md5.o actions/transformations/libmodsecurity_la-none.o actions/transformations/libmodsecurity_la-normalise_path.o actions/transformations/libmodsecurity_la-normalise_path_win.o actions/transformations/libmodsecurity_la-parity_even_7bit.o actions/transformations/libmodsecurity_la-parity_odd_7bit.o actions/transformations/libmodsecurity_la-parity_zero_7bit.o actions/transformations/libmodsecurity_la-remove_comments.o actions/transformations/libmodsecurity_la-remove_comments_char.o actions/transformations/libmodsecurity_la-remove_nulls.o actions/transformations/libmodsecurity_la-remove_whitespace.o actions/transformations/libmodsecurity_la-replace_comments.o actions/transformations/libmodsecurity_la-replace_nulls.o actions/transformations/libmodsecurity_la-sha1.o actions/transformations/libmodsecurity_la-sql_hex_decode.o actions/transformations/libmodsecurity_la-transformation.o actions/transformations/libmodsecurity_la-trim.o actions/transformations/libmodsecurity_la-trim_left.o actions/transformations/libmodsecurity_la-trim_right.o actions/transformations/libmodsecurity_la-upper_case.o actions/transformations/libmodsecurity_la-url_decode.o actions/transformations/libmodsecurity_la-url_decode_uni.o actions/transformations/libmodsecurity_la-url_encode.o actions/transformations/libmodsecurity_la-utf8_to_unicode.o actions/libmodsecurity_la-ver.o actions/libmodsecurity_la-xmlns.o engine/libmodsecurity_la-lua.o collection/libmodsecurity_la-collections.o collection/backend/libmodsecurity_la-in_memory-per_process.o collection/backend/libmodsecurity_la-lmdb.o operators/libmodsecurity_la-begins_with.o operators/libmodsecurity_la-contains.o operators/libmodsecurity_la-contains_word.o operators/libmodsecurity_la-detect_sqli.o operators/libmodsecurity_la-detect_xss.o operators/libmodsecurity_la-ends_with.o operators/libmodsecurity_la-eq.o operators/libmodsecurity_la-fuzzy_hash.o operators/libmodsecurity_la-ge.o operators/libmodsecurity_la-geo_lookup.o operators/libmodsecurity_la-gsblookup.o operators/libmodsecurity_la-gt.o operators/libmodsecurity_la-inspect_file.o operators/libmodsecurity_la-ip_match.o operators/libmodsecurity_la-ip_match_f.o operators/libmodsecurity_la-ip_match_from_file.o operators/libmodsecurity_la-le.o operators/libmodsecurity_la-lt.o operators/libmodsecurity_la-no_match.o operators/libmodsecurity_la-operator.o operators/libmodsecurity_la-pm.o operators/libmodsecurity_la-pm_f.o operators/libmodsecurity_la-pm_from_file.o operators/libmodsecurity_la-rbl.o operators/libmodsecurity_la-rsub.o operators/libmodsecurity_la-rx.o operators/libmodsecurity_la-rx_global.o operators/libmodsecurity_la-str_eq.o operators/libmodsecurity_la-str_match.o operators/libmodsecurity_la-validate_byte_range.o operators/libmodsecurity_la-validate_dtd.o operators/libmodsecurity_la-validate_hash.o operators/libmodsecurity_la-validate_schema.o operators/libmodsecurity_la-validate_url_encoding.o operators/libmodsecurity_la-validate_utf8_encoding.o operators/libmodsecurity_la-verify_cc.o operators/libmodsecurity_la-verify_cpf.o operators/libmodsecurity_la-verify_ssn.o operators/libmodsecurity_la-verify_svnr.o operators/libmodsecurity_la-within.o operators/libmodsecurity_la-unconditional_match.o utils/libmodsecurity_la-acmp.o utils/libmodsecurity_la-base64.o utils/libmodsecurity_la-decode.o .libs/libmodsecurity.lax/lt2-libmodsecurity_la-geo_lookup.o utils/libmodsecurity_la-https_client.o utils/libmodsecurity_la-ip_tree.o .libs/libmodsecurity.lax/lt3-libmodsecurity_la-md5.o utils/libmodsecurity_la-msc_tree.o utils/libmodsecurity_la-random.o utils/libmodsecurity_la-regex.o .libs/libmodsecurity.lax/lt4-libmodsecurity_la-sha1.o utils/libmodsecurity_la-string.o utils/libmodsecurity_la-system.o utils/libmodsecurity_la-shared_files.o variables/libmodsecurity_la-duration.o variables/libmodsecurity_la-env.o variables/libmodsecurity_la-highest_severity.o variables/libmodsecurity_la-modsec_build.o variables/libmodsecurity_la-remote_user.o .libs/libmodsecurity.lax/lt5-libmodsecurity_la-rule.o variables/libmodsecurity_la-time.o variables/libmodsecurity_la-time_day.o variables/libmodsecurity_la-time_epoch.o variables/libmodsecurity_la-time_hour.o variables/libmodsecurity_la-time_min.o variables/libmodsecurity_la-time_mon.o variables/libmodsecurity_la-time_sec.o variables/libmodsecurity_la-time_wday.o variables/libmodsecurity_la-time_year.o variables/libmodsecurity_la-tx.o variables/libmodsecurity_la-variable.o .libs/libmodsecurity.lax/lt6-libmodsecurity_la-xml.o .libs/libmodsecurity.lax/libinjection.a/libinjection_html5.o .libs/libmodsecurity.lax/libinjection.a/libinjection_sqli.o .libs/libmodsecurity.lax/libinjection.a/libinjection_xss.o .libs/libmodsecurity.lax/libmbedtls.a/libmbedtls_la-base64.o .libs/libmodsecurity.lax/libmbedtls.a/libmbedtls_la-md5.o .libs/libmodsecurity.lax/libmbedtls.a/libmbedtls_la-sha1.o
libtool: link: ranlib .libs/libmodsecurity.a
libtool: link: rm -fr .libs/libmodsecurity.lax .libs/libmodsecurity.lax
libtool: link: ( cd ".libs" && rm -f "libmodsecurity.la" && ln -s "../libmodsecurity.la" "libmodsecurity.la" )
make[3]: Leaving directory `/home/ec2-user/download/ModSecurity/src'
make[2]: Leaving directory `/home/ec2-user/download/ModSecurity/src'
make[1]: Leaving directory `/home/ec2-user/download/ModSecurity/src'
Making all in doc
make[1]: Entering directory `/home/ec2-user/download/ModSecurity/doc'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/ec2-user/download/ModSecurity/doc'
Making all in tools
make[1]: Entering directory `/home/ec2-user/download/ModSecurity/tools'
Making all in rules-check
make[2]: Entering directory `/home/ec2-user/download/ModSecurity/tools/rules-check'
g++ -DHAVE_CONFIG_H -I. -I../../src  -std=c++11 -I../../headers  -DPCRE_HAVE_JIT      -g -O2 -MT modsec_rules_check-rules-check.o -MD -MP -MF .deps/modsec_rules_check-rules-check.Tpo -c -o modsec_rules_check-rules-check.o `test -f 'rules-check.cc' || echo './'`rules-check.cc
mv -f .deps/modsec_rules_check-rules-check.Tpo .deps/modsec_rules_check-rules-check.Po
/bin/sh ../../libtool  --tag=CXX   --mode=link g++  -g -O2      -L/usr/local/lib/   -o modsec-rules-check modsec_rules_check-rules-check.o ../../src/.libs/libmodsecurity.la    -lrt      -lpcre -lpcre -lfuzzy
libtool: link: g++ -g -O2 -o .libs/modsec-rules-check modsec_rules_check-rules-check.o  -L/usr/local/lib/ ../../src/.libs/libmodsecurity.so -L/usr/local/lib -lrt -lpcre /usr/local/lib/libfuzzy.so -Wl,-rpath -Wl,/usr/local/modsecurity/lib -Wl,-rpath -Wl,/usr/local/lib
make[2]: Leaving directory `/home/ec2-user/download/ModSecurity/tools/rules-check'
make[2]: Entering directory `/home/ec2-user/download/ModSecurity/tools'
make[2]: Nothing to be done for `all-am'.
make[2]: Leaving directory `/home/ec2-user/download/ModSecurity/tools'
make[1]: Leaving directory `/home/ec2-user/download/ModSecurity/tools'
Making all in examples
make[1]: Entering directory `/home/ec2-user/download/ModSecurity/examples'
Making all in multiprocess_c
make[2]: Entering directory `/home/ec2-user/download/ModSecurity/examples/multiprocess_c'
gcc -DHAVE_CONFIG_H -I. -I../../src    -I../../headers -I../..  -g -O2 -MT multi-multi.o -MD -MP -MF .deps/multi-multi.Tpo -c -o multi-multi.o `test -f 'multi.c' || echo './'`multi.c
mv -f .deps/multi-multi.Tpo .deps/multi-multi.Po
/bin/sh ../../libtool  --tag=CC   --mode=link gcc -I../../headers -I../..  -g -O2 -L../../src/.libs/  -lmodsecurity -lpthread -lm -lstdc++  -L/usr/local/lib/    -o multi multi-multi.o -lfuzzy   -lrt
libtool: link: gcc -I../../headers -I../.. -g -O2 -o .libs/multi multi-multi.o  -L../../src/.libs/ /home/ec2-user/download/ModSecurity/src/.libs/libmodsecurity.so -L/usr/local/lib/ -L/usr/local/lib -lpcre -lpthread -lm -lstdc++ /usr/local/lib/libfuzzy.so -lrt -Wl,-rpath -Wl,/usr/local/modsecurity/lib -Wl,-rpath -Wl,/usr/local/lib
make[2]: Leaving directory `/home/ec2-user/download/ModSecurity/examples/multiprocess_c'
Making all in reading_logs_with_offset
make[2]: Entering directory `/home/ec2-user/download/ModSecurity/examples/reading_logs_with_offset'
g++ -DHAVE_CONFIG_H -I. -I../../src   -std=c++11 -I../../headers -I../.. -g -I../others -fPIC -O3         -DPCRE_HAVE_JIT    -g -O2 -MT read-read.o -MD -MP -MF .deps/read-read.Tpo -c -o read-read.o `test -f 'read.cc' || echo './'`read.cc
mv -f .deps/read-read.Tpo .deps/read-read.Po
/bin/sh ../../libtool  --tag=CXX   --mode=link g++  -g -O2 -L../../src/.libs/  -lmodsecurity -lpthread -lm -lstdc++   -L/usr/local/lib/    -o read read-read.o    -lrt      -lpcre -lpcre -lfuzzy
libtool: link: g++ -g -O2 -o .libs/read read-read.o  -L../../src/.libs/ /home/ec2-user/download/ModSecurity/src/.libs/libmodsecurity.so -L/usr/local/lib/ -L/usr/local/lib -lpthread -lm -lstdc++ -lrt -lpcre /usr/local/lib/libfuzzy.so -Wl,-rpath -Wl,/usr/local/modsecurity/lib -Wl,-rpath -Wl,/usr/local/lib
make[2]: Leaving directory `/home/ec2-user/download/ModSecurity/examples/reading_logs_with_offset'
Making all in reading_logs_via_rule_message
make[2]: Entering directory `/home/ec2-user/download/ModSecurity/examples/reading_logs_via_rule_message'
g++ -DHAVE_CONFIG_H -I. -I../../src   -std=c++11 -I../../headers -I../.. -g -I../others -fPIC -O3        -DPCRE_HAVE_JIT    -g -O2 -MT simple_request-simple_request.o -MD -MP -MF .deps/simple_request-simple_request.Tpo -c -o simple_request-simple_request.o `test -f 'simple_request.cc' || echo './'`simple_request.cc
mv -f .deps/simple_request-simple_request.Tpo .deps/simple_request-simple_request.Po
/bin/sh ../../libtool  --tag=CXX   --mode=link g++  -g -O2 -L../../src/.libs/  -lmodsecurity -lpthread -lm -lstdc++    -L/usr/local/lib/   -o simple_request simple_request-simple_request.o   -lrt       -lpcre -lpcre -lfuzzy
libtool: link: g++ -g -O2 -o .libs/simple_request simple_request-simple_request.o  -L../../src/.libs/ /home/ec2-user/download/ModSecurity/src/.libs/libmodsecurity.so -L/usr/local/lib/ -L/usr/local/lib -lpthread -lm -lstdc++ -lrt -lpcre /usr/local/lib/libfuzzy.so -Wl,-rpath -Wl,/usr/local/modsecurity/lib -Wl,-rpath -Wl,/usr/local/lib
make[2]: Leaving directory `/home/ec2-user/download/ModSecurity/examples/reading_logs_via_rule_message'
Making all in simple_example_using_c
make[2]: Entering directory `/home/ec2-user/download/ModSecurity/examples/simple_example_using_c'
gcc -DHAVE_CONFIG_H -I. -I../../src    -I../../headers -I../..  -g -O2 -MT test-test.o -MD -MP -MF .deps/test-test.Tpo -c -o test-test.o `test -f 'test.c' || echo './'`test.c
mv -f .deps/test-test.Tpo .deps/test-test.Po
/bin/sh ../../libtool  --tag=CC   --mode=link gcc -I../../headers -I../..  -g -O2 -L../../src/.libs/  -lmodsecurity -lm -lstdc++  -L/usr/local/lib/   -o test test-test.o -lrt    -lfuzzy
libtool: link: gcc -I../../headers -I../.. -g -O2 -o .libs/test test-test.o  -L../../src/.libs/ /home/ec2-user/download/ModSecurity/src/.libs/libmodsecurity.so -L/usr/local/lib/ -L/usr/local/lib -lpcre -lm -lstdc++ -lrt /usr/local/lib/libfuzzy.so -Wl,-rpath -Wl,/usr/local/modsecurity/lib -Wl,-rpath -Wl,/usr/local/lib
make[2]: Leaving directory `/home/ec2-user/download/ModSecurity/examples/simple_example_using_c'
Making all in using_bodies_in_chunks
make[2]: Entering directory `/home/ec2-user/download/ModSecurity/examples/using_bodies_in_chunks'
g++ -DHAVE_CONFIG_H -I. -I../../src   -std=c++11 -I../../headers -I../.. -g -I../others -fPIC -O3         -DPCRE_HAVE_JIT    -g -O2 -MT simple_request-simple_request.o -MD -MP -MF .deps/simple_request-simple_request.Tpo -c -o simple_request-simple_request.o `test -f 'simple_request.cc' || echo './'`simple_request.cc
mv -f .deps/simple_request-simple_request.Tpo .deps/simple_request-simple_request.Po
/bin/sh ../../libtool  --tag=CXX   --mode=link g++  -g -O2 -L../../src/.libs/  -lmodsecurity -lpthread -lm -lstdc++   -lpthread  -L/usr/local/lib/   -o simple_request simple_request-simple_request.o    -lrt      -lpcre -lpcre -lfuzzy
libtool: link: g++ -g -O2 -o .libs/simple_request simple_request-simple_request.o  -L../../src/.libs/ /home/ec2-user/download/ModSecurity/src/.libs/libmodsecurity.so -L/usr/local/lib/ -L/usr/local/lib -lm -lstdc++ -lpthread -lrt -lpcre /usr/local/lib/libfuzzy.so -Wl,-rpath -Wl,/usr/local/modsecurity/lib -Wl,-rpath -Wl,/usr/local/lib
make[2]: Leaving directory `/home/ec2-user/download/ModSecurity/examples/using_bodies_in_chunks'
make[2]: Entering directory `/home/ec2-user/download/ModSecurity/examples'
make[2]: Nothing to be done for `all-am'.
make[2]: Leaving directory `/home/ec2-user/download/ModSecurity/examples'
make[1]: Leaving directory `/home/ec2-user/download/ModSecurity/examples'
make[1]: Entering directory `/home/ec2-user/download/ModSecurity'
make[1]: Nothing to be done for `all-am'.
make[1]: Leaving directory `/home/ec2-user/download/ModSecurity'
$make install
Making install in others
make[1]: Entering directory `/home/ec2-user/download/ModSecurity/others'
make[2]: Entering directory `/home/ec2-user/download/ModSecurity/others'
make[2]: Nothing to be done for `install-exec-am'.
make[2]: Nothing to be done for `install-data-am'.
make[2]: Leaving directory `/home/ec2-user/download/ModSecurity/others'
make[1]: Leaving directory `/home/ec2-user/download/ModSecurity/others'
Making install in src
make[1]: Entering directory `/home/ec2-user/download/ModSecurity/src'
make[2]: Entering directory `/home/ec2-user/download/ModSecurity/src'
make[3]: Entering directory `/home/ec2-user/download/ModSecurity/src'
 /bin/mkdir -p '/usr/local/modsecurity/lib'
 /bin/sh ../libtool   --mode=install /bin/install -c   libmodsecurity.la '/usr/local/modsecurity/lib'
libtool: install: /bin/install -c .libs/libmodsecurity.so.3.0.6 /usr/local/modsecurity/lib/libmodsecurity.so.3.0.6
libtool: install: (cd /usr/local/modsecurity/lib && { ln -s -f libmodsecurity.so.3.0.6 libmodsecurity.so.3 || { rm -f libmodsecurity.so.3 && ln -s libmodsecurity.so.3.0.6 libmodsecurity.so.3; }; })
libtool: install: (cd /usr/local/modsecurity/lib && { ln -s -f libmodsecurity.so.3.0.6 libmodsecurity.so || { rm -f libmodsecurity.so && ln -s libmodsecurity.so.3.0.6 libmodsecurity.so; }; })
libtool: install: /bin/install -c .libs/libmodsecurity.lai /usr/local/modsecurity/lib/libmodsecurity.la
libtool: install: /bin/install -c .libs/libmodsecurity.a /usr/local/modsecurity/lib/libmodsecurity.a
libtool: install: chmod 644 /usr/local/modsecurity/lib/libmodsecurity.a
libtool: install: ranlib /usr/local/modsecurity/lib/libmodsecurity.a
libtool: finish: PATH="/sbin:/bin:/usr/sbin:/usr/bin:/sbin" ldconfig -n /usr/local/modsecurity/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/modsecurity/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the `LD_RUN_PATH' environment variable
     during linking
   - use the `-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
 /bin/mkdir -p '/usr/local/modsecurity/include/modsecurity/actions/'
 /bin/install -c -m 644 ../headers/modsecurity/actions/action.h '/usr/local/modsecurity/include/modsecurity/actions/'
 /bin/mkdir -p '/usr/local/modsecurity/include/modsecurity/collection/'
 /bin/install -c -m 644 ../headers/modsecurity/collection/collection.h ../headers/modsecurity/collection/collections.h '/usr/local/modsecurity/include/modsecurity/collection/'
 /bin/mkdir -p '/usr/local/modsecurity/include/modsecurity'
 /bin/install -c -m 644 ../headers/modsecurity/anchored_set_variable_translation_proxy.h ../headers/modsecurity/anchored_set_variable.h ../headers/modsecurity/anchored_variable.h ../headers/modsecurity/audit_log.h ../headers/modsecurity/debug_log.h ../headers/modsecurity/intervention.h ../headers/modsecurity/modsecurity.h ../headers/modsecurity/rule.h ../headers/modsecurity/rule_marker.h ../headers/modsecurity/rule_unconditional.h ../headers/modsecurity/rule_with_actions.h ../headers/modsecurity/rule_with_operator.h ../headers/modsecurity/rules.h ../headers/modsecurity/rule_message.h ../headers/modsecurity/rules_set.h ../headers/modsecurity/rules_set_phases.h ../headers/modsecurity/rules_set_properties.h ../headers/modsecurity/rules_exceptions.h ../headers/modsecurity/transaction.h ../headers/modsecurity/variable_origin.h ../headers/modsecurity/variable_value.h '/usr/local/modsecurity/include/modsecurity'
make[3]: Leaving directory `/home/ec2-user/download/ModSecurity/src'
make[2]: Leaving directory `/home/ec2-user/download/ModSecurity/src'
make[1]: Leaving directory `/home/ec2-user/download/ModSecurity/src'
Making install in doc
make[1]: Entering directory `/home/ec2-user/download/ModSecurity/doc'
make[2]: Entering directory `/home/ec2-user/download/ModSecurity/doc'
make[2]: Nothing to be done for `install-exec-am'.
make[2]: Nothing to be done for `install-data-am'.
make[2]: Leaving directory `/home/ec2-user/download/ModSecurity/doc'
make[1]: Leaving directory `/home/ec2-user/download/ModSecurity/doc'
Making install in tools
make[1]: Entering directory `/home/ec2-user/download/ModSecurity/tools'
Making install in rules-check
make[2]: Entering directory `/home/ec2-user/download/ModSecurity/tools/rules-check'
make[3]: Entering directory `/home/ec2-user/download/ModSecurity/tools/rules-check'
 /bin/mkdir -p '/usr/local/modsecurity/bin'
  /bin/sh ../../libtool   --mode=install /bin/install -c modsec-rules-check '/usr/local/modsecurity/bin'
libtool: install: /bin/install -c .libs/modsec-rules-check /usr/local/modsecurity/bin/modsec-rules-check
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/ec2-user/download/ModSecurity/tools/rules-check'
make[2]: Leaving directory `/home/ec2-user/download/ModSecurity/tools/rules-check'
make[2]: Entering directory `/home/ec2-user/download/ModSecurity/tools'
make[3]: Entering directory `/home/ec2-user/download/ModSecurity/tools'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/ec2-user/download/ModSecurity/tools'
make[2]: Leaving directory `/home/ec2-user/download/ModSecurity/tools'
make[1]: Leaving directory `/home/ec2-user/download/ModSecurity/tools'
Making install in examples
make[1]: Entering directory `/home/ec2-user/download/ModSecurity/examples'
Making install in multiprocess_c
make[2]: Entering directory `/home/ec2-user/download/ModSecurity/examples/multiprocess_c'
make[3]: Entering directory `/home/ec2-user/download/ModSecurity/examples/multiprocess_c'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/ec2-user/download/ModSecurity/examples/multiprocess_c'
make[2]: Leaving directory `/home/ec2-user/download/ModSecurity/examples/multiprocess_c'
Making install in reading_logs_with_offset
make[2]: Entering directory `/home/ec2-user/download/ModSecurity/examples/reading_logs_with_offset'
make[3]: Entering directory `/home/ec2-user/download/ModSecurity/examples/reading_logs_with_offset'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/ec2-user/download/ModSecurity/examples/reading_logs_with_offset'
make[2]: Leaving directory `/home/ec2-user/download/ModSecurity/examples/reading_logs_with_offset'
Making install in reading_logs_via_rule_message
make[2]: Entering directory `/home/ec2-user/download/ModSecurity/examples/reading_logs_via_rule_message'
make[3]: Entering directory `/home/ec2-user/download/ModSecurity/examples/reading_logs_via_rule_message'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/ec2-user/download/ModSecurity/examples/reading_logs_via_rule_message'
make[2]: Leaving directory `/home/ec2-user/download/ModSecurity/examples/reading_logs_via_rule_message'
Making install in simple_example_using_c
make[2]: Entering directory `/home/ec2-user/download/ModSecurity/examples/simple_example_using_c'
make[3]: Entering directory `/home/ec2-user/download/ModSecurity/examples/simple_example_using_c'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/ec2-user/download/ModSecurity/examples/simple_example_using_c'
make[2]: Leaving directory `/home/ec2-user/download/ModSecurity/examples/simple_example_using_c'
Making install in using_bodies_in_chunks
make[2]: Entering directory `/home/ec2-user/download/ModSecurity/examples/using_bodies_in_chunks'
make[3]: Entering directory `/home/ec2-user/download/ModSecurity/examples/using_bodies_in_chunks'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/ec2-user/download/ModSecurity/examples/using_bodies_in_chunks'
make[2]: Leaving directory `/home/ec2-user/download/ModSecurity/examples/using_bodies_in_chunks'
make[2]: Entering directory `/home/ec2-user/download/ModSecurity/examples'
make[3]: Entering directory `/home/ec2-user/download/ModSecurity/examples'
make[3]: Nothing to be done for `install-exec-am'.
 /bin/mkdir -p '/usr/local/modsecurity/include/modsecurity'
 /bin/install -c -m 644 reading_logs_via_rule_message/reading_logs_via_rule_message.h '/usr/local/modsecurity/include/modsecurity'
make[3]: Leaving directory `/home/ec2-user/download/ModSecurity/examples'
make[2]: Leaving directory `/home/ec2-user/download/ModSecurity/examples'
make[1]: Leaving directory `/home/ec2-user/download/ModSecurity/examples'
make[1]: Entering directory `/home/ec2-user/download/ModSecurity'
make[2]: Entering directory `/home/ec2-user/download/ModSecurity'
make[2]: Nothing to be done for `install-exec-am'.
 /bin/mkdir -p '/usr/local/modsecurity/lib/pkgconfig'
 /bin/install -c -m 644 modsecurity.pc '/usr/local/modsecurity/lib/pkgconfig'
make[2]: Leaving directory `/home/ec2-user/download/ModSecurity'
make[1]: Leaving directory `/home/ec2-user/download/ModSecurity'

$cd ..
$pwd
/home/ec2-user/download
$ls
ModSecurity  ssdeep

ModSecurityのNginxコネクタをダウンロード

$git clone https://github.com/SpiderLabs/ModSecurity-nginx
Cloning into 'ModSecurity-nginx'...
remote: Enumerating objects: 918, done.
remote: Counting objects: 100% (18/18), done.
remote: Compressing objects: 100% (14/14), done.
remote: Total 918 (delta 5), reused 10 (delta 4), pack-reused 900
Receiving objects: 100% (918/918), 266.09 KiB | 16.63 MiB/s, done.
Resolving deltas: 100% (640/640), done.

インストールされているNginxのバージョンを確認

$nginx -v
nginx version: nginx/1.20.0

$pwd
/home/ec2-user/download

$ls
ModSecurity  ModSecurity-nginx  ssdeep

インストールされているNginxのバージョンのソースコードをダウンロードする

$wget http://nginx.org/download/nginx-1.20.0.tar.gz
--2022-02-19 10:19:07--  http://nginx.org/download/nginx-1.20.0.tar.gz
Resolving nginx.org (nginx.org)... 52.58.199.22, 3.125.197.172, 2a05:d014:edb:5702::6, ...
Connecting to nginx.org (nginx.org)|52.58.199.22|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1061070 (1.0M) [application/octet-stream]
Saving to: ‘nginx-1.20.0.tar.gz’

100%[===================================================================================================================================================================================================>] 1,061,070   1.40MB/s   in 0.7s

2022-02-19 10:19:08 (1.40 MB/s) - ‘nginx-1.20.0.tar.gz’ saved [1061070/1061070]

$pwd
/home/ec2-user/download

$ls
ModSecurity  ModSecurity-nginx  nginx-1.20.0.tar.gz  ssdeep

ダウンロードしたソースコードを解凍

$tar -zxvf nginx-1.20.0.tar.gz
nginx-1.20.0/
nginx-1.20.0/auto/
nginx-1.20.0/conf/
nginx-1.20.0/contrib/
nginx-1.20.0/src/
nginx-1.20.0/configure
nginx-1.20.0/LICENSE
nginx-1.20.0/README
nginx-1.20.0/html/
nginx-1.20.0/man/
nginx-1.20.0/CHANGES.ru
nginx-1.20.0/CHANGES
nginx-1.20.0/man/nginx.8
nginx-1.20.0/html/50x.html
nginx-1.20.0/html/index.html
nginx-1.20.0/src/core/
nginx-1.20.0/src/event/
nginx-1.20.0/src/http/
nginx-1.20.0/src/mail/
nginx-1.20.0/src/misc/
nginx-1.20.0/src/os/
nginx-1.20.0/src/stream/
nginx-1.20.0/src/stream/ngx_stream.c
nginx-1.20.0/src/stream/ngx_stream.h
nginx-1.20.0/src/stream/ngx_stream_access_module.c
nginx-1.20.0/src/stream/ngx_stream_core_module.c
nginx-1.20.0/src/stream/ngx_stream_geo_module.c
nginx-1.20.0/src/stream/ngx_stream_geoip_module.c
nginx-1.20.0/src/stream/ngx_stream_handler.c
nginx-1.20.0/src/stream/ngx_stream_limit_conn_module.c
nginx-1.20.0/src/stream/ngx_stream_log_module.c
nginx-1.20.0/src/stream/ngx_stream_map_module.c
nginx-1.20.0/src/stream/ngx_stream_proxy_module.c
nginx-1.20.0/src/stream/ngx_stream_realip_module.c
nginx-1.20.0/src/stream/ngx_stream_return_module.c
nginx-1.20.0/src/stream/ngx_stream_script.c
nginx-1.20.0/src/stream/ngx_stream_script.h
nginx-1.20.0/src/stream/ngx_stream_set_module.c
nginx-1.20.0/src/stream/ngx_stream_split_clients_module.c
nginx-1.20.0/src/stream/ngx_stream_ssl_module.c
nginx-1.20.0/src/stream/ngx_stream_ssl_module.h
nginx-1.20.0/src/stream/ngx_stream_ssl_preread_module.c
nginx-1.20.0/src/stream/ngx_stream_upstream.c
nginx-1.20.0/src/stream/ngx_stream_upstream.h
nginx-1.20.0/src/stream/ngx_stream_upstream_hash_module.c
nginx-1.20.0/src/stream/ngx_stream_upstream_least_conn_module.c
nginx-1.20.0/src/stream/ngx_stream_upstream_random_module.c
nginx-1.20.0/src/stream/ngx_stream_upstream_round_robin.c
nginx-1.20.0/src/stream/ngx_stream_upstream_round_robin.h
nginx-1.20.0/src/stream/ngx_stream_upstream_zone_module.c
nginx-1.20.0/src/stream/ngx_stream_variables.c
nginx-1.20.0/src/stream/ngx_stream_variables.h
nginx-1.20.0/src/stream/ngx_stream_write_filter_module.c
nginx-1.20.0/src/os/unix/
nginx-1.20.0/src/os/unix/ngx_alloc.c
nginx-1.20.0/src/os/unix/ngx_alloc.h
nginx-1.20.0/src/os/unix/ngx_atomic.h
nginx-1.20.0/src/os/unix/ngx_channel.c
nginx-1.20.0/src/os/unix/ngx_channel.h
nginx-1.20.0/src/os/unix/ngx_daemon.c
nginx-1.20.0/src/os/unix/ngx_darwin.h
nginx-1.20.0/src/os/unix/ngx_darwin_config.h
nginx-1.20.0/src/os/unix/ngx_darwin_init.c
nginx-1.20.0/src/os/unix/ngx_darwin_sendfile_chain.c
nginx-1.20.0/src/os/unix/ngx_dlopen.c
nginx-1.20.0/src/os/unix/ngx_dlopen.h
nginx-1.20.0/src/os/unix/ngx_errno.c
nginx-1.20.0/src/os/unix/ngx_errno.h
nginx-1.20.0/src/os/unix/ngx_file_aio_read.c
nginx-1.20.0/src/os/unix/ngx_files.c
nginx-1.20.0/src/os/unix/ngx_files.h
nginx-1.20.0/src/os/unix/ngx_freebsd.h
nginx-1.20.0/src/os/unix/ngx_freebsd_config.h
nginx-1.20.0/src/os/unix/ngx_linux.h
nginx-1.20.0/src/os/unix/ngx_freebsd_init.c
nginx-1.20.0/src/os/unix/ngx_freebsd_sendfile_chain.c
nginx-1.20.0/src/os/unix/ngx_gcc_atomic_amd64.h
nginx-1.20.0/src/os/unix/ngx_gcc_atomic_ppc.h
nginx-1.20.0/src/os/unix/ngx_gcc_atomic_sparc64.h
nginx-1.20.0/src/os/unix/ngx_gcc_atomic_x86.h
nginx-1.20.0/src/os/unix/ngx_linux_aio_read.c
nginx-1.20.0/src/os/unix/ngx_linux_config.h
nginx-1.20.0/src/os/unix/ngx_linux_init.c
nginx-1.20.0/src/os/unix/ngx_linux_sendfile_chain.c
nginx-1.20.0/src/os/unix/ngx_os.h
nginx-1.20.0/src/os/unix/ngx_posix_config.h
nginx-1.20.0/src/os/unix/ngx_posix_init.c
nginx-1.20.0/src/os/unix/ngx_process.c
nginx-1.20.0/src/os/unix/ngx_process.h
nginx-1.20.0/src/os/unix/ngx_process_cycle.c
nginx-1.20.0/src/os/unix/ngx_process_cycle.h
nginx-1.20.0/src/os/unix/ngx_readv_chain.c
nginx-1.20.0/src/os/unix/ngx_recv.c
nginx-1.20.0/src/os/unix/ngx_send.c
nginx-1.20.0/src/os/unix/ngx_setaffinity.c
nginx-1.20.0/src/os/unix/ngx_setaffinity.h
nginx-1.20.0/src/os/unix/ngx_setproctitle.c
nginx-1.20.0/src/os/unix/ngx_setproctitle.h
nginx-1.20.0/src/os/unix/ngx_shmem.c
nginx-1.20.0/src/os/unix/ngx_shmem.h
nginx-1.20.0/src/os/unix/ngx_socket.c
nginx-1.20.0/src/os/unix/ngx_socket.h
nginx-1.20.0/src/os/unix/ngx_solaris.h
nginx-1.20.0/src/os/unix/ngx_solaris_config.h
nginx-1.20.0/src/os/unix/ngx_solaris_init.c
nginx-1.20.0/src/os/unix/ngx_solaris_sendfilev_chain.c
nginx-1.20.0/src/os/unix/ngx_sunpro_amd64.il
nginx-1.20.0/src/os/unix/ngx_sunpro_atomic_sparc64.h
nginx-1.20.0/src/os/unix/ngx_sunpro_sparc64.il
nginx-1.20.0/src/os/unix/ngx_thread.h
nginx-1.20.0/src/os/unix/ngx_sunpro_x86.il
nginx-1.20.0/src/os/unix/ngx_thread_cond.c
nginx-1.20.0/src/os/unix/ngx_thread_id.c
nginx-1.20.0/src/os/unix/ngx_thread_mutex.c
nginx-1.20.0/src/os/unix/ngx_time.c
nginx-1.20.0/src/os/unix/ngx_time.h
nginx-1.20.0/src/os/unix/ngx_udp_recv.c
nginx-1.20.0/src/os/unix/ngx_udp_send.c
nginx-1.20.0/src/os/unix/ngx_udp_sendmsg_chain.c
nginx-1.20.0/src/os/unix/ngx_user.c
nginx-1.20.0/src/os/unix/ngx_user.h
nginx-1.20.0/src/os/unix/ngx_writev_chain.c
nginx-1.20.0/src/misc/ngx_cpp_test_module.cpp
nginx-1.20.0/src/misc/ngx_google_perftools_module.c
nginx-1.20.0/src/mail/ngx_mail.c
nginx-1.20.0/src/mail/ngx_mail.h
nginx-1.20.0/src/mail/ngx_mail_auth_http_module.c
nginx-1.20.0/src/mail/ngx_mail_core_module.c
nginx-1.20.0/src/mail/ngx_mail_handler.c
nginx-1.20.0/src/mail/ngx_mail_imap_handler.c
nginx-1.20.0/src/mail/ngx_mail_imap_module.c
nginx-1.20.0/src/mail/ngx_mail_imap_module.h
nginx-1.20.0/src/mail/ngx_mail_parse.c
nginx-1.20.0/src/mail/ngx_mail_pop3_handler.c
nginx-1.20.0/src/mail/ngx_mail_pop3_module.c
nginx-1.20.0/src/mail/ngx_mail_pop3_module.h
nginx-1.20.0/src/mail/ngx_mail_proxy_module.c
nginx-1.20.0/src/mail/ngx_mail_realip_module.c
nginx-1.20.0/src/mail/ngx_mail_smtp_handler.c
nginx-1.20.0/src/mail/ngx_mail_smtp_module.c
nginx-1.20.0/src/mail/ngx_mail_smtp_module.h
nginx-1.20.0/src/mail/ngx_mail_ssl_module.c
nginx-1.20.0/src/mail/ngx_mail_ssl_module.h
nginx-1.20.0/src/http/modules/
nginx-1.20.0/src/http/ngx_http.c
nginx-1.20.0/src/http/ngx_http.h
nginx-1.20.0/src/http/ngx_http_cache.h
nginx-1.20.0/src/http/ngx_http_config.h
nginx-1.20.0/src/http/ngx_http_copy_filter_module.c
nginx-1.20.0/src/http/ngx_http_core_module.c
nginx-1.20.0/src/http/ngx_http_core_module.h
nginx-1.20.0/src/http/ngx_http_file_cache.c
nginx-1.20.0/src/http/ngx_http_header_filter_module.c
nginx-1.20.0/src/http/ngx_http_parse.c
nginx-1.20.0/src/http/ngx_http_postpone_filter_module.c
nginx-1.20.0/src/http/ngx_http_request.c
nginx-1.20.0/src/http/ngx_http_request.h
nginx-1.20.0/src/http/ngx_http_request_body.c
nginx-1.20.0/src/http/ngx_http_script.c
nginx-1.20.0/src/http/v2/
nginx-1.20.0/src/http/ngx_http_script.h
nginx-1.20.0/src/http/ngx_http_special_response.c
nginx-1.20.0/src/http/ngx_http_upstream.c
nginx-1.20.0/src/http/ngx_http_upstream.h
nginx-1.20.0/src/http/ngx_http_upstream_round_robin.c
nginx-1.20.0/src/http/ngx_http_upstream_round_robin.h
nginx-1.20.0/src/http/ngx_http_variables.c
nginx-1.20.0/src/http/ngx_http_variables.h
nginx-1.20.0/src/http/ngx_http_write_filter_module.c
nginx-1.20.0/src/http/v2/ngx_http_v2.c
nginx-1.20.0/src/http/v2/ngx_http_v2.h
nginx-1.20.0/src/http/v2/ngx_http_v2_encode.c
nginx-1.20.0/src/http/v2/ngx_http_v2_filter_module.c
nginx-1.20.0/src/http/v2/ngx_http_v2_huff_decode.c
nginx-1.20.0/src/http/v2/ngx_http_v2_huff_encode.c
nginx-1.20.0/src/http/v2/ngx_http_v2_module.c
nginx-1.20.0/src/http/v2/ngx_http_v2_module.h
nginx-1.20.0/src/http/v2/ngx_http_v2_table.c
nginx-1.20.0/src/http/modules/ngx_http_access_module.c
nginx-1.20.0/src/http/modules/ngx_http_addition_filter_module.c
nginx-1.20.0/src/http/modules/ngx_http_auth_basic_module.c
nginx-1.20.0/src/http/modules/ngx_http_auth_request_module.c
nginx-1.20.0/src/http/modules/ngx_http_autoindex_module.c
nginx-1.20.0/src/http/modules/ngx_http_browser_module.c
nginx-1.20.0/src/http/modules/ngx_http_charset_filter_module.c
nginx-1.20.0/src/http/modules/ngx_http_chunked_filter_module.c
nginx-1.20.0/src/http/modules/ngx_http_dav_module.c
nginx-1.20.0/src/http/modules/ngx_http_degradation_module.c
nginx-1.20.0/src/http/modules/ngx_http_empty_gif_module.c
nginx-1.20.0/src/http/modules/ngx_http_fastcgi_module.c
nginx-1.20.0/src/http/modules/perl/
nginx-1.20.0/src/http/modules/ngx_http_flv_module.c
nginx-1.20.0/src/http/modules/ngx_http_geo_module.c
nginx-1.20.0/src/http/modules/ngx_http_geoip_module.c
nginx-1.20.0/src/http/modules/ngx_http_grpc_module.c
nginx-1.20.0/src/http/modules/ngx_http_gunzip_filter_module.c
nginx-1.20.0/src/http/modules/ngx_http_gzip_filter_module.c
nginx-1.20.0/src/http/modules/ngx_http_gzip_static_module.c
nginx-1.20.0/src/http/modules/ngx_http_headers_filter_module.c
nginx-1.20.0/src/http/modules/ngx_http_image_filter_module.c
nginx-1.20.0/src/http/modules/ngx_http_index_module.c
nginx-1.20.0/src/http/modules/ngx_http_limit_conn_module.c
nginx-1.20.0/src/http/modules/ngx_http_limit_req_module.c
nginx-1.20.0/src/http/modules/ngx_http_log_module.c
nginx-1.20.0/src/http/modules/ngx_http_map_module.c
nginx-1.20.0/src/http/modules/ngx_http_memcached_module.c
nginx-1.20.0/src/http/modules/ngx_http_mirror_module.c
nginx-1.20.0/src/http/modules/ngx_http_mp4_module.c
nginx-1.20.0/src/http/modules/ngx_http_not_modified_filter_module.c
nginx-1.20.0/src/http/modules/ngx_http_proxy_module.c
nginx-1.20.0/src/http/modules/ngx_http_random_index_module.c
nginx-1.20.0/src/http/modules/ngx_http_range_filter_module.c
nginx-1.20.0/src/http/modules/ngx_http_realip_module.c
nginx-1.20.0/src/http/modules/ngx_http_referer_module.c
nginx-1.20.0/src/http/modules/ngx_http_rewrite_module.c
nginx-1.20.0/src/http/modules/ngx_http_scgi_module.c
nginx-1.20.0/src/http/modules/ngx_http_secure_link_module.c
nginx-1.20.0/src/http/modules/ngx_http_slice_filter_module.c
nginx-1.20.0/src/http/modules/ngx_http_split_clients_module.c
nginx-1.20.0/src/http/modules/ngx_http_ssi_filter_module.c
nginx-1.20.0/src/http/modules/ngx_http_ssi_filter_module.h
nginx-1.20.0/src/http/modules/ngx_http_ssl_module.c
nginx-1.20.0/src/http/modules/ngx_http_ssl_module.h
nginx-1.20.0/src/http/modules/ngx_http_static_module.c
nginx-1.20.0/src/http/modules/ngx_http_stub_status_module.c
nginx-1.20.0/src/http/modules/ngx_http_sub_filter_module.c
nginx-1.20.0/src/http/modules/ngx_http_try_files_module.c
nginx-1.20.0/src/http/modules/ngx_http_upstream_hash_module.c
nginx-1.20.0/src/http/modules/ngx_http_upstream_ip_hash_module.c
nginx-1.20.0/src/http/modules/ngx_http_upstream_keepalive_module.c
nginx-1.20.0/src/http/modules/ngx_http_upstream_random_module.c
nginx-1.20.0/src/http/modules/ngx_http_upstream_least_conn_module.c
nginx-1.20.0/src/http/modules/ngx_http_upstream_zone_module.c
nginx-1.20.0/src/http/modules/ngx_http_userid_filter_module.c
nginx-1.20.0/src/http/modules/ngx_http_uwsgi_module.c
nginx-1.20.0/src/http/modules/ngx_http_xslt_filter_module.c
nginx-1.20.0/src/http/modules/perl/Makefile.PL
nginx-1.20.0/src/http/modules/perl/nginx.pm
nginx-1.20.0/src/http/modules/perl/nginx.xs
nginx-1.20.0/src/http/modules/perl/ngx_http_perl_module.c
nginx-1.20.0/src/http/modules/perl/ngx_http_perl_module.h
nginx-1.20.0/src/http/modules/perl/typemap
nginx-1.20.0/src/event/modules/
nginx-1.20.0/src/event/ngx_event.c
nginx-1.20.0/src/event/ngx_event.h
nginx-1.20.0/src/event/ngx_event_accept.c
nginx-1.20.0/src/event/ngx_event_connect.c
nginx-1.20.0/src/event/ngx_event_connect.h
nginx-1.20.0/src/event/ngx_event_openssl.c
nginx-1.20.0/src/event/ngx_event_openssl.h
nginx-1.20.0/src/event/ngx_event_openssl_stapling.c
nginx-1.20.0/src/event/ngx_event_pipe.c
nginx-1.20.0/src/event/ngx_event_pipe.h
nginx-1.20.0/src/event/ngx_event_posted.c
nginx-1.20.0/src/event/ngx_event_posted.h
nginx-1.20.0/src/event/ngx_event_timer.c
nginx-1.20.0/src/event/ngx_event_timer.h
nginx-1.20.0/src/event/ngx_event_udp.c
nginx-1.20.0/src/event/modules/ngx_devpoll_module.c
nginx-1.20.0/src/event/modules/ngx_epoll_module.c
nginx-1.20.0/src/event/modules/ngx_eventport_module.c
nginx-1.20.0/src/event/modules/ngx_kqueue_module.c
nginx-1.20.0/src/event/modules/ngx_poll_module.c
nginx-1.20.0/src/event/modules/ngx_select_module.c
nginx-1.20.0/src/event/modules/ngx_win32_poll_module.c
nginx-1.20.0/src/event/modules/ngx_win32_select_module.c
nginx-1.20.0/src/core/nginx.c
nginx-1.20.0/src/core/nginx.h
nginx-1.20.0/src/core/ngx_array.c
nginx-1.20.0/src/core/ngx_array.h
nginx-1.20.0/src/core/ngx_buf.c
nginx-1.20.0/src/core/ngx_buf.h
nginx-1.20.0/src/core/ngx_conf_file.c
nginx-1.20.0/src/core/ngx_conf_file.h
nginx-1.20.0/src/core/ngx_config.h
nginx-1.20.0/src/core/ngx_connection.c
nginx-1.20.0/src/core/ngx_connection.h
nginx-1.20.0/src/core/ngx_core.h
nginx-1.20.0/src/core/ngx_cpuinfo.c
nginx-1.20.0/src/core/ngx_crc.h
nginx-1.20.0/src/core/ngx_crc32.c
nginx-1.20.0/src/core/ngx_crc32.h
nginx-1.20.0/src/core/ngx_crypt.c
nginx-1.20.0/src/core/ngx_crypt.h
nginx-1.20.0/src/core/ngx_cycle.c
nginx-1.20.0/src/core/ngx_cycle.h
nginx-1.20.0/src/core/ngx_file.c
nginx-1.20.0/src/core/ngx_file.h
nginx-1.20.0/src/core/ngx_hash.c
nginx-1.20.0/src/core/ngx_hash.h
nginx-1.20.0/src/core/ngx_inet.c
nginx-1.20.0/src/core/ngx_inet.h
nginx-1.20.0/src/core/ngx_list.c
nginx-1.20.0/src/core/ngx_list.h
nginx-1.20.0/src/core/ngx_log.c
nginx-1.20.0/src/core/ngx_log.h
nginx-1.20.0/src/core/ngx_md5.c
nginx-1.20.0/src/core/ngx_md5.h
nginx-1.20.0/src/core/ngx_module.c
nginx-1.20.0/src/core/ngx_module.h
nginx-1.20.0/src/core/ngx_murmurhash.c
nginx-1.20.0/src/core/ngx_murmurhash.h
nginx-1.20.0/src/core/ngx_open_file_cache.c
nginx-1.20.0/src/core/ngx_open_file_cache.h
nginx-1.20.0/src/core/ngx_output_chain.c
nginx-1.20.0/src/core/ngx_palloc.c
nginx-1.20.0/src/core/ngx_palloc.h
nginx-1.20.0/src/core/ngx_parse.c
nginx-1.20.0/src/core/ngx_parse.h
nginx-1.20.0/src/core/ngx_parse_time.c
nginx-1.20.0/src/core/ngx_queue.c
nginx-1.20.0/src/core/ngx_parse_time.h
nginx-1.20.0/src/core/ngx_proxy_protocol.c
nginx-1.20.0/src/core/ngx_proxy_protocol.h
nginx-1.20.0/src/core/ngx_queue.h
nginx-1.20.0/src/core/ngx_radix_tree.c
nginx-1.20.0/src/core/ngx_radix_tree.h
nginx-1.20.0/src/core/ngx_rbtree.c
nginx-1.20.0/src/core/ngx_rbtree.h
nginx-1.20.0/src/core/ngx_regex.c
nginx-1.20.0/src/core/ngx_regex.h
nginx-1.20.0/src/core/ngx_resolver.c
nginx-1.20.0/src/core/ngx_resolver.h
nginx-1.20.0/src/core/ngx_rwlock.c
nginx-1.20.0/src/core/ngx_rwlock.h
nginx-1.20.0/src/core/ngx_sha1.c
nginx-1.20.0/src/core/ngx_sha1.h
nginx-1.20.0/src/core/ngx_shmtx.c
nginx-1.20.0/src/core/ngx_shmtx.h
nginx-1.20.0/src/core/ngx_slab.c
nginx-1.20.0/src/core/ngx_slab.h
nginx-1.20.0/src/core/ngx_spinlock.c
nginx-1.20.0/src/core/ngx_string.c
nginx-1.20.0/src/core/ngx_string.h
nginx-1.20.0/src/core/ngx_syslog.c
nginx-1.20.0/src/core/ngx_syslog.h
nginx-1.20.0/src/core/ngx_thread_pool.c
nginx-1.20.0/src/core/ngx_thread_pool.h
nginx-1.20.0/src/core/ngx_times.c
nginx-1.20.0/src/core/ngx_times.h
nginx-1.20.0/contrib/README
nginx-1.20.0/contrib/geo2nginx.pl
nginx-1.20.0/contrib/unicode2nginx/
nginx-1.20.0/contrib/vim/
nginx-1.20.0/contrib/vim/ftdetect/
nginx-1.20.0/contrib/vim/ftplugin/
nginx-1.20.0/contrib/vim/indent/
nginx-1.20.0/contrib/vim/syntax/
nginx-1.20.0/contrib/vim/syntax/nginx.vim
nginx-1.20.0/contrib/vim/indent/nginx.vim
nginx-1.20.0/contrib/vim/ftplugin/nginx.vim
nginx-1.20.0/contrib/vim/ftdetect/nginx.vim
nginx-1.20.0/contrib/unicode2nginx/koi-utf
nginx-1.20.0/contrib/unicode2nginx/unicode-to-nginx.pl
nginx-1.20.0/contrib/unicode2nginx/win-utf
nginx-1.20.0/conf/fastcgi.conf
nginx-1.20.0/conf/fastcgi_params
nginx-1.20.0/conf/koi-utf
nginx-1.20.0/conf/koi-win
nginx-1.20.0/conf/mime.types
nginx-1.20.0/conf/nginx.conf
nginx-1.20.0/conf/scgi_params
nginx-1.20.0/conf/uwsgi_params
nginx-1.20.0/conf/win-utf
nginx-1.20.0/auto/cc/
nginx-1.20.0/auto/define
nginx-1.20.0/auto/endianness
nginx-1.20.0/auto/feature
nginx-1.20.0/auto/have
nginx-1.20.0/auto/have_headers
nginx-1.20.0/auto/headers
nginx-1.20.0/auto/include
nginx-1.20.0/auto/init
nginx-1.20.0/auto/install
nginx-1.20.0/auto/lib/
nginx-1.20.0/auto/make
nginx-1.20.0/auto/module
nginx-1.20.0/auto/modules
nginx-1.20.0/auto/nohave
nginx-1.20.0/auto/options
nginx-1.20.0/auto/os/
nginx-1.20.0/auto/sources
nginx-1.20.0/auto/stubs
nginx-1.20.0/auto/summary
nginx-1.20.0/auto/threads
nginx-1.20.0/auto/types/
nginx-1.20.0/auto/unix
nginx-1.20.0/auto/types/sizeof
nginx-1.20.0/auto/types/typedef
nginx-1.20.0/auto/types/uintptr_t
nginx-1.20.0/auto/types/value
nginx-1.20.0/auto/os/conf
nginx-1.20.0/auto/os/darwin
nginx-1.20.0/auto/os/freebsd
nginx-1.20.0/auto/os/linux
nginx-1.20.0/auto/os/solaris
nginx-1.20.0/auto/os/win32
nginx-1.20.0/auto/lib/conf
nginx-1.20.0/auto/lib/geoip/
nginx-1.20.0/auto/lib/google-perftools/
nginx-1.20.0/auto/lib/libatomic/
nginx-1.20.0/auto/lib/libgd/
nginx-1.20.0/auto/lib/libxslt/
nginx-1.20.0/auto/lib/make
nginx-1.20.0/auto/lib/openssl/
nginx-1.20.0/auto/lib/pcre/
nginx-1.20.0/auto/lib/perl/
nginx-1.20.0/auto/lib/zlib/
nginx-1.20.0/auto/lib/zlib/conf
nginx-1.20.0/auto/lib/zlib/make
nginx-1.20.0/auto/lib/zlib/makefile.bcc
nginx-1.20.0/auto/lib/zlib/makefile.msvc
nginx-1.20.0/auto/lib/zlib/makefile.owc
nginx-1.20.0/auto/lib/perl/conf
nginx-1.20.0/auto/lib/perl/make
nginx-1.20.0/auto/lib/pcre/conf
nginx-1.20.0/auto/lib/pcre/make
nginx-1.20.0/auto/lib/pcre/makefile.bcc
nginx-1.20.0/auto/lib/pcre/makefile.msvc
nginx-1.20.0/auto/lib/pcre/makefile.owc
nginx-1.20.0/auto/lib/openssl/conf
nginx-1.20.0/auto/lib/openssl/make
nginx-1.20.0/auto/lib/openssl/makefile.bcc
nginx-1.20.0/auto/lib/openssl/makefile.msvc
nginx-1.20.0/auto/lib/libxslt/conf
nginx-1.20.0/auto/lib/libgd/conf
nginx-1.20.0/auto/lib/libatomic/conf
nginx-1.20.0/auto/lib/libatomic/make
nginx-1.20.0/auto/lib/google-perftools/conf
nginx-1.20.0/auto/lib/geoip/conf
nginx-1.20.0/auto/cc/acc
nginx-1.20.0/auto/cc/bcc
nginx-1.20.0/auto/cc/ccc
nginx-1.20.0/auto/cc/clang
nginx-1.20.0/auto/cc/conf
nginx-1.20.0/auto/cc/gcc
nginx-1.20.0/auto/cc/icc
nginx-1.20.0/auto/cc/msvc
nginx-1.20.0/auto/cc/name
nginx-1.20.0/auto/cc/owc
nginx-1.20.0/auto/cc/sunc

Nginxコネクタをコンパイルしてインストール

$cd nginx-1.20.0/
$pwd
/home/ec2-user/download/nginx-1.20.0

$ls
auto  CHANGES  CHANGES.ru  conf  configure  contrib  html  LICENSE  man  README  src

$./configure --with-compat --add-dynamic-module=../ModSecurity-nginx
checking for OS
 + Linux 5.10.96-90.460.amzn2.x86_64 x86_64
checking for C compiler ... found
 + using GNU C compiler
 + gcc version: 7.3.1 20180712 (Red Hat 7.3.1-13) (GCC)
checking for gcc -pipe switch ... found
checking for -Wl,-E switch ... found
checking for gcc builtin atomic operations ... found
checking for C99 variadic macros ... found
checking for gcc variadic macros ... found
checking for gcc builtin 64 bit byteswap ... found
checking for unistd.h ... found
checking for inttypes.h ... found
checking for limits.h ... found
checking for sys/filio.h ... not found
checking for sys/param.h ... found
checking for sys/mount.h ... found
checking for sys/statvfs.h ... found
checking for crypt.h ... found
checking for Linux specific features
checking for epoll ... found
checking for EPOLLRDHUP ... found
checking for EPOLLEXCLUSIVE ... found
checking for eventfd() ... found
checking for O_PATH ... found
checking for sendfile() ... found
checking for sendfile64() ... found
checking for sys/prctl.h ... found
checking for prctl(PR_SET_DUMPABLE) ... found
checking for prctl(PR_SET_KEEPCAPS) ... found
checking for capabilities ... found
checking for crypt_r() ... found
checking for sys/vfs.h ... found
checking for nobody group ... found
checking for poll() ... found
checking for /dev/poll ... not found
checking for kqueue ... not found
checking for crypt() ... not found
checking for crypt() in libcrypt ... found
checking for F_READAHEAD ... not found
checking for posix_fadvise() ... found
checking for O_DIRECT ... found
checking for F_NOCACHE ... not found
checking for directio() ... not found
checking for statfs() ... found
checking for statvfs() ... found
checking for dlopen() ... not found
checking for dlopen() in libdl ... found
checking for sched_yield() ... found
checking for sched_setaffinity() ... found
checking for SO_SETFIB ... not found
checking for SO_REUSEPORT ... found
checking for SO_ACCEPTFILTER ... not found
checking for SO_BINDANY ... not found
checking for IP_TRANSPARENT ... found
checking for IP_BINDANY ... not found
checking for IP_BIND_ADDRESS_NO_PORT ... found
checking for IP_RECVDSTADDR ... not found
checking for IP_SENDSRCADDR ... not found
checking for IP_PKTINFO ... found
checking for IPV6_RECVPKTINFO ... found
checking for TCP_DEFER_ACCEPT ... found
checking for TCP_KEEPIDLE ... found
checking for TCP_FASTOPEN ... found
checking for TCP_INFO ... found
checking for accept4() ... found
checking for int size ... 4 bytes
checking for long size ... 8 bytes
checking for long long size ... 8 bytes
checking for void * size ... 8 bytes
checking for uint32_t ... found
checking for uint64_t ... found
checking for sig_atomic_t ... found
checking for sig_atomic_t size ... 4 bytes
checking for socklen_t ... found
checking for in_addr_t ... found
checking for in_port_t ... found
checking for rlim_t ... found
checking for uintptr_t ... uintptr_t found
checking for system byte ordering ... little endian
checking for size_t size ... 8 bytes
checking for off_t size ... 8 bytes
checking for time_t size ... 8 bytes
checking for AF_INET6 ... found
checking for setproctitle() ... not found
checking for pread() ... found
checking for pwrite() ... found
checking for pwritev() ... found
checking for strerrordesc_np() ... not found
checking for sys_nerr ... found
checking for localtime_r() ... found
checking for clock_gettime(CLOCK_MONOTONIC) ... found
checking for posix_memalign() ... found
checking for memalign() ... found
checking for mmap(MAP_ANON|MAP_SHARED) ... found
checking for mmap("/dev/zero", MAP_SHARED) ... found
checking for System V shared memory ... found
checking for POSIX semaphores ... not found
checking for POSIX semaphores in libpthread ... found
checking for struct msghdr.msg_control ... found
checking for ioctl(FIONBIO) ... found
checking for ioctl(FIONREAD) ... found
checking for struct tm.tm_gmtoff ... found
checking for struct dirent.d_namlen ... not found
checking for struct dirent.d_type ... found
checking for sysconf(_SC_NPROCESSORS_ONLN) ... found
checking for sysconf(_SC_LEVEL1_DCACHE_LINESIZE) ... found
checking for openat(), fstatat() ... found
checking for getaddrinfo() ... found
configuring additional dynamic modules
adding module in ../ModSecurity-nginx
checking for ModSecurity library ... not found
checking for ModSecurity library in /usr/local/modsecurity ... found
 + ngx_http_modsecurity_module was configured
checking for PCRE library ... found
checking for PCRE JIT support ... found
checking for zlib library ... found
creating objs/Makefile

Configuration summary
  + using system PCRE library
  + OpenSSL library is not used
  + using system zlib library

  nginx path prefix: "/usr/local/nginx"
  nginx binary file: "/usr/local/nginx/sbin/nginx"
  nginx modules path: "/usr/local/nginx/modules"
  nginx configuration prefix: "/usr/local/nginx/conf"
  nginx configuration file: "/usr/local/nginx/conf/nginx.conf"
  nginx pid file: "/usr/local/nginx/logs/nginx.pid"
  nginx error log file: "/usr/local/nginx/logs/error.log"
  nginx http access log file: "/usr/local/nginx/logs/access.log"
  nginx http client request body temporary files: "client_body_temp"
  nginx http proxy temporary files: "proxy_temp"
  nginx http fastcgi temporary files: "fastcgi_temp"
  nginx http uwsgi temporary files: "uwsgi_temp"
  nginx http scgi temporary files: "scgi_temp"


$make modules
make -f objs/Makefile modules
make[1]: Entering directory `/home/ec2-user/download/nginx-1.20.0'
cc -c -fPIC -pipe  -O -W -Wall -Wpointer-arith -Wno-unused-parameter -Werror -g  -I src/core -I src/event -I src/event/modules -I src/os/unix -I /usr/local/modsecurity/include -I objs -I src/http -I src/http/modules \
        -o objs/addon/src/ngx_http_modsecurity_module.o \
        ../ModSecurity-nginx/src/ngx_http_modsecurity_module.c
cc -c -fPIC -pipe  -O -W -Wall -Wpointer-arith -Wno-unused-parameter -Werror -g  -I src/core -I src/event -I src/event/modules -I src/os/unix -I /usr/local/modsecurity/include -I objs -I src/http -I src/http/modules \
        -o objs/addon/src/ngx_http_modsecurity_pre_access.o \
        ../ModSecurity-nginx/src/ngx_http_modsecurity_pre_access.c
cc -c -fPIC -pipe  -O -W -Wall -Wpointer-arith -Wno-unused-parameter -Werror -g  -I src/core -I src/event -I src/event/modules -I src/os/unix -I /usr/local/modsecurity/include -I objs -I src/http -I src/http/modules \
        -o objs/addon/src/ngx_http_modsecurity_header_filter.o \
        ../ModSecurity-nginx/src/ngx_http_modsecurity_header_filter.c
cc -c -fPIC -pipe  -O -W -Wall -Wpointer-arith -Wno-unused-parameter -Werror -g  -I src/core -I src/event -I src/event/modules -I src/os/unix -I /usr/local/modsecurity/include -I objs -I src/http -I src/http/modules \
        -o objs/addon/src/ngx_http_modsecurity_body_filter.o \
        ../ModSecurity-nginx/src/ngx_http_modsecurity_body_filter.c
cc -c -fPIC -pipe  -O -W -Wall -Wpointer-arith -Wno-unused-parameter -Werror -g  -I src/core -I src/event -I src/event/modules -I src/os/unix -I /usr/local/modsecurity/include -I objs -I src/http -I src/http/modules \
        -o objs/addon/src/ngx_http_modsecurity_log.o \
        ../ModSecurity-nginx/src/ngx_http_modsecurity_log.c
cc -c -fPIC -pipe  -O -W -Wall -Wpointer-arith -Wno-unused-parameter -Werror -g  -I src/core -I src/event -I src/event/modules -I src/os/unix -I /usr/local/modsecurity/include -I objs -I src/http -I src/http/modules \
        -o objs/addon/src/ngx_http_modsecurity_rewrite.o \
        ../ModSecurity-nginx/src/ngx_http_modsecurity_rewrite.c
cc -c -fPIC -pipe  -O -W -Wall -Wpointer-arith -Wno-unused-parameter -Werror -g  -I src/core -I src/event -I src/event/modules -I src/os/unix -I /usr/local/modsecurity/include -I objs -I src/http -I src/http/modules \
        -o objs/ngx_http_modsecurity_module_modules.o \
        objs/ngx_http_modsecurity_module_modules.c
cc -o objs/ngx_http_modsecurity_module.so \
objs/addon/src/ngx_http_modsecurity_module.o \
objs/addon/src/ngx_http_modsecurity_pre_access.o \
objs/addon/src/ngx_http_modsecurity_header_filter.o \
objs/addon/src/ngx_http_modsecurity_body_filter.o \
objs/addon/src/ngx_http_modsecurity_log.o \
objs/addon/src/ngx_http_modsecurity_rewrite.o \
objs/ngx_http_modsecurity_module_modules.o \
-Wl,-rpath,/usr/local/modsecurity/lib -L/usr/local/modsecurity/lib -lmodsecurity \
-shared
make[1]: Leaving directory `/home/ec2-user/download/nginx-1.20.0'

$pwd
/home/ec2-user/download/nginx-1.20.0

$ls
auto  CHANGES  CHANGES.ru  conf  configure  contrib  html  LICENSE  Makefile  man  objs  README  src

$cd objs
$pwd
/home/ec2-user/download/nginx-1.20.0/objs

$ls
addon  autoconf.err  Makefile  ngx_auto_config.h  ngx_auto_headers.h  ngx_http_modsecurity_module_modules.c  ngx_http_modsecurity_module_modules.o  ngx_http_modsecurity_module.so  ngx_modules.c  src

$cp ngx_http_modsecurity_module.so /usr/share/nginx/modules/
cp: cannot create regular file ‘/usr/share/nginx/modules/’: Not a directory

$mkdir /usr/share/nginx/modules
$cp ngx_http_modsecurity_module.so /usr/share/nginx/modules/

ModSecurity コアルールセットをダウンロード

$cd ../../
$pwd
/home/ec2-user/download
$ls
ModSecurity  ModSecurity-nginx  nginx-1.20.0  nginx-1.20.0.tar.gz  ssdeep

$wget https://github.com/SpiderLabs/owasp-modsecurity-crs/archive/v3.2.0.tar.gz
--2022-02-19 10:30:41--  https://github.com/SpiderLabs/owasp-modsecurity-crs/archive/v3.2.0.tar.gz
Resolving github.com (github.com)... 140.82.114.4
Connecting to github.com (github.com)|140.82.114.4|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://codeload.github.com/SpiderLabs/owasp-modsecurity-crs/tar.gz/refs/tags/v3.2.0 [following]
--2022-02-19 10:30:41--  https://codeload.github.com/SpiderLabs/owasp-modsecurity-crs/tar.gz/refs/tags/v3.2.0
Resolving codeload.github.com (codeload.github.com)... 140.82.112.9
Connecting to codeload.github.com (codeload.github.com)|140.82.112.9|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [application/x-gzip]
Saving to: ‘v3.2.0.tar.gz’

    [ <=>                                                                                                                                                                                                ] 282,225     --.-K/s   in 0.04s

2022-02-19 10:30:41 (6.62 MB/s) - ‘v3.2.0.tar.gz’ saved [282225]

$ls
ModSecurity  ModSecurity-nginx  nginx-1.20.0  nginx-1.20.0.tar.gz  ssdeep  v3.2.0.tar.gz

ModSecurity コアルールセットを解凍

$tar -zxvf v3.2.0.tar.gz
owasp-modsecurity-crs-3.2.0/
owasp-modsecurity-crs-3.2.0/.github/
owasp-modsecurity-crs-3.2.0/.github/ISSUE_TEMPLATE.md
owasp-modsecurity-crs-3.2.0/.gitignore
owasp-modsecurity-crs-3.2.0/.gitmodules
owasp-modsecurity-crs-3.2.0/.travis.yml
owasp-modsecurity-crs-3.2.0/CHANGES
owasp-modsecurity-crs-3.2.0/CONTRIBUTING.md
owasp-modsecurity-crs-3.2.0/CONTRIBUTORS.md
owasp-modsecurity-crs-3.2.0/INSTALL
owasp-modsecurity-crs-3.2.0/KNOWN_BUGS
owasp-modsecurity-crs-3.2.0/LICENSE
owasp-modsecurity-crs-3.2.0/README.md
owasp-modsecurity-crs-3.2.0/crs-setup.conf.example
owasp-modsecurity-crs-3.2.0/documentation/
owasp-modsecurity-crs-3.2.0/documentation/OWASP-CRS-Documentation/
owasp-modsecurity-crs-3.2.0/documentation/README
owasp-modsecurity-crs-3.2.0/rules/
owasp-modsecurity-crs-3.2.0/rules/REQUEST-900-EXCLUSION-RULES-BEFORE-CRS.conf.example
owasp-modsecurity-crs-3.2.0/rules/REQUEST-901-INITIALIZATION.conf
owasp-modsecurity-crs-3.2.0/rules/REQUEST-903.9001-DRUPAL-EXCLUSION-RULES.conf
owasp-modsecurity-crs-3.2.0/rules/REQUEST-903.9002-WORDPRESS-EXCLUSION-RULES.conf
owasp-modsecurity-crs-3.2.0/rules/REQUEST-903.9003-NEXTCLOUD-EXCLUSION-RULES.conf
owasp-modsecurity-crs-3.2.0/rules/REQUEST-903.9004-DOKUWIKI-EXCLUSION-RULES.conf
owasp-modsecurity-crs-3.2.0/rules/REQUEST-903.9005-CPANEL-EXCLUSION-RULES.conf
owasp-modsecurity-crs-3.2.0/rules/REQUEST-903.9006-XENFORO-EXCLUSION-RULES.conf
owasp-modsecurity-crs-3.2.0/rules/REQUEST-905-COMMON-EXCEPTIONS.conf
owasp-modsecurity-crs-3.2.0/rules/REQUEST-910-IP-REPUTATION.conf
owasp-modsecurity-crs-3.2.0/rules/REQUEST-911-METHOD-ENFORCEMENT.conf
owasp-modsecurity-crs-3.2.0/rules/REQUEST-912-DOS-PROTECTION.conf
owasp-modsecurity-crs-3.2.0/rules/REQUEST-913-SCANNER-DETECTION.conf
owasp-modsecurity-crs-3.2.0/rules/REQUEST-920-PROTOCOL-ENFORCEMENT.conf
owasp-modsecurity-crs-3.2.0/rules/REQUEST-921-PROTOCOL-ATTACK.conf
owasp-modsecurity-crs-3.2.0/rules/REQUEST-930-APPLICATION-ATTACK-LFI.conf
owasp-modsecurity-crs-3.2.0/rules/REQUEST-931-APPLICATION-ATTACK-RFI.conf
owasp-modsecurity-crs-3.2.0/rules/REQUEST-932-APPLICATION-ATTACK-RCE.conf
owasp-modsecurity-crs-3.2.0/rules/REQUEST-933-APPLICATION-ATTACK-PHP.conf
owasp-modsecurity-crs-3.2.0/rules/REQUEST-934-APPLICATION-ATTACK-NODEJS.conf
owasp-modsecurity-crs-3.2.0/rules/REQUEST-941-APPLICATION-ATTACK-XSS.conf
owasp-modsecurity-crs-3.2.0/rules/REQUEST-942-APPLICATION-ATTACK-SQLI.conf
owasp-modsecurity-crs-3.2.0/rules/REQUEST-943-APPLICATION-ATTACK-SESSION-FIXATION.conf
owasp-modsecurity-crs-3.2.0/rules/REQUEST-944-APPLICATION-ATTACK-JAVA.conf
owasp-modsecurity-crs-3.2.0/rules/REQUEST-949-BLOCKING-EVALUATION.conf
owasp-modsecurity-crs-3.2.0/rules/RESPONSE-950-DATA-LEAKAGES.conf
owasp-modsecurity-crs-3.2.0/rules/RESPONSE-951-DATA-LEAKAGES-SQL.conf
owasp-modsecurity-crs-3.2.0/rules/RESPONSE-952-DATA-LEAKAGES-JAVA.conf
owasp-modsecurity-crs-3.2.0/rules/RESPONSE-953-DATA-LEAKAGES-PHP.conf
owasp-modsecurity-crs-3.2.0/rules/RESPONSE-954-DATA-LEAKAGES-IIS.conf
owasp-modsecurity-crs-3.2.0/rules/RESPONSE-959-BLOCKING-EVALUATION.conf
owasp-modsecurity-crs-3.2.0/rules/RESPONSE-980-CORRELATION.conf
owasp-modsecurity-crs-3.2.0/rules/RESPONSE-999-EXCLUSION-RULES-AFTER-CRS.conf.example
owasp-modsecurity-crs-3.2.0/rules/crawlers-user-agents.data
owasp-modsecurity-crs-3.2.0/rules/iis-errors.data
owasp-modsecurity-crs-3.2.0/rules/java-classes.data
owasp-modsecurity-crs-3.2.0/rules/java-code-leakages.data
owasp-modsecurity-crs-3.2.0/rules/java-errors.data
owasp-modsecurity-crs-3.2.0/rules/lfi-os-files.data
owasp-modsecurity-crs-3.2.0/rules/php-config-directives.data
owasp-modsecurity-crs-3.2.0/rules/php-errors.data
owasp-modsecurity-crs-3.2.0/rules/php-function-names-933150.data
owasp-modsecurity-crs-3.2.0/rules/php-function-names-933151.data
owasp-modsecurity-crs-3.2.0/rules/php-variables.data
owasp-modsecurity-crs-3.2.0/rules/restricted-files.data
owasp-modsecurity-crs-3.2.0/rules/restricted-upload.data
owasp-modsecurity-crs-3.2.0/rules/scanners-headers.data
owasp-modsecurity-crs-3.2.0/rules/scanners-urls.data
owasp-modsecurity-crs-3.2.0/rules/scanners-user-agents.data
owasp-modsecurity-crs-3.2.0/rules/scripting-user-agents.data
owasp-modsecurity-crs-3.2.0/rules/sql-errors.data
owasp-modsecurity-crs-3.2.0/rules/unix-shell.data
owasp-modsecurity-crs-3.2.0/rules/windows-powershell-commands.data
owasp-modsecurity-crs-3.2.0/util/
owasp-modsecurity-crs-3.2.0/util/README
owasp-modsecurity-crs-3.2.0/util/av-scanning/
owasp-modsecurity-crs-3.2.0/util/av-scanning/runAV/
owasp-modsecurity-crs-3.2.0/util/av-scanning/runAV/common.c
owasp-modsecurity-crs-3.2.0/util/av-scanning/runAV/common.h
owasp-modsecurity-crs-3.2.0/util/av-scanning/runAV/comp
owasp-modsecurity-crs-3.2.0/util/av-scanning/runAV/runAV-clamd.c
owasp-modsecurity-crs-3.2.0/util/av-scanning/runAV/runAV.c
owasp-modsecurity-crs-3.2.0/util/av-scanning/runav.pl
owasp-modsecurity-crs-3.2.0/util/browser-tools/
owasp-modsecurity-crs-3.2.0/util/browser-tools/js-overrides.js
owasp-modsecurity-crs-3.2.0/util/crs2-renumbering/
owasp-modsecurity-crs-3.2.0/util/crs2-renumbering/IdNumbering.csv
owasp-modsecurity-crs-3.2.0/util/crs2-renumbering/README
owasp-modsecurity-crs-3.2.0/util/crs2-renumbering/update.py
owasp-modsecurity-crs-3.2.0/util/docker/
owasp-modsecurity-crs-3.2.0/util/docker/Dockerfile
owasp-modsecurity-crs-3.2.0/util/docker/Dockerfile-2.9-apache
owasp-modsecurity-crs-3.2.0/util/docker/Dockerfile-3.0-apache
owasp-modsecurity-crs-3.2.0/util/docker/Dockerfile-3.0-nginx
owasp-modsecurity-crs-3.2.0/util/docker/README.md
owasp-modsecurity-crs-3.2.0/util/docker/REQUEST-900-EXCLUSION-RULES-BEFORE-CRS.conf
owasp-modsecurity-crs-3.2.0/util/docker/RESPONSE-999-EXCLUSION-RULES-AFTER-CRS.conf
owasp-modsecurity-crs-3.2.0/util/docker/docker-compose.yaml
owasp-modsecurity-crs-3.2.0/util/docker/docker-entrypoint.sh
owasp-modsecurity-crs-3.2.0/util/docker/httpd-logging-after-modsec.conf
owasp-modsecurity-crs-3.2.0/util/docker/httpd-logging-before-modsec.conf
owasp-modsecurity-crs-3.2.0/util/docker/proxy.conf
owasp-modsecurity-crs-3.2.0/util/geo-location/
owasp-modsecurity-crs-3.2.0/util/geo-location/README
owasp-modsecurity-crs-3.2.0/util/honeypot-sensor/
owasp-modsecurity-crs-3.2.0/util/honeypot-sensor/README.md
owasp-modsecurity-crs-3.2.0/util/honeypot-sensor/mlogc-honeypot-sensor.conf
owasp-modsecurity-crs-3.2.0/util/honeypot-sensor/modsecurity_crs_10_honeypot.conf
owasp-modsecurity-crs-3.2.0/util/id-range
owasp-modsecurity-crs-3.2.0/util/integration/
owasp-modsecurity-crs-3.2.0/util/integration/format_tests.py
owasp-modsecurity-crs-3.2.0/util/integration/requirements.txt
owasp-modsecurity-crs-3.2.0/util/join-multiline-rules/
owasp-modsecurity-crs-3.2.0/util/join-multiline-rules/join.py
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-932100.txt
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-932105.txt
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-932106.txt
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-932110.txt
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-932115.txt
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-932130.data
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-932140.data
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-932150.txt
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-933131.data
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-933160.data
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-933161.data
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-934100.txt
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-941160.data
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-942120.data
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-942130.data
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-942140.data
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-942150.data
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-942170.data
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-942180.data
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-942190.data
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-942200.data
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-942210.data
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-942240.data
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-942260.data
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-942280.data
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-942300.data
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-942310.data
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-942320.data
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-942330.data
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-942340.data
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-942350.data
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-942360.data
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-942370.data
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-942380.data
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-942390.data
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-942400.data
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-942410.data
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-942470.data
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-942480.data
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-assemble-v2.pl
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-assemble.pl
owasp-modsecurity-crs-3.2.0/util/regexp-assemble/regexp-cmdline.py
owasp-modsecurity-crs-3.2.0/util/regression-tests/
owasp-modsecurity-crs-3.2.0/util/regression-tests/CRS_Tests.py
owasp-modsecurity-crs-3.2.0/util/regression-tests/CRS_Tests_Journal.py
owasp-modsecurity-crs-3.2.0/util/regression-tests/README.md
owasp-modsecurity-crs-3.2.0/util/regression-tests/__init__.py
owasp-modsecurity-crs-3.2.0/util/regression-tests/config.ini
owasp-modsecurity-crs-3.2.0/util/regression-tests/conftest.py
owasp-modsecurity-crs-3.2.0/util/regression-tests/requirements.txt
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-911-METHOD-ENFORCEMENT/
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-911-METHOD-ENFORCEMENT/911100.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-913-SCANNER-DETECTION/
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-913-SCANNER-DETECTION/913100.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-913-SCANNER-DETECTION/913110.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-913-SCANNER-DETECTION/913120.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920100.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920120.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920160.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920170.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920180.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920190.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920200.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920210.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920220.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920230.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920240.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920250.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920260.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920270.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920271.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920272.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920273.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920274.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920280.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920290.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920300.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920310.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920311.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920320.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920330.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920340.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920350.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920360.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920370.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920380.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920390.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920400.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920420.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920430.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920440.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920450.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920460.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920470.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920480.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920490.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-921-PROTOCOL-ATTACK/
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-921-PROTOCOL-ATTACK/921110.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-921-PROTOCOL-ATTACK/921120.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-921-PROTOCOL-ATTACK/921130.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-921-PROTOCOL-ATTACK/921140.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-921-PROTOCOL-ATTACK/921150.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-921-PROTOCOL-ATTACK/921160.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-930-APPLICATION-ATTACK-LFI/
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-930-APPLICATION-ATTACK-LFI/930100.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-930-APPLICATION-ATTACK-LFI/930110.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-930-APPLICATION-ATTACK-LFI/930120.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-931-APPLICATION-ATTACK-RFI/
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-931-APPLICATION-ATTACK-RFI/931100.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-931-APPLICATION-ATTACK-RFI/931110.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-931-APPLICATION-ATTACK-RFI/931120.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-931-APPLICATION-ATTACK-RFI/931130.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-932-APPLICATION-ATTACK-RCE/
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-932-APPLICATION-ATTACK-RCE/932100.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-932-APPLICATION-ATTACK-RCE/932140.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-933-APPLICATION-ATTACK-PHP/
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-933-APPLICATION-ATTACK-PHP/933100.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-933-APPLICATION-ATTACK-PHP/933110.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-933-APPLICATION-ATTACK-PHP/933120.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-933-APPLICATION-ATTACK-PHP/933130.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-933-APPLICATION-ATTACK-PHP/933131.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-933-APPLICATION-ATTACK-PHP/933140.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-933-APPLICATION-ATTACK-PHP/933150.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-933-APPLICATION-ATTACK-PHP/933151.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-933-APPLICATION-ATTACK-PHP/933160.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-933-APPLICATION-ATTACK-PHP/933161.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-933-APPLICATION-ATTACK-PHP/933170.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-933-APPLICATION-ATTACK-PHP/933180.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-933-APPLICATION-ATTACK-PHP/933210.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-934-APPLICATION-ATTACK-NODEJS/
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-934-APPLICATION-ATTACK-NODEJS/934100.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-941-APPLICATION-ATTACK-XSS/
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-941-APPLICATION-ATTACK-XSS/941100.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-941-APPLICATION-ATTACK-XSS/941101.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-941-APPLICATION-ATTACK-XSS/941110.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-941-APPLICATION-ATTACK-XSS/941120.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-941-APPLICATION-ATTACK-XSS/941130.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-941-APPLICATION-ATTACK-XSS/941140.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-941-APPLICATION-ATTACK-XSS/941150.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-941-APPLICATION-ATTACK-XSS/941160.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-941-APPLICATION-ATTACK-XSS/941170.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-941-APPLICATION-ATTACK-XSS/941180.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-941-APPLICATION-ATTACK-XSS/941190.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-941-APPLICATION-ATTACK-XSS/941200.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-941-APPLICATION-ATTACK-XSS/941210.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-941-APPLICATION-ATTACK-XSS/941220.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-941-APPLICATION-ATTACK-XSS/941230.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-941-APPLICATION-ATTACK-XSS/941240.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-941-APPLICATION-ATTACK-XSS/941250.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-941-APPLICATION-ATTACK-XSS/941260.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-941-APPLICATION-ATTACK-XSS/941270.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-941-APPLICATION-ATTACK-XSS/941280.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-941-APPLICATION-ATTACK-XSS/941290.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-941-APPLICATION-ATTACK-XSS/941300.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-941-APPLICATION-ATTACK-XSS/941310.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-941-APPLICATION-ATTACK-XSS/941320.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-941-APPLICATION-ATTACK-XSS/941330.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-941-APPLICATION-ATTACK-XSS/941340.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-941-APPLICATION-ATTACK-XSS/941350.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-941-APPLICATION-ATTACK-XSS/941360.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-941-APPLICATION-ATTACK-XSS/941370.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-941-APPLICATION-ATTACK-XSS/941380.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942100.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942101.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942110.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942120.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942130.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942140.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942150.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942160.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942180.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942190.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942200.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942210.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942220.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942230.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942240.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942250.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942260.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942270.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942280.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942290.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942300.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942310.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942320.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942330.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942340.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942350.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942360.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942361.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942370.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942380.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942390.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942400.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942410.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942420.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942421.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942430.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942431.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942432.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942440.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942450.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942470.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942480.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942490.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942500.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942510.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-942-APPLICATION-ATTACK-SQLI/942511.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-943-APPLICATION-ATTACK-SESSION-FIXATION/
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-943-APPLICATION-ATTACK-SESSION-FIXATION/943100.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-943-APPLICATION-ATTACK-SESSION-FIXATION/943110.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-943-APPLICATION-ATTACK-SESSION-FIXATION/943120.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-944-APPLICATION-ATTACK-JAVA/
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-944-APPLICATION-ATTACK-JAVA/944000.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-944-APPLICATION-ATTACK-JAVA/944100.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-944-APPLICATION-ATTACK-JAVA/944110.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-944-APPLICATION-ATTACK-JAVA/944120.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-944-APPLICATION-ATTACK-JAVA/944130.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-944-APPLICATION-ATTACK-JAVA/944200.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-944-APPLICATION-ATTACK-JAVA/944210.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-944-APPLICATION-ATTACK-JAVA/944240.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-944-APPLICATION-ATTACK-JAVA/944250.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/REQUEST-944-APPLICATION-ATTACK-JAVA/944300.yaml
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/base_positive_rules.py
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/positivetest-light.yaml.skeleton
owasp-modsecurity-crs-3.2.0/util/regression-tests/tests/positivetest.yaml.skeleton
owasp-modsecurity-crs-3.2.0/util/regression-tests/utils/
owasp-modsecurity-crs-3.2.0/util/regression-tests/utils/data/
owasp-modsecurity-crs-3.2.0/util/regression-tests/utils/data/popularUAs.data
owasp-modsecurity-crs-3.2.0/util/regression-tests/utils/testSampling.py
owasp-modsecurity-crs-3.2.0/util/regression-tests/utils/testUserAgents.py
owasp-modsecurity-crs-3.2.0/util/send-payload-pls.sh
owasp-modsecurity-crs-3.2.0/util/verify.rb
owasp-modsecurity-crs-3.2.0/util/virtual-patching/
owasp-modsecurity-crs-3.2.0/util/virtual-patching/arachni2modsec.pl
owasp-modsecurity-crs-3.2.0/util/virtual-patching/zap2modsec.pl

$pwd
/home/ec2-user/download

$ls
ModSecurity  ModSecurity-nginx  nginx-1.20.0  nginx-1.20.0.tar.gz  owasp-modsecurity-crs-3.2.0  ssdeep  v3.2.0.tar.gz

ModSecurity コアルールセットをインストール

$mv owasp-modsecurity-crs-3.2.0 owasp-modsecurity-crs
$ls
ModSecurity  ModSecurity-nginx  nginx-1.20.0  nginx-1.20.0.tar.gz  owasp-modsecurity-crs  ssdeep  v3.2.0.tar.gz

$cd owasp-modsecurity-crs
$pwd
/home/ec2-user/download/owasp-modsecurity-crs
$ls
CHANGES  CONTRIBUTING.md  CONTRIBUTORS.md  crs-setup.conf.example  documentation  INSTALL  KNOWN_BUGS  LICENSE  README.md  rules  util

$mv crs-setup.conf.example crs-setup.conf
$ls
CHANGES  CONTRIBUTING.md  CONTRIBUTORS.md  crs-setup.conf  documentation  INSTALL  KNOWN_BUGS  LICENSE  README.md  rules  util

$cd rules/
$pwd
/home/ec2-user/download/owasp-modsecurity-crs/rules
$ls
crawlers-user-agents.data       REQUEST-900-EXCLUSION-RULES-BEFORE-CRS.conf.example  REQUEST-912-DOS-PROTECTION.conf             REQUEST-943-APPLICATION-ATTACK-SESSION-FIXATION.conf  restricted-files.data
iis-errors.data                 REQUEST-901-INITIALIZATION.conf                      REQUEST-913-SCANNER-DETECTION.conf          REQUEST-944-APPLICATION-ATTACK-JAVA.conf              restricted-upload.data
java-classes.data               REQUEST-903.9001-DRUPAL-EXCLUSION-RULES.conf         REQUEST-920-PROTOCOL-ENFORCEMENT.conf       REQUEST-949-BLOCKING-EVALUATION.conf                  scanners-headers.data
java-code-leakages.data         REQUEST-903.9002-WORDPRESS-EXCLUSION-RULES.conf      REQUEST-921-PROTOCOL-ATTACK.conf            RESPONSE-950-DATA-LEAKAGES.conf                       scanners-urls.data
java-errors.data                REQUEST-903.9003-NEXTCLOUD-EXCLUSION-RULES.conf      REQUEST-930-APPLICATION-ATTACK-LFI.conf     RESPONSE-951-DATA-LEAKAGES-SQL.conf                   scanners-user-agents.data
lfi-os-files.data               REQUEST-903.9004-DOKUWIKI-EXCLUSION-RULES.conf       REQUEST-931-APPLICATION-ATTACK-RFI.conf     RESPONSE-952-DATA-LEAKAGES-JAVA.conf                  scripting-user-agents.data
php-config-directives.data      REQUEST-903.9005-CPANEL-EXCLUSION-RULES.conf         REQUEST-932-APPLICATION-ATTACK-RCE.conf     RESPONSE-953-DATA-LEAKAGES-PHP.conf                   sql-errors.data
php-errors.data                 REQUEST-903.9006-XENFORO-EXCLUSION-RULES.conf        REQUEST-933-APPLICATION-ATTACK-PHP.conf     RESPONSE-954-DATA-LEAKAGES-IIS.conf                   unix-shell.data
php-function-names-933150.data  REQUEST-905-COMMON-EXCEPTIONS.conf                   REQUEST-934-APPLICATION-ATTACK-NODEJS.conf  RESPONSE-959-BLOCKING-EVALUATION.conf                 windows-powershell-commands.data
php-function-names-933151.data  REQUEST-910-IP-REPUTATION.conf                       REQUEST-941-APPLICATION-ATTACK-XSS.conf     RESPONSE-980-CORRELATION.conf
php-variables.data              REQUEST-911-METHOD-ENFORCEMENT.conf                  REQUEST-942-APPLICATION-ATTACK-SQLI.conf    RESPONSE-999-EXCLUSION-RULES-AFTER-CRS.conf.example

$mv REQUEST-900-EXCLUSION-RULES-BEFORE-CRS.conf.example REQUEST-900-EXCLUSION-RULES-BEFORE-CRS.conf
$cd /home/ec2-user/download
$ls
ModSecurity  ModSecurity-nginx  nginx-1.20.0  nginx-1.20.0.tar.gz  owasp-modsecurity-crs  ssdeep  v3.2.0.tar.gz
$mv mv owasp-modsecurity-crs /usr/local

おわりに

EC2にNginx ModSecurityをインストールしたときのメモは以上です。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0