This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by suricata configure 2.0.2, which was generated by GNU Autoconf 2.69. Invocation command line was $ ./configure --enable-old-barnyard2 --enable-nfqueue --enable-nflog --enable-af-packet --enable-lua --enable-geoip --enable-pfring --with-libpfring-includes=/usr/local/pfring/include --with-libpfring-libraries=/usr/local/pfring/lib --with-libpcap-includes=/usr/local/pfring/include --with-libpcap-libraries=/usr/local/pfring/lib ## --------- ## ## Platform. ## ## --------- ## hostname = octeon uname -m = mips64 uname -r = 2.6.32.27-Cavium-Octeon uname -s = Linux uname -v = #1 SMP Thu Jul 31 14:31:36 IST 2014 /usr/bin/uname -p = unknown /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /usr/local/bin PATH: /usr/bin PATH: /bin PATH: /usr/games ## ----------- ## ## Core tests. ## ## ----------- ## configure:2599: checking for a BSD-compatible install configure:2667: result: /usr/bin/install -c configure:2678: checking whether build environment is sane configure:2733: result: yes configure:2884: checking for a thread-safe mkdir -p configure:2923: result: /bin/mkdir -p configure:2930: checking for gawk configure:2946: found /usr/bin/gawk configure:2957: result: gawk configure:2968: checking whether make sets $(MAKE) configure:2990: result: yes configure:3019: checking whether make supports nested variables configure:3036: result: yes configure:3142: checking for style of include used by make configure:3170: result: GNU configure:3241: checking for gcc configure:3257: found /usr/bin/gcc configure:3268: result: gcc configure:3497: checking for C compiler version configure:3506: gcc --version >&5 gcc (Debian 4.3.2-1.1) 4.3.2 Copyright (C) 2008 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:3517: $? = 0 configure:3506: gcc -v >&5 Using built-in specs. Target: mips-linux-gnu Configured with: ../src/configure -v --with-pkgversion='Debian 4.3.2-1.1' --with-bugurl=file:///usr/share/doc/gcc-4.3/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --enable-shared --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --enable-nls --with-gxx-include-dir=/usr/include/c++/4.3 --program-suffix=-4.3 --enable-clocale=gnu --enable-libstdcxx-debug --enable-objc-gc --enable-mpfr --disable-libssp --enable-checking=release --build=mips-linux-gnu --host=mips-linux-gnu --target=mips-linux-gnu Thread model: posix gcc version 4.3.2 (Debian 4.3.2-1.1) configure:3517: $? = 0 configure:3506: gcc -V >&5 gcc: '-V' option must have argument configure:3517: $? = 1 configure:3506: gcc -qversion >&5 gcc: unrecognized option '-qversion' gcc: no input files configure:3517: $? = 1 configure:3537: checking whether the C compiler works configure:3559: gcc conftest.c >&5 configure:3563: $? = 0 configure:3611: result: yes configure:3614: checking for C compiler default output file name configure:3616: result: a.out configure:3622: checking for suffix of executables configure:3629: gcc -o conftest conftest.c >&5 configure:3633: $? = 0 configure:3655: result: configure:3677: checking whether we are cross compiling configure:3685: gcc -o conftest conftest.c >&5 configure:3689: $? = 0 configure:3696: ./conftest configure:3700: $? = 0 configure:3715: result: no configure:3720: checking for suffix of object files configure:3742: gcc -c conftest.c >&5 configure:3746: $? = 0 configure:3767: result: o configure:3771: checking whether we are using the GNU C compiler configure:3790: gcc -c conftest.c >&5 configure:3790: $? = 0 configure:3799: result: yes configure:3808: checking whether gcc accepts -g configure:3828: gcc -c -g conftest.c >&5 configure:3828: $? = 0 configure:3869: result: yes configure:3886: checking for gcc option to accept ISO C89 configure:3949: gcc -c -g -O2 conftest.c >&5 configure:3949: $? = 0 configure:3962: result: none needed configure:3984: checking dependency style of gcc configure:4095: result: gcc3 configure:4110: checking for gcc option to accept ISO C99 configure:4259: gcc -c -g -O2 conftest.c >&5 conftest.c:62: error: expected ';', ',' or ')' before 'text' conftest.c: In function 'main': conftest.c:116: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'newvar' conftest.c:116: error: 'newvar' undeclared (first use in this function) conftest.c:116: error: (Each undeclared identifier is reported only once conftest.c:116: error: for each function it appears in.) conftest.c:126: error: 'for' loop initial declaration used outside C99 mode configure:4259: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "suricata" | #define PACKAGE_TARNAME "suricata" | #define PACKAGE_VERSION "2.0.2" | #define PACKAGE_STRING "suricata 2.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "2.0.2" | #define RELEASE 1 | /* end confdefs.h. */ | #include | #include | #include | #include | #include | | // Check varargs macros. These examples are taken from C99 6.10.3.5. | #define debug(...) fprintf (stderr, __VA_ARGS__) | #define showlist(...) puts (#__VA_ARGS__) | #define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__)) | static void | test_varargs_macros (void) | { | int x = 1234; | int y = 5678; | debug ("Flag"); | debug ("X = %d\n", x); | showlist (The first, second, and third items.); | report (x>y, "x is %d but y is %d", x, y); | } | | // Check long long types. | #define BIG64 18446744073709551615ull | #define BIG32 4294967295ul | #define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0) | #if !BIG_OK | your preprocessor is broken; | #endif | #if BIG_OK | #else | your preprocessor is broken; | #endif | static long long int bignum = -9223372036854775807LL; | static unsigned long long int ubignum = BIG64; | | struct incomplete_array | { | int datasize; | double data[]; | }; | | struct named_init { | int number; | const wchar_t *name; | double average; | }; | | typedef const char *ccp; | | static inline int | test_restrict (ccp restrict text) | { | // See if C++-style comments work. | // Iterate through items via the restricted pointer. | // Also check for declarations in for loops. | for (unsigned int i = 0; *(text+i) != '\0'; ++i) | continue; | return 0; | } | | // Check varargs and va_copy. | static void | test_varargs (const char *format, ...) | { | va_list args; | va_start (args, format); | va_list args_copy; | va_copy (args_copy, args); | | const char *str; | int number; | float fnumber; | | while (*format) | { | switch (*format++) | { | case 's': // string | str = va_arg (args_copy, const char *); | break; | case 'd': // int | number = va_arg (args_copy, int); | break; | case 'f': // float | fnumber = va_arg (args_copy, double); | break; | default: | break; | } | } | va_end (args_copy); | va_end (args); | } | | int | main () | { | | // Check bool. | _Bool success = false; | | // Check restrict. | if (test_restrict ("String literal") == 0) | success = true; | char *restrict newvar = "Another string"; | | // Check varargs. | test_varargs ("s, d' f .", "string", 65, 34.234); | test_varargs_macros (); | | // Check flexible array members. | struct incomplete_array *ia = | malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10)); | ia->datasize = 10; | for (int i = 0; i < ia->datasize; ++i) | ia->data[i] = i * 1.234; | | // Check named initializers. | struct named_init ni = { | .number = 34, | .name = L"Test wide string", | .average = 543.34343, | }; | | ni.number = 58; | | int dynamic_array[ni.number]; | dynamic_array[ni.number - 1] = 543; | | // work around unused variable warnings | return (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == 'x' | || dynamic_array[ni.number - 1] != 543); | | ; | return 0; | } configure:4259: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:4259: $? = 0 configure:4279: result: -std=gnu99 configure:4316: checking build system type configure:4330: result: mips64-unknown-linux-gnu configure:4350: checking host system type configure:4363: result: mips64-unknown-linux-gnu configure:4404: checking how to print strings configure:4431: result: printf configure:4452: checking for a sed that does not truncate output configure:4516: result: /bin/sed configure:4534: checking for grep that handles long lines and -e configure:4592: result: /bin/grep configure:4597: checking for egrep configure:4659: result: /bin/grep -E configure:4664: checking for fgrep configure:4726: result: /bin/grep -F configure:4761: checking for ld used by gcc -std=gnu99 configure:4828: result: /usr/bin/ld configure:4835: checking if the linker (/usr/bin/ld) is GNU ld configure:4850: result: yes configure:4862: checking for BSD- or MS-compatible name lister (nm) configure:4911: result: /usr/bin/nm -B configure:5041: checking the name lister (/usr/bin/nm -B) interface configure:5048: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5051: /usr/bin/nm -B "conftest.o" configure:5054: output 00000000 B some_variable configure:5061: result: BSD nm configure:5064: checking whether ln -s works configure:5068: result: yes configure:5076: checking the maximum length of command line arguments configure:5207: result: 98304 configure:5224: checking whether the shell understands some XSI constructs configure:5234: result: yes configure:5238: checking whether the shell understands "+=" configure:5244: result: yes configure:5279: checking how to convert mips64-unknown-linux-gnu file names to mips64-unknown-linux-gnu format configure:5319: result: func_convert_file_noop configure:5326: checking how to convert mips64-unknown-linux-gnu file names to toolchain format configure:5346: result: func_convert_file_noop configure:5353: checking for /usr/bin/ld option to reload object files configure:5360: result: -r configure:5434: checking for objdump configure:5450: found /usr/bin/objdump configure:5461: result: objdump configure:5493: checking how to recognize dependent libraries configure:5691: result: pass_all configure:5776: checking for dlltool configure:5806: result: no configure:5836: checking how to associate runtime and link libraries configure:5863: result: printf %s\n configure:5924: checking for ar configure:5940: found /usr/bin/ar configure:5951: result: ar configure:5988: checking for archiver @FILE support configure:6005: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:6005: $? = 0 configure:6008: ar cru libconftest.a @conftest.lst >&5 configure:6011: $? = 0 configure:6016: ar cru libconftest.a @conftest.lst >&5 ar: conftest.o: No such file or directory configure:6019: $? = 1 configure:6031: result: @ configure:6089: checking for strip configure:6105: found /usr/bin/strip configure:6116: result: strip configure:6188: checking for ranlib configure:6204: found /usr/bin/ranlib configure:6215: result: ranlib configure:6317: checking command to parse /usr/bin/nm -B output from gcc -std=gnu99 object configure:6437: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:6440: $? = 0 configure:6444: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm configure:6447: $? = 0 configure:6513: gcc -std=gnu99 -o conftest -g -O2 conftest.c conftstm.o >&5 configure:6516: $? = 0 configure:6554: result: ok configure:6591: checking for sysroot configure:6621: result: no configure:6884: checking for mt configure:6900: found /bin/mt configure:6911: result: mt configure:6934: checking if mt is a manifest tool configure:6940: mt '-?' mt: invalid option -- ? configure:6948: result: no configure:7590: checking how to run the C preprocessor configure:7621: gcc -std=gnu99 -E conftest.c configure:7621: $? = 0 configure:7635: gcc -std=gnu99 -E conftest.c conftest.c:12:28: error: ac_nonexistent.h: No such file or directory configure:7635: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "suricata" | #define PACKAGE_TARNAME "suricata" | #define PACKAGE_VERSION "2.0.2" | #define PACKAGE_STRING "suricata 2.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "2.0.2" | #define RELEASE 1 | /* end confdefs.h. */ | #include configure:7660: result: gcc -std=gnu99 -E configure:7680: gcc -std=gnu99 -E conftest.c configure:7680: $? = 0 configure:7694: gcc -std=gnu99 -E conftest.c conftest.c:12:28: error: ac_nonexistent.h: No such file or directory configure:7694: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "suricata" | #define PACKAGE_TARNAME "suricata" | #define PACKAGE_VERSION "2.0.2" | #define PACKAGE_STRING "suricata 2.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "2.0.2" | #define RELEASE 1 | /* end confdefs.h. */ | #include configure:7723: checking for ANSI C header files configure:7743: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:7743: $? = 0 configure:7816: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:7816: $? = 0 configure:7816: ./conftest configure:7816: $? = 0 configure:7827: result: yes configure:7840: checking for sys/types.h configure:7840: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:7840: $? = 0 configure:7840: result: yes configure:7840: checking for sys/stat.h configure:7840: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:7840: $? = 0 configure:7840: result: yes configure:7840: checking for stdlib.h configure:7840: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:7840: $? = 0 configure:7840: result: yes configure:7840: checking for string.h configure:7840: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:7840: $? = 0 configure:7840: result: yes configure:7840: checking for memory.h configure:7840: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:7840: $? = 0 configure:7840: result: yes configure:7840: checking for strings.h configure:7840: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:7840: $? = 0 configure:7840: result: yes configure:7840: checking for inttypes.h configure:7840: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:7840: $? = 0 configure:7840: result: yes configure:7840: checking for stdint.h configure:7840: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:7840: $? = 0 configure:7840: result: yes configure:7840: checking for unistd.h configure:7840: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:7840: $? = 0 configure:7840: result: yes configure:7854: checking for dlfcn.h configure:7854: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:7854: $? = 0 configure:7854: result: yes configure:8060: checking for objdir configure:8075: result: .libs configure:8346: checking if gcc -std=gnu99 supports -fno-rtti -fno-exceptions configure:8364: gcc -std=gnu99 -c -g -O2 -fno-rtti -fno-exceptions conftest.c >&5 cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ but not for C configure:8368: $? = 0 configure:8381: result: no configure:8708: checking for gcc -std=gnu99 option to produce PIC configure:8715: result: -fPIC -DPIC configure:8723: checking if gcc -std=gnu99 PIC flag -fPIC -DPIC works configure:8741: gcc -std=gnu99 -c -g -O2 -fPIC -DPIC -DPIC conftest.c >&5 configure:8745: $? = 0 configure:8758: result: yes configure:8787: checking if gcc -std=gnu99 static flag -static works configure:8815: result: yes configure:8830: checking if gcc -std=gnu99 supports -c -o file.o configure:8851: gcc -std=gnu99 -c -g -O2 -o out/conftest2.o conftest.c >&5 configure:8855: $? = 0 configure:8877: result: yes configure:8885: checking if gcc -std=gnu99 supports -c -o file.o configure:8932: result: yes configure:8965: checking whether the gcc -std=gnu99 linker (/usr/bin/ld) supports shared libraries configure:10122: result: yes configure:10159: checking whether -lc should be explicitly linked in configure:10167: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:10170: $? = 0 configure:10185: gcc -std=gnu99 -shared -fPIC -DPIC conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep -lc \>/dev/null 2\>\&1 configure:10188: $? = 0 configure:10202: result: no configure:10362: checking dynamic linker characteristics configure:10862: gcc -std=gnu99 -o conftest -g -O2 -Wl,-rpath -Wl,/foo conftest.c >&5 configure:10862: $? = 0 configure:11096: result: GNU/Linux ld.so configure:11203: checking how to hardcode library paths into programs configure:11228: result: immediate configure:11768: checking whether stripping libraries is possible configure:11773: result: yes configure:11808: checking if libtool supports shared libraries configure:11810: result: yes configure:11813: checking whether to build shared libraries configure:11834: result: yes configure:11837: checking whether to build static libraries configure:11841: result: yes configure:11921: checking gcc version configure:11927: result: 4.3.2 configure:11948: checking for gawk configure:11975: result: gawk configure:12034: checking for gcc configure:12061: result: gcc configure:12290: checking for C compiler version configure:12299: gcc --version >&5 gcc (Debian 4.3.2-1.1) 4.3.2 Copyright (C) 2008 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:12310: $? = 0 configure:12299: gcc -v >&5 Using built-in specs. Target: mips-linux-gnu Configured with: ../src/configure -v --with-pkgversion='Debian 4.3.2-1.1' --with-bugurl=file:///usr/share/doc/gcc-4.3/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --enable-shared --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --enable-nls --with-gxx-include-dir=/usr/include/c++/4.3 --program-suffix=-4.3 --enable-clocale=gnu --enable-libstdcxx-debug --enable-objc-gc --enable-mpfr --disable-libssp --enable-checking=release --build=mips-linux-gnu --host=mips-linux-gnu --target=mips-linux-gnu Thread model: posix gcc version 4.3.2 (Debian 4.3.2-1.1) configure:12310: $? = 0 configure:12299: gcc -V >&5 gcc: '-V' option must have argument configure:12310: $? = 1 configure:12299: gcc -qversion >&5 gcc: unrecognized option '-qversion' gcc: no input files configure:12310: $? = 1 configure:12314: checking whether we are using the GNU C compiler configure:12342: result: yes configure:12351: checking whether gcc accepts -g configure:12412: result: yes configure:12429: checking for gcc option to accept ISO C89 configure:12505: result: none needed configure:12527: checking dependency style of gcc configure:12638: result: gcc3 configure:12658: checking how to run the C preprocessor configure:12728: result: gcc -std=gnu99 -E configure:12748: gcc -std=gnu99 -E conftest.c configure:12748: $? = 0 configure:12762: gcc -std=gnu99 -E conftest.c conftest.c:24:28: error: ac_nonexistent.h: No such file or directory configure:12762: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "suricata" | #define PACKAGE_TARNAME "suricata" | #define PACKAGE_VERSION "2.0.2" | #define PACKAGE_STRING "suricata 2.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "2.0.2" | #define RELEASE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | /* end confdefs.h. */ | #include configure:12791: checking whether ln -s works configure:12795: result: yes configure:12802: checking whether make sets $(MAKE) configure:12824: result: yes configure:12836: checking for pkg-config configure:12854: found /usr/bin/pkg-config configure:12867: result: /usr/bin/pkg-config configure:12886: checking for python configure:12904: found /usr/bin/python configure:12917: result: /usr/bin/python configure:12945: checking for wget configure:12963: found /usr/bin/wget configure:12976: result: /usr/bin/wget configure:13055: checking arpa/inet.h usability configure:13055: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13055: $? = 0 configure:13055: result: yes configure:13055: checking arpa/inet.h presence configure:13055: gcc -std=gnu99 -E conftest.c configure:13055: $? = 0 configure:13055: result: yes configure:13055: checking for arpa/inet.h configure:13055: result: yes configure:13055: checking assert.h usability configure:13055: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13055: $? = 0 configure:13055: result: yes configure:13055: checking assert.h presence configure:13055: gcc -std=gnu99 -E conftest.c configure:13055: $? = 0 configure:13055: result: yes configure:13055: checking for assert.h configure:13055: result: yes configure:13055: checking ctype.h usability configure:13055: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13055: $? = 0 configure:13055: result: yes configure:13055: checking ctype.h presence configure:13055: gcc -std=gnu99 -E conftest.c configure:13055: $? = 0 configure:13055: result: yes configure:13055: checking for ctype.h configure:13055: result: yes configure:13055: checking errno.h usability configure:13055: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13055: $? = 0 configure:13055: result: yes configure:13055: checking errno.h presence configure:13055: gcc -std=gnu99 -E conftest.c configure:13055: $? = 0 configure:13055: result: yes configure:13055: checking for errno.h configure:13055: result: yes configure:13055: checking fcntl.h usability configure:13055: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13055: $? = 0 configure:13055: result: yes configure:13055: checking fcntl.h presence configure:13055: gcc -std=gnu99 -E conftest.c configure:13055: $? = 0 configure:13055: result: yes configure:13055: checking for fcntl.h configure:13055: result: yes configure:13055: checking for inttypes.h configure:13055: result: yes configure:13067: checking getopt.h usability configure:13067: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13067: $? = 0 configure:13067: result: yes configure:13067: checking getopt.h presence configure:13067: gcc -std=gnu99 -E conftest.c configure:13067: $? = 0 configure:13067: result: yes configure:13067: checking for getopt.h configure:13067: result: yes configure:13080: checking limits.h usability configure:13080: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13080: $? = 0 configure:13080: result: yes configure:13080: checking limits.h presence configure:13080: gcc -std=gnu99 -E conftest.c configure:13080: $? = 0 configure:13080: result: yes configure:13080: checking for limits.h configure:13080: result: yes configure:13080: checking netdb.h usability configure:13080: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13080: $? = 0 configure:13080: result: yes configure:13080: checking netdb.h presence configure:13080: gcc -std=gnu99 -E conftest.c configure:13080: $? = 0 configure:13080: result: yes configure:13080: checking for netdb.h configure:13080: result: yes configure:13080: checking netinet/in.h usability configure:13080: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13080: $? = 0 configure:13080: result: yes configure:13080: checking netinet/in.h presence configure:13080: gcc -std=gnu99 -E conftest.c configure:13080: $? = 0 configure:13080: result: yes configure:13080: checking for netinet/in.h configure:13080: result: yes configure:13080: checking poll.h usability configure:13080: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13080: $? = 0 configure:13080: result: yes configure:13080: checking poll.h presence configure:13080: gcc -std=gnu99 -E conftest.c configure:13080: $? = 0 configure:13080: result: yes configure:13080: checking for poll.h configure:13080: result: yes configure:13080: checking sched.h usability configure:13080: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13080: $? = 0 configure:13080: result: yes configure:13080: checking sched.h presence configure:13080: gcc -std=gnu99 -E conftest.c configure:13080: $? = 0 configure:13080: result: yes configure:13080: checking for sched.h configure:13080: result: yes configure:13080: checking signal.h usability configure:13080: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13080: $? = 0 configure:13080: result: yes configure:13080: checking signal.h presence configure:13080: gcc -std=gnu99 -E conftest.c configure:13080: $? = 0 configure:13080: result: yes configure:13080: checking for signal.h configure:13080: result: yes configure:13093: checking stdarg.h usability configure:13093: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13093: $? = 0 configure:13093: result: yes configure:13093: checking stdarg.h presence configure:13093: gcc -std=gnu99 -E conftest.c configure:13093: $? = 0 configure:13093: result: yes configure:13093: checking for stdarg.h configure:13093: result: yes configure:13093: checking for stdint.h configure:13093: result: yes configure:13093: checking stdio.h usability configure:13093: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13093: $? = 0 configure:13093: result: yes configure:13093: checking stdio.h presence configure:13093: gcc -std=gnu99 -E conftest.c configure:13093: $? = 0 configure:13093: result: yes configure:13093: checking for stdio.h configure:13093: result: yes configure:13093: checking for stdlib.h configure:13093: result: yes configure:13093: checking for string.h configure:13093: result: yes configure:13093: checking sys/ioctl.h usability configure:13093: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13093: $? = 0 configure:13093: result: yes configure:13093: checking sys/ioctl.h presence configure:13093: gcc -std=gnu99 -E conftest.c configure:13093: $? = 0 configure:13093: result: yes configure:13093: checking for sys/ioctl.h configure:13093: result: yes configure:13106: checking syslog.h usability configure:13106: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13106: $? = 0 configure:13106: result: yes configure:13106: checking syslog.h presence configure:13106: gcc -std=gnu99 -E conftest.c configure:13106: $? = 0 configure:13106: result: yes configure:13106: checking for syslog.h configure:13106: result: yes configure:13106: checking sys/prctl.h usability configure:13106: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13106: $? = 0 configure:13106: result: yes configure:13106: checking sys/prctl.h presence configure:13106: gcc -std=gnu99 -E conftest.c configure:13106: $? = 0 configure:13106: result: yes configure:13106: checking for sys/prctl.h configure:13106: result: yes configure:13106: checking sys/socket.h usability configure:13106: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13106: $? = 0 configure:13106: result: yes configure:13106: checking sys/socket.h presence configure:13106: gcc -std=gnu99 -E conftest.c configure:13106: $? = 0 configure:13106: result: yes configure:13106: checking for sys/socket.h configure:13106: result: yes configure:13106: checking for sys/stat.h configure:13106: result: yes configure:13106: checking sys/syscall.h usability configure:13106: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13106: $? = 0 configure:13106: result: yes configure:13106: checking sys/syscall.h presence configure:13106: gcc -std=gnu99 -E conftest.c configure:13106: $? = 0 configure:13106: result: yes configure:13106: checking for sys/syscall.h configure:13106: result: yes configure:13119: checking sys/time.h usability configure:13119: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13119: $? = 0 configure:13119: result: yes configure:13119: checking sys/time.h presence configure:13119: gcc -std=gnu99 -E conftest.c configure:13119: $? = 0 configure:13119: result: yes configure:13119: checking for sys/time.h configure:13119: result: yes configure:13119: checking time.h usability configure:13119: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13119: $? = 0 configure:13119: result: yes configure:13119: checking time.h presence configure:13119: gcc -std=gnu99 -E conftest.c configure:13119: $? = 0 configure:13119: result: yes configure:13119: checking for time.h configure:13119: result: yes configure:13119: checking for unistd.h configure:13119: result: yes configure:13132: checking for sys/ioctl.h configure:13132: result: yes configure:13132: checking linux/if_ether.h usability configure:13132: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13132: $? = 0 configure:13132: result: yes configure:13132: checking linux/if_ether.h presence configure:13132: gcc -std=gnu99 -E conftest.c configure:13132: $? = 0 configure:13132: result: yes configure:13132: checking for linux/if_ether.h configure:13132: result: yes configure:13132: checking linux/if_packet.h usability configure:13132: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13132: $? = 0 configure:13132: result: yes configure:13132: checking linux/if_packet.h presence configure:13132: gcc -std=gnu99 -E conftest.c configure:13132: $? = 0 configure:13132: result: yes configure:13132: checking for linux/if_packet.h configure:13132: result: yes configure:13132: checking linux/filter.h usability configure:13132: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13132: $? = 0 configure:13132: result: yes configure:13132: checking linux/filter.h presence configure:13132: gcc -std=gnu99 -E conftest.c configure:13132: $? = 0 configure:13132: result: yes configure:13132: checking for linux/filter.h configure:13132: result: yes configure:13145: checking linux/ethtool.h usability configure:13145: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13145: $? = 0 configure:13145: result: yes configure:13145: checking linux/ethtool.h presence configure:13145: gcc -std=gnu99 -E conftest.c configure:13145: $? = 0 configure:13145: result: yes configure:13145: checking for linux/ethtool.h configure:13145: result: yes configure:13145: checking linux/sockios.h usability configure:13145: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13145: $? = 0 configure:13145: result: yes configure:13145: checking linux/sockios.h presence configure:13145: gcc -std=gnu99 -E conftest.c configure:13145: $? = 0 configure:13145: result: yes configure:13145: checking for linux/sockios.h configure:13145: result: yes configure:13159: checking for sys/socket.h configure:13159: result: yes configure:13159: checking for net/if.h configure:13159: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13159: $? = 0 configure:13159: result: yes configure:13159: checking for sys/mman.h configure:13159: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13159: $? = 0 configure:13159: result: yes configure:13159: checking for linux/if_arp.h configure:13159: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13159: $? = 0 configure:13159: result: yes configure:13178: checking for windows.h configure:13178: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 conftest.c:67:21: error: windows.h: No such file or directory configure:13178: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "suricata" | #define PACKAGE_TARNAME "suricata" | #define PACKAGE_VERSION "2.0.2" | #define PACKAGE_STRING "suricata 2.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "2.0.2" | #define RELEASE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_POLL_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_LINUX_IF_ETHER_H 1 | #define HAVE_LINUX_IF_PACKET_H 1 | #define HAVE_LINUX_FILTER_H 1 | #define HAVE_LINUX_ETHTOOL_H 1 | #define HAVE_LINUX_SOCKIOS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_LINUX_IF_ARP_H 1 | /* end confdefs.h. */ | | #ifndef _X86_ | #define _X86_ | #endif | | | #include configure:13178: result: no configure:13178: checking for winsock2.h configure:13178: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 conftest.c:67:22: error: winsock2.h: No such file or directory configure:13178: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "suricata" | #define PACKAGE_TARNAME "suricata" | #define PACKAGE_VERSION "2.0.2" | #define PACKAGE_STRING "suricata 2.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "2.0.2" | #define RELEASE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_POLL_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_LINUX_IF_ETHER_H 1 | #define HAVE_LINUX_IF_PACKET_H 1 | #define HAVE_LINUX_FILTER_H 1 | #define HAVE_LINUX_ETHTOOL_H 1 | #define HAVE_LINUX_SOCKIOS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_LINUX_IF_ARP_H 1 | /* end confdefs.h. */ | | #ifndef _X86_ | #define _X86_ | #endif | | | #include configure:13178: result: no configure:13178: checking for ws2tcpip.h configure:13178: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 conftest.c:67:22: error: ws2tcpip.h: No such file or directory configure:13178: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "suricata" | #define PACKAGE_TARNAME "suricata" | #define PACKAGE_VERSION "2.0.2" | #define PACKAGE_STRING "suricata 2.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "2.0.2" | #define RELEASE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_POLL_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_LINUX_IF_ETHER_H 1 | #define HAVE_LINUX_IF_PACKET_H 1 | #define HAVE_LINUX_FILTER_H 1 | #define HAVE_LINUX_ETHTOOL_H 1 | #define HAVE_LINUX_SOCKIOS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_LINUX_IF_ARP_H 1 | /* end confdefs.h. */ | | #ifndef _X86_ | #define _X86_ | #endif | | | #include configure:13178: result: no configure:13178: checking for w32api/wtypes.h configure:13178: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 conftest.c:67:27: error: w32api/wtypes.h: No such file or directory configure:13178: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "suricata" | #define PACKAGE_TARNAME "suricata" | #define PACKAGE_VERSION "2.0.2" | #define PACKAGE_STRING "suricata 2.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "2.0.2" | #define RELEASE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_POLL_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_LINUX_IF_ETHER_H 1 | #define HAVE_LINUX_IF_PACKET_H 1 | #define HAVE_LINUX_FILTER_H 1 | #define HAVE_LINUX_ETHTOOL_H 1 | #define HAVE_LINUX_SOCKIOS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_LINUX_IF_ARP_H 1 | /* end confdefs.h. */ | | #ifndef _X86_ | #define _X86_ | #endif | | | #include configure:13178: result: no configure:13195: checking for w32api/winbase.h configure:13195: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 conftest.c:65:45: error: windows.h: No such file or directory conftest.c:68:28: error: w32api/winbase.h: No such file or directory configure:13195: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "suricata" | #define PACKAGE_TARNAME "suricata" | #define PACKAGE_VERSION "2.0.2" | #define PACKAGE_STRING "suricata 2.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "2.0.2" | #define RELEASE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_POLL_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_LINUX_IF_ETHER_H 1 | #define HAVE_LINUX_IF_PACKET_H 1 | #define HAVE_LINUX_FILTER_H 1 | #define HAVE_LINUX_ETHTOOL_H 1 | #define HAVE_LINUX_SOCKIOS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_LINUX_IF_ARP_H 1 | /* end confdefs.h. */ | | #ifndef _X86_ | #define _X86_ | #endif | #include | | | #include configure:13195: result: no configure:13213: checking for inline configure:13229: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13229: $? = 0 configure:13237: result: inline configure:13255: checking for pid_t configure:13255: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13255: $? = 0 configure:13255: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 conftest.c: In function 'main': conftest.c:97: error: expected expression before ')' token configure:13255: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "suricata" | #define PACKAGE_TARNAME "suricata" | #define PACKAGE_VERSION "2.0.2" | #define PACKAGE_STRING "suricata 2.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "2.0.2" | #define RELEASE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_POLL_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_LINUX_IF_ETHER_H 1 | #define HAVE_LINUX_IF_PACKET_H 1 | #define HAVE_LINUX_FILTER_H 1 | #define HAVE_LINUX_ETHTOOL_H 1 | #define HAVE_LINUX_SOCKIOS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_LINUX_IF_ARP_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((pid_t))) | return 0; | ; | return 0; | } configure:13255: result: yes configure:13266: checking for size_t configure:13266: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13266: $? = 0 configure:13266: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 conftest.c: In function 'main': conftest.c:97: error: expected expression before ')' token configure:13266: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "suricata" | #define PACKAGE_TARNAME "suricata" | #define PACKAGE_VERSION "2.0.2" | #define PACKAGE_STRING "suricata 2.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "2.0.2" | #define RELEASE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_POLL_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_LINUX_IF_ETHER_H 1 | #define HAVE_LINUX_IF_PACKET_H 1 | #define HAVE_LINUX_FILTER_H 1 | #define HAVE_LINUX_ETHTOOL_H 1 | #define HAVE_LINUX_SOCKIOS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_LINUX_IF_ARP_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((size_t))) | return 0; | ; | return 0; | } configure:13266: result: yes configure:13278: checking for int32_t configure:13300: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13300: $? = 0 configure:13316: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 conftest.c: In function 'main': conftest.c:98: warning: integer overflow in expression conftest.c:98: error: size of array 'test_array' is negative configure:13316: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "suricata" | #define PACKAGE_TARNAME "suricata" | #define PACKAGE_VERSION "2.0.2" | #define PACKAGE_STRING "suricata 2.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "2.0.2" | #define RELEASE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_POLL_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_LINUX_IF_ETHER_H 1 | #define HAVE_LINUX_IF_PACKET_H 1 | #define HAVE_LINUX_FILTER_H 1 | #define HAVE_LINUX_ETHTOOL_H 1 | #define HAVE_LINUX_SOCKIOS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_LINUX_IF_ARP_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | static int test_array [1 - 2 * !((int32_t) ((((int32_t) 1 << (32 - 2)) - 1) * 2 + 1) | < (int32_t) ((((int32_t) 1 << (32 - 2)) - 1) * 2 + 2))]; | test_array [0] = 0; | return test_array [0]; | | ; | return 0; | } configure:13331: result: yes configure:13344: checking for uint16_t configure:13366: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13366: $? = 0 configure:13377: result: yes configure:13391: checking for uint32_t configure:13413: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13413: $? = 0 configure:13424: result: yes configure:13440: checking for uint64_t configure:13462: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13462: $? = 0 configure:13473: result: yes configure:13489: checking for uint8_t configure:13511: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13511: $? = 0 configure:13522: result: yes configure:13537: checking for stdbool.h that conforms to C99 configure:13604: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 conftest.c: In function 'main': conftest.c:110: warning: the address of 's' will always evaluate as 'true' conftest.c:114: warning: the address of 'a' will always evaluate as 'true' conftest.c:114: warning: the address of 'b' will always evaluate as 'true' conftest.c:114: warning: the address of 'c' will always evaluate as 'true' conftest.c:114: warning: the address of 'd' will always evaluate as 'true' conftest.c:114: warning: the address of 'f' will always evaluate as 'true' conftest.c:114: warning: the address of 'g' will always evaluate as 'true' conftest.c:114: warning: the address of 'h' will always evaluate as 'true' conftest.c:114: warning: the address of 'i' will always evaluate as 'true' conftest.c:115: warning: the address of 'n' will always evaluate as 'true' conftest.c:115: warning: the address of 'o' will always evaluate as 'true' conftest.c:115: warning: the address of 'p' will always evaluate as 'true' configure:13604: $? = 0 configure:13611: result: yes configure:13613: checking for _Bool configure:13613: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13613: $? = 0 configure:13613: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 conftest.c: In function 'main': conftest.c:97: error: expected expression before ')' token configure:13613: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "suricata" | #define PACKAGE_TARNAME "suricata" | #define PACKAGE_VERSION "2.0.2" | #define PACKAGE_STRING "suricata 2.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "2.0.2" | #define RELEASE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_POLL_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_LINUX_IF_ETHER_H 1 | #define HAVE_LINUX_IF_PACKET_H 1 | #define HAVE_LINUX_FILTER_H 1 | #define HAVE_LINUX_ETHTOOL_H 1 | #define HAVE_LINUX_SOCKIOS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_LINUX_IF_ARP_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((_Bool))) | return 0; | ; | return 0; | } configure:13613: result: yes configure:13634: checking for stdlib.h configure:13634: result: yes configure:13644: checking for GNU libc compatible malloc configure:13668: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13668: $? = 0 configure:13668: ./conftest configure:13668: $? = 0 configure:13678: result: yes configure:13701: checking for stdlib.h configure:13701: result: yes configure:13711: checking for GNU libc compatible realloc configure:13735: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13735: $? = 0 configure:13735: ./conftest configure:13735: $? = 0 configure:13745: result: yes configure:13769: checking for gettimeofday configure:13769: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13769: $? = 0 configure:13769: result: yes configure:13769: checking for memset configure:13769: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 conftest.c:91: warning: conflicting types for built-in function 'memset' configure:13769: $? = 0 configure:13769: result: yes configure:13769: checking for strcasecmp configure:13769: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 conftest.c:92: warning: conflicting types for built-in function 'strcasecmp' configure:13769: $? = 0 configure:13769: result: yes configure:13769: checking for strchr configure:13769: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 conftest.c:93: warning: conflicting types for built-in function 'strchr' configure:13769: $? = 0 configure:13769: result: yes configure:13769: checking for strdup configure:13769: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 conftest.c:94: warning: conflicting types for built-in function 'strdup' configure:13769: $? = 0 configure:13769: result: yes configure:13769: checking for strerror configure:13769: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13769: $? = 0 configure:13769: result: yes configure:13769: checking for strncasecmp configure:13769: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 conftest.c:96: warning: conflicting types for built-in function 'strncasecmp' configure:13769: $? = 0 configure:13769: result: yes configure:13769: checking for strtol configure:13769: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13769: $? = 0 configure:13769: result: yes configure:13769: checking for strtoul configure:13769: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13769: $? = 0 configure:13769: result: yes configure:13769: checking for memchr configure:13769: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 conftest.c:99: warning: conflicting types for built-in function 'memchr' configure:13769: $? = 0 configure:13769: result: yes configure:13769: checking for memrchr configure:13769: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13769: $? = 0 configure:13769: result: yes configure:13787: checking for special C compiler options needed for large files configure:13832: result: no configure:13838: checking for _FILE_OFFSET_BITS value needed for large files configure:13863: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 conftest.c:84: warning: left shift count >= width of type conftest.c:84: warning: left shift count >= width of type conftest.c:86: error: size of array 'off_t_is_large' is negative configure:13863: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "suricata" | #define PACKAGE_TARNAME "suricata" | #define PACKAGE_VERSION "2.0.2" | #define PACKAGE_STRING "suricata 2.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "2.0.2" | #define RELEASE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_POLL_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_LINUX_IF_ETHER_H 1 | #define HAVE_LINUX_IF_PACKET_H 1 | #define HAVE_LINUX_FILTER_H 1 | #define HAVE_LINUX_ETHTOOL_H 1 | #define HAVE_LINUX_SOCKIOS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_LINUX_IF_ARP_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC 1 | #define HAVE_STDLIB_H 1 | #define HAVE_REALLOC 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_MEMSET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define HAVE_MEMCHR 1 | #define HAVE_MEMRCHR 1 | /* end confdefs.h. */ | #include | /* Check that off_t can represent 2**63 - 1 correctly. | We can't simply define LARGE_OFF_T to be 9223372036854775807, | since some C++ compilers masquerading as C compilers | incorrectly reject 9223372036854775807. */ | #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) | int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 | && LARGE_OFF_T % 2147483647 == 1) | ? 1 : -1]; | int | main () | { | | ; | return 0; | } configure:13887: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:13887: $? = 0 configure:13895: result: 64 configure:13982: checking host os configure:14037: result: ok configure:14041: checking for thread local storage __thread support configure:14054: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:14054: $? = 0 configure:14058: result: yes configure:14249: checking checking if gcc supports -march=native configure:14262: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -march=native conftest.c >&5 cc1: error: unrecognized command line option "-march=native" configure:14262: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "suricata" | #define PACKAGE_TARNAME "suricata" | #define PACKAGE_VERSION "2.0.2" | #define PACKAGE_STRING "suricata 2.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "2.0.2" | #define RELEASE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_POLL_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_LINUX_IF_ETHER_H 1 | #define HAVE_LINUX_IF_PACKET_H 1 | #define HAVE_LINUX_FILTER_H 1 | #define HAVE_LINUX_ETHTOOL_H 1 | #define HAVE_LINUX_SOCKIOS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_LINUX_IF_ARP_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC 1 | #define HAVE_STDLIB_H 1 | #define HAVE_REALLOC 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_MEMSET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define HAVE_MEMCHR 1 | #define HAVE_MEMRCHR 1 | #define _FILE_OFFSET_BITS 64 | #define TLS 1 | /* end confdefs.h. */ | #include | int | main () | { | | ; | return 0; | } configure:14270: result: no configure:14410: checking for spatch configure:14441: result: no configure:14494: checking for Mpipe configure:14507: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 conftest.c >&5 conftest.c:80:24: error: gxio/mpipe.h: No such file or directory configure:14507: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "suricata" | #define PACKAGE_TARNAME "suricata" | #define PACKAGE_VERSION "2.0.2" | #define PACKAGE_STRING "suricata 2.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "2.0.2" | #define RELEASE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_POLL_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_LINUX_IF_ETHER_H 1 | #define HAVE_LINUX_IF_PACKET_H 1 | #define HAVE_LINUX_FILTER_H 1 | #define HAVE_LINUX_ETHTOOL_H 1 | #define HAVE_LINUX_SOCKIOS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_LINUX_IF_ARP_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC 1 | #define HAVE_STDLIB_H 1 | #define HAVE_REALLOC 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_MEMSET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define HAVE_MEMCHR 1 | #define HAVE_MEMRCHR 1 | #define _FILE_OFFSET_BITS 64 | #define TLS 1 | /* end confdefs.h. */ | #include | int | main () | { | | ; | return 0; | } configure:14517: result: no configure:14543: checking pcre.h usability configure:14543: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 conftest.c >&5 configure:14543: $? = 0 configure:14543: result: yes configure:14543: checking pcre.h presence configure:14543: gcc -std=gnu99 -E conftest.c configure:14543: $? = 0 configure:14543: result: yes configure:14543: checking for pcre.h configure:14543: result: yes configure:14556: checking for pcre_get_substring in -lpcre configure:14581: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 conftest.c -lpcre -lpthread >&5 configure:14581: $? = 0 configure:14590: result: yes configure:14615: checking for pcre_dfa_exec in -lpcre configure:14640: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 conftest.c -lpcre -lpcre >&5 configure:14640: $? = 0 configure:14649: result: yes configure:14683: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 conftest.c >&5 configure:14683: $? = 0 configure:14713: gcc -c -O0 -g -Werror -Wall conftest.c >&5 cc1: warnings being treated as errors conftest.c: In function 'main': conftest.c:86: error: implicit declaration of function 'pcre_free_study' configure:14713: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "suricata" | #define PACKAGE_TARNAME "suricata" | #define PACKAGE_VERSION "2.0.2" | #define PACKAGE_STRING "suricata 2.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "2.0.2" | #define RELEASE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_POLL_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_LINUX_IF_ETHER_H 1 | #define HAVE_LINUX_IF_PACKET_H 1 | #define HAVE_LINUX_FILTER_H 1 | #define HAVE_LINUX_ETHTOOL_H 1 | #define HAVE_LINUX_SOCKIOS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_LINUX_IF_ARP_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC 1 | #define HAVE_STDLIB_H 1 | #define HAVE_REALLOC 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_MEMSET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define HAVE_MEMCHR 1 | #define HAVE_MEMRCHR 1 | #define _FILE_OFFSET_BITS 64 | #define TLS 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBPCRE 1 | /* end confdefs.h. */ | #include | int | main () | { | pcre_extra *extra = NULL; pcre_free_study(extra); | ; | return 0; | } configure:14725: checking for PCRE JIT support configure:14741: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 conftest.c >&5 conftest.c: In function 'main': conftest.c:88: error: 'PCRE_CONFIG_JIT' undeclared (first use in this function) conftest.c:88: error: (Each undeclared identifier is reported only once conftest.c:88: error: for each function it appears in.) configure:14741: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "suricata" | #define PACKAGE_TARNAME "suricata" | #define PACKAGE_VERSION "2.0.2" | #define PACKAGE_STRING "suricata 2.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "2.0.2" | #define RELEASE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_POLL_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_LINUX_IF_ETHER_H 1 | #define HAVE_LINUX_IF_PACKET_H 1 | #define HAVE_LINUX_FILTER_H 1 | #define HAVE_LINUX_ETHTOOL_H 1 | #define HAVE_LINUX_SOCKIOS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_LINUX_IF_ARP_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC 1 | #define HAVE_STDLIB_H 1 | #define HAVE_REALLOC 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_MEMSET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define HAVE_MEMCHR 1 | #define HAVE_MEMRCHR 1 | #define _FILE_OFFSET_BITS 64 | #define TLS 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBPCRE 1 | /* end confdefs.h. */ | #include | int | main () | { | | int jit = 0; | pcre_config(PCRE_CONFIG_JIT, &jit); | | ; | return 0; | } configure:14804: result: no configure:14830: checking yaml.h usability configure:14830: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 conftest.c >&5 configure:14830: $? = 0 configure:14830: result: yes configure:14830: checking yaml.h presence configure:14830: gcc -std=gnu99 -E conftest.c configure:14830: $? = 0 configure:14830: result: yes configure:14830: checking for yaml.h configure:14830: result: yes configure:14844: checking for yaml_parser_initialize in -lyaml configure:14869: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 conftest.c -lyaml -lpcre >&5 configure:14869: $? = 0 configure:14878: result: yes configure:14932: checking for pthread_create in -lpthread configure:14957: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 conftest.c -lpthread -lyaml -lpcre >&5 configure:14957: $? = 0 configure:14966: result: yes configure:15021: checking jansson.h usability configure:15021: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 conftest.c >&5 conftest.c:117:21: error: jansson.h: No such file or directory configure:15021: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "suricata" | #define PACKAGE_TARNAME "suricata" | #define PACKAGE_VERSION "2.0.2" | #define PACKAGE_STRING "suricata 2.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "2.0.2" | #define RELEASE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_POLL_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_LINUX_IF_ETHER_H 1 | #define HAVE_LINUX_IF_PACKET_H 1 | #define HAVE_LINUX_FILTER_H 1 | #define HAVE_LINUX_ETHTOOL_H 1 | #define HAVE_LINUX_SOCKIOS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_LINUX_IF_ARP_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC 1 | #define HAVE_STDLIB_H 1 | #define HAVE_REALLOC 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_MEMSET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define HAVE_MEMCHR 1 | #define HAVE_MEMRCHR 1 | #define _FILE_OFFSET_BITS 64 | #define TLS 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBYAML 1 | #define HAVE_LIBPTHREAD 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | #include configure:15021: result: no configure:15021: checking jansson.h presence configure:15021: gcc -std=gnu99 -E conftest.c conftest.c:84:21: error: jansson.h: No such file or directory configure:15021: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "suricata" | #define PACKAGE_TARNAME "suricata" | #define PACKAGE_VERSION "2.0.2" | #define PACKAGE_STRING "suricata 2.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "2.0.2" | #define RELEASE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_POLL_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_LINUX_IF_ETHER_H 1 | #define HAVE_LINUX_IF_PACKET_H 1 | #define HAVE_LINUX_FILTER_H 1 | #define HAVE_LINUX_ETHTOOL_H 1 | #define HAVE_LINUX_SOCKIOS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_LINUX_IF_ARP_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC 1 | #define HAVE_STDLIB_H 1 | #define HAVE_REALLOC 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_MEMSET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define HAVE_MEMCHR 1 | #define HAVE_MEMRCHR 1 | #define _FILE_OFFSET_BITS 64 | #define TLS 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBYAML 1 | #define HAVE_LIBPTHREAD 1 | /* end confdefs.h. */ | #include configure:15021: result: no configure:15021: checking for jansson.h configure:15021: result: no configure:15155: checking for nfnl_fd in -lnfnetlink configure:15180: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 conftest.c -lnfnetlink -lpthread -lyaml -lpcre >&5 configure:15180: $? = 0 configure:15189: result: yes configure:15249: checking libnetfilter_queue/libnetfilter_queue.h usability configure:15249: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ conftest.c >&5 configure:15249: $? = 0 configure:15249: result: yes configure:15249: checking libnetfilter_queue/libnetfilter_queue.h presence configure:15249: gcc -std=gnu99 -E conftest.c configure:15249: $? = 0 configure:15249: result: yes configure:15249: checking for libnetfilter_queue/libnetfilter_queue.h configure:15249: result: yes configure:15331: checking for nfq_open in -lnetfilter_queue configure:15356: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ conftest.c -lnetfilter_queue -lnfnetlink -lpthread -lyaml -lpcre >&5 configure:15356: $? = 0 configure:15365: result: yes configure:15378: checking for nfq_set_queue_maxlen in -lnetfilter_queue configure:15403: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ conftest.c -lnetfilter_queue -lnfnetlink -lnetfilter_queue -lnfnetlink -lpthread -lyaml -lpcre >&5 configure:15403: $? = 0 configure:15412: result: yes configure:15422: checking for nfq_set_verdict2 in -lnetfilter_queue configure:15447: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ conftest.c -lnetfilter_queue -lnfnetlink -lnetfilter_queue -lnfnetlink -lpthread -lyaml -lpcre >&5 /tmp/cckbC84I.o: In function `main': /home/raghuiyer/suricata-2.0.2/conftest.c:98: undefined reference to `nfq_set_verdict2' collect2: ld returned 1 exit status configure:15447: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "suricata" | #define PACKAGE_TARNAME "suricata" | #define PACKAGE_VERSION "2.0.2" | #define PACKAGE_STRING "suricata 2.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "2.0.2" | #define RELEASE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_POLL_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_LINUX_IF_ETHER_H 1 | #define HAVE_LINUX_IF_PACKET_H 1 | #define HAVE_LINUX_FILTER_H 1 | #define HAVE_LINUX_ETHTOOL_H 1 | #define HAVE_LINUX_SOCKIOS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_LINUX_IF_ARP_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC 1 | #define HAVE_STDLIB_H 1 | #define HAVE_REALLOC 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_MEMSET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define HAVE_MEMCHR 1 | #define HAVE_MEMRCHR 1 | #define _FILE_OFFSET_BITS 64 | #define TLS 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBYAML 1 | #define HAVE_LIBPTHREAD 1 | #define HAVE_LIBNFNETLINK 1 | #define HAVE_LIBNETFILTER_QUEUE 1 | #define HAVE_NFQ_MAXLEN 1 | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char nfq_set_verdict2 (); | int | main () | { | return nfq_set_verdict2 (); | ; | return 0; | } configure:15456: result: no configure:15466: checking for nfq_set_queue_flags in -lnetfilter_queue configure:15491: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ conftest.c -lnetfilter_queue -lnfnetlink -lnetfilter_queue -lnfnetlink -lpthread -lyaml -lpcre >&5 /tmp/ccaUA8nY.o: In function `main': /home/raghuiyer/suricata-2.0.2/conftest.c:98: undefined reference to `nfq_set_queue_flags' collect2: ld returned 1 exit status configure:15491: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "suricata" | #define PACKAGE_TARNAME "suricata" | #define PACKAGE_VERSION "2.0.2" | #define PACKAGE_STRING "suricata 2.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "2.0.2" | #define RELEASE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_POLL_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_LINUX_IF_ETHER_H 1 | #define HAVE_LINUX_IF_PACKET_H 1 | #define HAVE_LINUX_FILTER_H 1 | #define HAVE_LINUX_ETHTOOL_H 1 | #define HAVE_LINUX_SOCKIOS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_LINUX_IF_ARP_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC 1 | #define HAVE_STDLIB_H 1 | #define HAVE_REALLOC 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_MEMSET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define HAVE_MEMCHR 1 | #define HAVE_MEMRCHR 1 | #define _FILE_OFFSET_BITS 64 | #define TLS 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBYAML 1 | #define HAVE_LIBPTHREAD 1 | #define HAVE_LIBNFNETLINK 1 | #define HAVE_LIBNETFILTER_QUEUE 1 | #define HAVE_NFQ_MAXLEN 1 | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char nfq_set_queue_flags (); | int | main () | { | return nfq_set_queue_flags (); | ; | return 0; | } configure:15500: result: no configure:15510: checking for nfq_set_verdict_batch in -lnetfilter_queue configure:15535: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ conftest.c -lnetfilter_queue -lnfnetlink -lnetfilter_queue -lnfnetlink -lpthread -lyaml -lpcre >&5 /tmp/ccywxlci.o: In function `main': /home/raghuiyer/suricata-2.0.2/conftest.c:98: undefined reference to `nfq_set_verdict_batch' collect2: ld returned 1 exit status configure:15535: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "suricata" | #define PACKAGE_TARNAME "suricata" | #define PACKAGE_VERSION "2.0.2" | #define PACKAGE_STRING "suricata 2.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "2.0.2" | #define RELEASE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_POLL_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_LINUX_IF_ETHER_H 1 | #define HAVE_LINUX_IF_PACKET_H 1 | #define HAVE_LINUX_FILTER_H 1 | #define HAVE_LINUX_ETHTOOL_H 1 | #define HAVE_LINUX_SOCKIOS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_LINUX_IF_ARP_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC 1 | #define HAVE_STDLIB_H 1 | #define HAVE_REALLOC 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_MEMSET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define HAVE_MEMCHR 1 | #define HAVE_MEMRCHR 1 | #define _FILE_OFFSET_BITS 64 | #define TLS 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBYAML 1 | #define HAVE_LIBPTHREAD 1 | #define HAVE_LIBNFNETLINK 1 | #define HAVE_LIBNETFILTER_QUEUE 1 | #define HAVE_NFQ_MAXLEN 1 | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char nfq_set_verdict_batch (); | int | main () | { | return nfq_set_verdict_batch (); | ; | return 0; | } configure:15544: result: no configure:15556: checking for signed nfq_get_payload payload argument configure:15581: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ -Werror conftest.c >&5 configure:15581: $? = 0 configure:15587: result: yes configure:15641: checking libnetfilter_log/libnetfilter_log.h usability configure:15641: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ conftest.c >&5 configure:15641: $? = 0 configure:15641: result: yes configure:15641: checking libnetfilter_log/libnetfilter_log.h presence configure:15641: gcc -std=gnu99 -E conftest.c configure:15641: $? = 0 configure:15641: result: yes configure:15641: checking for libnetfilter_log/libnetfilter_log.h configure:15641: result: yes configure:15655: checking for nflog_open in -lnetfilter_log configure:15680: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ conftest.c -lnetfilter_log -lnetfilter_queue -lnfnetlink -lpthread -lyaml -lpcre >&5 configure:15680: $? = 0 configure:15689: result: yes configure:16033: checking for libnet.h version 1.1.x configure:16052: result: yes configure:16060: checking for libnet_write in -lnet configure:16085: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ conftest.c -lnet -lnetfilter_log -lnetfilter_queue -lnfnetlink -lpthread -lyaml -lpcre >&5 configure:16085: $? = 0 configure:16094: result: yes configure:16135: checking for libnet_build_icmpv6_unreach in -lnet configure:16160: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H conftest.c -lnet -lnet -lnetfilter_log -lnetfilter_queue -lnfnetlink -lpthread -lyaml -lpcre >&5 /tmp/ccyJbR3G.o: In function `main': /home/raghuiyer/suricata-2.0.2/conftest.c:102: undefined reference to `libnet_build_icmpv6_unreach' collect2: ld returned 1 exit status configure:16160: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "suricata" | #define PACKAGE_TARNAME "suricata" | #define PACKAGE_VERSION "2.0.2" | #define PACKAGE_STRING "suricata 2.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "2.0.2" | #define RELEASE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_POLL_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_LINUX_IF_ETHER_H 1 | #define HAVE_LINUX_IF_PACKET_H 1 | #define HAVE_LINUX_FILTER_H 1 | #define HAVE_LINUX_ETHTOOL_H 1 | #define HAVE_LINUX_SOCKIOS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_LINUX_IF_ARP_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC 1 | #define HAVE_STDLIB_H 1 | #define HAVE_REALLOC 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_MEMSET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define HAVE_MEMCHR 1 | #define HAVE_MEMRCHR 1 | #define _FILE_OFFSET_BITS 64 | #define TLS 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBYAML 1 | #define HAVE_LIBPTHREAD 1 | #define HAVE_LIBNFNETLINK 1 | #define HAVE_LIBNETFILTER_QUEUE 1 | #define HAVE_NFQ_MAXLEN 1 | #define NFQ_GET_PAYLOAD_SIGNED 1 | #define HAVE_LIBNETFILTER_LOG 1 | #define HAVE_NFLOG 1 | #define HAVE_LIBNET 1 | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char libnet_build_icmpv6_unreach (); | int | main () | { | return libnet_build_icmpv6_unreach (); | ; | return 0; | } configure:16169: result: no configure:16242: checking for pfring_open in -lpfring configure:16267: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_PFRING -I/usr/local/pfring/include -L/usr/local/pfring/lib conftest.c -lpfring -lpcap -lnet -lnetfilter_log -lnetfilter_queue -lnfnetlink -lpthread -lyaml -lpcre >&5 configure:16267: $? = 0 configure:16276: result: yes configure:16352: checking for pfring_enable_ring in -lpfring configure:16377: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_PFRING -I/usr/local/pfring/include -L/usr/local/pfring/lib conftest.c -lpfring -lpcap -lpfring -lnet -lnetfilter_log -lnetfilter_queue -lnfnetlink -lpthread -lyaml -lpcre >&5 configure:16377: $? = 0 configure:16386: result: yes configure:16406: checking for pfring_set_cluster in -lpfring configure:16431: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_PFRING -I/usr/local/pfring/include -L/usr/local/pfring/lib conftest.c -lpfring -lpcap -lpfring -lpfring -lnet -lnetfilter_log -lnetfilter_queue -lnfnetlink -lpthread -lyaml -lpcre >&5 configure:16431: $? = 0 configure:16440: result: yes configure:16460: checking for pfring_set_bpf_filter in -lpfring configure:16485: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_PFRING -I/usr/local/pfring/include -L/usr/local/pfring/lib conftest.c -lpfring -lpcap -lpfring -lpfring -lpfring -lnet -lnetfilter_log -lnetfilter_queue -lnfnetlink -lpthread -lyaml -lpcre >&5 configure:16485: $? = 0 configure:16494: result: yes configure:16508: checking for pfring_remove_bpf_filter in -lpfring configure:16533: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_PFRING -I/usr/local/pfring/include -L/usr/local/pfring/lib conftest.c -lpfring -lpcap -lpfring -lpfring -lpfring -lpfring -lnet -lnetfilter_log -lnetfilter_queue -lnfnetlink -lpthread -lyaml -lpcre >&5 configure:16533: $? = 0 configure:16542: result: yes configure:16563: checking if pfring_recv expects u_char** configure:16581: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_PFRING -Werror -I/usr/local/pfring/include conftest.c >&5 configure:16581: $? = 0 configure:16594: result: yes configure:16602: checking for post 5.4.0 pfring_open function configure:16621: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_PFRING -Werror -I/usr/local/pfring/include conftest.c >&5 configure:16621: $? = 0 configure:16627: result: yes configure:16662: checking pcap.h usability configure:16662: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_PFRING -I/usr/local/pfring/include -I/usr/local/pfring/include conftest.c >&5 configure:16662: $? = 0 configure:16662: result: yes configure:16662: checking pcap.h presence configure:16662: gcc -std=gnu99 -E -I/usr/local/pfring/include -I/usr/local/pfring/include conftest.c configure:16662: $? = 0 configure:16662: result: yes configure:16662: checking for pcap.h configure:16662: result: yes configure:16677: checking for pcap.h configure:16677: result: yes configure:16677: checking pcap/pcap.h usability configure:16677: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_PFRING -I/usr/local/pfring/include -I/usr/local/pfring/include conftest.c >&5 configure:16677: $? = 0 configure:16677: result: yes configure:16677: checking pcap/pcap.h presence configure:16677: gcc -std=gnu99 -E -I/usr/local/pfring/include -I/usr/local/pfring/include conftest.c configure:16677: $? = 0 configure:16677: result: yes configure:16677: checking for pcap/pcap.h configure:16677: result: yes configure:16677: checking pcap/bpf.h usability configure:16677: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_PFRING -I/usr/local/pfring/include -I/usr/local/pfring/include conftest.c >&5 configure:16677: $? = 0 configure:16677: result: yes configure:16677: checking pcap/bpf.h presence configure:16677: gcc -std=gnu99 -E -I/usr/local/pfring/include -I/usr/local/pfring/include conftest.c configure:16677: $? = 0 configure:16677: result: yes configure:16677: checking for pcap/bpf.h configure:16677: result: yes configure:16689: checking for pcap_open_live in -lpcap configure:16714: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_PFRING -I/usr/local/pfring/include -I/usr/local/pfring/include -L/usr/local/pfring/lib -L/usr/local/pfring/lib conftest.c -lpcap -lpthread -lpfring -lpfring -lpfring -lpfring -lpfring -lnet -lnetfilter_log -lnetfilter_queue -lnfnetlink -lpthread -lyaml -lpcre >&5 configure:16714: $? = 0 configure:16723: result: yes configure:16752: checking for pcap_activate in -lpcap configure:16777: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_PFRING -I/usr/local/pfring/include -I/usr/local/pfring/include -L/usr/local/pfring/lib -L/usr/local/pfring/lib conftest.c -lpcap -lpcap -lpfring -lpfring -lpfring -lpfring -lpfring -lnet -lnetfilter_log -lnetfilter_queue -lnfnetlink -lpthread -lyaml -lpcre >&5 configure:16777: $? = 0 configure:16786: result: yes configure:16802: checking for pcap-config configure:16833: result: no configure:16856: checking for pcap_set_buffer_size in -lpcap configure:16881: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_PFRING -DLIBPCAP_VERSION_MAJOR=1 -I/usr/local/pfring/include -I/usr/local/pfring/include -L/usr/local/pfring/lib -L/usr/local/pfring/lib conftest.c -lpcap -lpcap -lpfring -lpfring -lpfring -lpfring -lpfring -lnet -lnetfilter_log -lnetfilter_queue -lnfnetlink -lpthread -lyaml -lpcre >&5 configure:16881: $? = 0 configure:16890: result: yes configure:16918: checking whether TPACKET_V2 is declared configure:16918: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_PFRING -DLIBPCAP_VERSION_MAJOR=1 -DHAVE_PCAP_SET_BUFF -I/usr/local/pfring/include -I/usr/local/pfring/include conftest.c >&5 conftest.c: In function 'main': conftest.c:117: error: 'TPACKET_V2' undeclared (first use in this function) conftest.c:117: error: (Each undeclared identifier is reported only once conftest.c:117: error: for each function it appears in.) configure:16918: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "suricata" | #define PACKAGE_TARNAME "suricata" | #define PACKAGE_VERSION "2.0.2" | #define PACKAGE_STRING "suricata 2.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "2.0.2" | #define RELEASE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_POLL_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_LINUX_IF_ETHER_H 1 | #define HAVE_LINUX_IF_PACKET_H 1 | #define HAVE_LINUX_FILTER_H 1 | #define HAVE_LINUX_ETHTOOL_H 1 | #define HAVE_LINUX_SOCKIOS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_LINUX_IF_ARP_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC 1 | #define HAVE_STDLIB_H 1 | #define HAVE_REALLOC 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_MEMSET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define HAVE_MEMCHR 1 | #define HAVE_MEMRCHR 1 | #define _FILE_OFFSET_BITS 64 | #define TLS 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBYAML 1 | #define HAVE_LIBPTHREAD 1 | #define HAVE_LIBNFNETLINK 1 | #define HAVE_LIBNETFILTER_QUEUE 1 | #define HAVE_NFQ_MAXLEN 1 | #define NFQ_GET_PAYLOAD_SIGNED 1 | #define HAVE_LIBNETFILTER_LOG 1 | #define HAVE_NFLOG 1 | #define HAVE_LIBNET 1 | #define HAVE_LIBPFRING 1 | #define HAVE_LIBPFRING 1 | #define HAVE_PFRING_ENABLE 1 | #define HAVE_LIBPFRING 1 | #define HAVE_PFRING_CLUSTER_TYPE 1 | #define HAVE_LIBPFRING 1 | #define HAVE_LIBPFRING 1 | #define HAVE_PFRING_SET_BPF_FILTER 1 | #define HAVE_PFRING_RECV_UCHAR 1 | #define HAVE_PFRING_OPEN_NEW 1 | #define HAVE_PCAP_H 1 | #define HAVE_PCAP_PCAP_H 1 | #define HAVE_PCAP_BPF_H 1 | #define HAVE_LIBPCAP 1 | #define HAVE_LIBPCAP 1 | #define HAVE_LIBPCAP 1 | /* end confdefs.h. */ | #include | #include | | int | main () | { | #ifndef TPACKET_V2 | #ifdef __cplusplus | (void) TPACKET_V2; | #else | (void) TPACKET_V2; | #endif | #endif | | ; | return 0; | } configure:16918: result: no configure:16929: checking whether PACKET_FANOUT is declared configure:16929: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_PFRING -DLIBPCAP_VERSION_MAJOR=1 -DHAVE_PCAP_SET_BUFF -I/usr/local/pfring/include -I/usr/local/pfring/include conftest.c >&5 conftest.c: In function 'main': conftest.c:116: error: 'PACKET_FANOUT' undeclared (first use in this function) conftest.c:116: error: (Each undeclared identifier is reported only once conftest.c:116: error: for each function it appears in.) configure:16929: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "suricata" | #define PACKAGE_TARNAME "suricata" | #define PACKAGE_VERSION "2.0.2" | #define PACKAGE_STRING "suricata 2.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "2.0.2" | #define RELEASE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_POLL_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_LINUX_IF_ETHER_H 1 | #define HAVE_LINUX_IF_PACKET_H 1 | #define HAVE_LINUX_FILTER_H 1 | #define HAVE_LINUX_ETHTOOL_H 1 | #define HAVE_LINUX_SOCKIOS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_LINUX_IF_ARP_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC 1 | #define HAVE_STDLIB_H 1 | #define HAVE_REALLOC 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_MEMSET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define HAVE_MEMCHR 1 | #define HAVE_MEMRCHR 1 | #define _FILE_OFFSET_BITS 64 | #define TLS 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBYAML 1 | #define HAVE_LIBPTHREAD 1 | #define HAVE_LIBNFNETLINK 1 | #define HAVE_LIBNETFILTER_QUEUE 1 | #define HAVE_NFQ_MAXLEN 1 | #define NFQ_GET_PAYLOAD_SIGNED 1 | #define HAVE_LIBNETFILTER_LOG 1 | #define HAVE_NFLOG 1 | #define HAVE_LIBNET 1 | #define HAVE_LIBPFRING 1 | #define HAVE_LIBPFRING 1 | #define HAVE_PFRING_ENABLE 1 | #define HAVE_LIBPFRING 1 | #define HAVE_PFRING_CLUSTER_TYPE 1 | #define HAVE_LIBPFRING 1 | #define HAVE_LIBPFRING 1 | #define HAVE_PFRING_SET_BPF_FILTER 1 | #define HAVE_PFRING_RECV_UCHAR 1 | #define HAVE_PFRING_OPEN_NEW 1 | #define HAVE_PCAP_H 1 | #define HAVE_PCAP_PCAP_H 1 | #define HAVE_PCAP_BPF_H 1 | #define HAVE_LIBPCAP 1 | #define HAVE_LIBPCAP 1 | #define HAVE_LIBPCAP 1 | /* end confdefs.h. */ | #include | | int | main () | { | #ifndef PACKET_FANOUT | #ifdef __cplusplus | (void) PACKET_FANOUT; | #else | (void) PACKET_FANOUT; | #endif | #endif | | ; | return 0; | } configure:16929: result: no configure:17003: checking for pkg-config configure:17021: found /usr/bin/pkg-config configure:17033: result: /usr/bin/pkg-config configure:17058: checking pkg-config is at least version 0.9.0 configure:17061: result: yes configure:17475: checking iconv.h usability configure:17475: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_PFRING -DLIBPCAP_VERSION_MAJOR=1 -DHAVE_PCAP_SET_BUFF -I./../libhtp/ -I/usr/local/pfring/include -I/usr/local/pfring/include conftest.c >&5 configure:17475: $? = 0 configure:17475: result: yes configure:17475: checking iconv.h presence configure:17475: gcc -std=gnu99 -E -I./../libhtp/ -I/usr/local/pfring/include -I/usr/local/pfring/include conftest.c configure:17475: $? = 0 configure:17475: result: yes configure:17475: checking for iconv.h configure:17475: result: yes configure:17483: checking for libiconv_close in -liconv configure:17508: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_PFRING -DLIBPCAP_VERSION_MAJOR=1 -DHAVE_PCAP_SET_BUFF -I./../libhtp/ -I/usr/local/pfring/include -I/usr/local/pfring/include -L/usr/local/pfring/lib -L/usr/local/pfring/lib conftest.c -liconv -lpcap -lpfring -lpfring -lpfring -lpfring -lpfring -lnet -lnetfilter_log -lnetfilter_queue -lnfnetlink -lpthread -lyaml -lpcre >&5 /usr/bin/ld: cannot find -liconv collect2: ld returned 1 exit status configure:17508: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "suricata" | #define PACKAGE_TARNAME "suricata" | #define PACKAGE_VERSION "2.0.2" | #define PACKAGE_STRING "suricata 2.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "2.0.2" | #define RELEASE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_POLL_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_LINUX_IF_ETHER_H 1 | #define HAVE_LINUX_IF_PACKET_H 1 | #define HAVE_LINUX_FILTER_H 1 | #define HAVE_LINUX_ETHTOOL_H 1 | #define HAVE_LINUX_SOCKIOS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_LINUX_IF_ARP_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC 1 | #define HAVE_STDLIB_H 1 | #define HAVE_REALLOC 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_MEMSET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define HAVE_MEMCHR 1 | #define HAVE_MEMRCHR 1 | #define _FILE_OFFSET_BITS 64 | #define TLS 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBYAML 1 | #define HAVE_LIBPTHREAD 1 | #define HAVE_LIBNFNETLINK 1 | #define HAVE_LIBNETFILTER_QUEUE 1 | #define HAVE_NFQ_MAXLEN 1 | #define NFQ_GET_PAYLOAD_SIGNED 1 | #define HAVE_LIBNETFILTER_LOG 1 | #define HAVE_NFLOG 1 | #define HAVE_LIBNET 1 | #define HAVE_LIBPFRING 1 | #define HAVE_LIBPFRING 1 | #define HAVE_PFRING_ENABLE 1 | #define HAVE_LIBPFRING 1 | #define HAVE_PFRING_CLUSTER_TYPE 1 | #define HAVE_LIBPFRING 1 | #define HAVE_LIBPFRING 1 | #define HAVE_PFRING_SET_BPF_FILTER 1 | #define HAVE_PFRING_RECV_UCHAR 1 | #define HAVE_PFRING_OPEN_NEW 1 | #define HAVE_PCAP_H 1 | #define HAVE_PCAP_PCAP_H 1 | #define HAVE_PCAP_BPF_H 1 | #define HAVE_LIBPCAP 1 | #define HAVE_LIBPCAP 1 | #define HAVE_LIBPCAP 1 | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char libiconv_close (); | int | main () | { | return libiconv_close (); | ; | return 0; | } configure:17517: result: no configure:17990: checking cap-ng.h usability configure:17990: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_PFRING -DLIBPCAP_VERSION_MAJOR=1 -DHAVE_PCAP_SET_BUFF -I./../libhtp/ -I/usr/local/pfring/include -I/usr/local/pfring/include conftest.c >&5 conftest.c:143:20: error: cap-ng.h: No such file or directory configure:17990: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "suricata" | #define PACKAGE_TARNAME "suricata" | #define PACKAGE_VERSION "2.0.2" | #define PACKAGE_STRING "suricata 2.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "2.0.2" | #define RELEASE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_POLL_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_LINUX_IF_ETHER_H 1 | #define HAVE_LINUX_IF_PACKET_H 1 | #define HAVE_LINUX_FILTER_H 1 | #define HAVE_LINUX_ETHTOOL_H 1 | #define HAVE_LINUX_SOCKIOS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_LINUX_IF_ARP_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC 1 | #define HAVE_STDLIB_H 1 | #define HAVE_REALLOC 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_MEMSET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define HAVE_MEMCHR 1 | #define HAVE_MEMRCHR 1 | #define _FILE_OFFSET_BITS 64 | #define TLS 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBYAML 1 | #define HAVE_LIBPTHREAD 1 | #define HAVE_LIBNFNETLINK 1 | #define HAVE_LIBNETFILTER_QUEUE 1 | #define HAVE_NFQ_MAXLEN 1 | #define NFQ_GET_PAYLOAD_SIGNED 1 | #define HAVE_LIBNETFILTER_LOG 1 | #define HAVE_NFLOG 1 | #define HAVE_LIBNET 1 | #define HAVE_LIBPFRING 1 | #define HAVE_LIBPFRING 1 | #define HAVE_PFRING_ENABLE 1 | #define HAVE_LIBPFRING 1 | #define HAVE_PFRING_CLUSTER_TYPE 1 | #define HAVE_LIBPFRING 1 | #define HAVE_LIBPFRING 1 | #define HAVE_PFRING_SET_BPF_FILTER 1 | #define HAVE_PFRING_RECV_UCHAR 1 | #define HAVE_PFRING_OPEN_NEW 1 | #define HAVE_PCAP_H 1 | #define HAVE_PCAP_PCAP_H 1 | #define HAVE_PCAP_BPF_H 1 | #define HAVE_LIBPCAP 1 | #define HAVE_LIBPCAP 1 | #define HAVE_LIBPCAP 1 | #define HAVE_HTP_URI_NORMALIZE_HOOK 1 | #define HAVE_HTP_TX_GET_RESPONSE_HEADERS_RAW 1 | #define HAVE_HTP_DECODE_QUERY_INPLACE 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | #include configure:17990: result: no configure:17990: checking cap-ng.h presence configure:17990: gcc -std=gnu99 -E -I./../libhtp/ -I/usr/local/pfring/include -I/usr/local/pfring/include conftest.c conftest.c:110:20: error: cap-ng.h: No such file or directory configure:17990: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "suricata" | #define PACKAGE_TARNAME "suricata" | #define PACKAGE_VERSION "2.0.2" | #define PACKAGE_STRING "suricata 2.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "2.0.2" | #define RELEASE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_POLL_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_LINUX_IF_ETHER_H 1 | #define HAVE_LINUX_IF_PACKET_H 1 | #define HAVE_LINUX_FILTER_H 1 | #define HAVE_LINUX_ETHTOOL_H 1 | #define HAVE_LINUX_SOCKIOS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_LINUX_IF_ARP_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC 1 | #define HAVE_STDLIB_H 1 | #define HAVE_REALLOC 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_MEMSET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define HAVE_MEMCHR 1 | #define HAVE_MEMRCHR 1 | #define _FILE_OFFSET_BITS 64 | #define TLS 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBYAML 1 | #define HAVE_LIBPTHREAD 1 | #define HAVE_LIBNFNETLINK 1 | #define HAVE_LIBNETFILTER_QUEUE 1 | #define HAVE_NFQ_MAXLEN 1 | #define NFQ_GET_PAYLOAD_SIGNED 1 | #define HAVE_LIBNETFILTER_LOG 1 | #define HAVE_NFLOG 1 | #define HAVE_LIBNET 1 | #define HAVE_LIBPFRING 1 | #define HAVE_LIBPFRING 1 | #define HAVE_PFRING_ENABLE 1 | #define HAVE_LIBPFRING 1 | #define HAVE_PFRING_CLUSTER_TYPE 1 | #define HAVE_LIBPFRING 1 | #define HAVE_LIBPFRING 1 | #define HAVE_PFRING_SET_BPF_FILTER 1 | #define HAVE_PFRING_RECV_UCHAR 1 | #define HAVE_PFRING_OPEN_NEW 1 | #define HAVE_PCAP_H 1 | #define HAVE_PCAP_PCAP_H 1 | #define HAVE_PCAP_BPF_H 1 | #define HAVE_LIBPCAP 1 | #define HAVE_LIBPCAP 1 | #define HAVE_LIBPCAP 1 | #define HAVE_HTP_URI_NORMALIZE_HOOK 1 | #define HAVE_HTP_TX_GET_RESPONSE_HEADERS_RAW 1 | #define HAVE_HTP_DECODE_QUERY_INPLACE 1 | /* end confdefs.h. */ | #include configure:17990: result: no configure:17990: checking for cap-ng.h configure:17990: result: no configure:18180: checking for libnspr configure:18187: $PKG_CONFIG --exists --print-errors "nspr" Package nspr was not found in the pkg-config search path. Perhaps you should add the directory containing `nspr.pc' to the PKG_CONFIG_PATH environment variable No package 'nspr' found configure:18190: $? = 1 configure:18204: $PKG_CONFIG --exists --print-errors "nspr" Package nspr was not found in the pkg-config search path. Perhaps you should add the directory containing `nspr.pc' to the PKG_CONFIG_PATH environment variable No package 'nspr' found configure:18207: $? = 1 configure:18221: result: no No package 'nspr' found configure:18275: checking nspr.h usability configure:18275: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_PFRING -DLIBPCAP_VERSION_MAJOR=1 -DHAVE_PCAP_SET_BUFF -I./../libhtp/ -I/usr/local/pfring/include -I/usr/local/pfring/include conftest.c >&5 conftest.c:143:18: error: nspr.h: No such file or directory configure:18275: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "suricata" | #define PACKAGE_TARNAME "suricata" | #define PACKAGE_VERSION "2.0.2" | #define PACKAGE_STRING "suricata 2.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "2.0.2" | #define RELEASE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_POLL_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_LINUX_IF_ETHER_H 1 | #define HAVE_LINUX_IF_PACKET_H 1 | #define HAVE_LINUX_FILTER_H 1 | #define HAVE_LINUX_ETHTOOL_H 1 | #define HAVE_LINUX_SOCKIOS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_LINUX_IF_ARP_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC 1 | #define HAVE_STDLIB_H 1 | #define HAVE_REALLOC 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_MEMSET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define HAVE_MEMCHR 1 | #define HAVE_MEMRCHR 1 | #define _FILE_OFFSET_BITS 64 | #define TLS 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBYAML 1 | #define HAVE_LIBPTHREAD 1 | #define HAVE_LIBNFNETLINK 1 | #define HAVE_LIBNETFILTER_QUEUE 1 | #define HAVE_NFQ_MAXLEN 1 | #define NFQ_GET_PAYLOAD_SIGNED 1 | #define HAVE_LIBNETFILTER_LOG 1 | #define HAVE_NFLOG 1 | #define HAVE_LIBNET 1 | #define HAVE_LIBPFRING 1 | #define HAVE_LIBPFRING 1 | #define HAVE_PFRING_ENABLE 1 | #define HAVE_LIBPFRING 1 | #define HAVE_PFRING_CLUSTER_TYPE 1 | #define HAVE_LIBPFRING 1 | #define HAVE_LIBPFRING 1 | #define HAVE_PFRING_SET_BPF_FILTER 1 | #define HAVE_PFRING_RECV_UCHAR 1 | #define HAVE_PFRING_OPEN_NEW 1 | #define HAVE_PCAP_H 1 | #define HAVE_PCAP_PCAP_H 1 | #define HAVE_PCAP_BPF_H 1 | #define HAVE_LIBPCAP 1 | #define HAVE_LIBPCAP 1 | #define HAVE_LIBPCAP 1 | #define HAVE_HTP_URI_NORMALIZE_HOOK 1 | #define HAVE_HTP_TX_GET_RESPONSE_HEADERS_RAW 1 | #define HAVE_HTP_DECODE_QUERY_INPLACE 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | #include configure:18275: result: no configure:18275: checking nspr.h presence configure:18275: gcc -std=gnu99 -E -I./../libhtp/ -I/usr/local/pfring/include -I/usr/local/pfring/include conftest.c conftest.c:110:18: error: nspr.h: No such file or directory configure:18275: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "suricata" | #define PACKAGE_TARNAME "suricata" | #define PACKAGE_VERSION "2.0.2" | #define PACKAGE_STRING "suricata 2.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "2.0.2" | #define RELEASE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_POLL_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_LINUX_IF_ETHER_H 1 | #define HAVE_LINUX_IF_PACKET_H 1 | #define HAVE_LINUX_FILTER_H 1 | #define HAVE_LINUX_ETHTOOL_H 1 | #define HAVE_LINUX_SOCKIOS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_LINUX_IF_ARP_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC 1 | #define HAVE_STDLIB_H 1 | #define HAVE_REALLOC 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_MEMSET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define HAVE_MEMCHR 1 | #define HAVE_MEMRCHR 1 | #define _FILE_OFFSET_BITS 64 | #define TLS 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBYAML 1 | #define HAVE_LIBPTHREAD 1 | #define HAVE_LIBNFNETLINK 1 | #define HAVE_LIBNETFILTER_QUEUE 1 | #define HAVE_NFQ_MAXLEN 1 | #define NFQ_GET_PAYLOAD_SIGNED 1 | #define HAVE_LIBNETFILTER_LOG 1 | #define HAVE_NFLOG 1 | #define HAVE_LIBNET 1 | #define HAVE_LIBPFRING 1 | #define HAVE_LIBPFRING 1 | #define HAVE_PFRING_ENABLE 1 | #define HAVE_LIBPFRING 1 | #define HAVE_PFRING_CLUSTER_TYPE 1 | #define HAVE_LIBPFRING 1 | #define HAVE_LIBPFRING 1 | #define HAVE_PFRING_SET_BPF_FILTER 1 | #define HAVE_PFRING_RECV_UCHAR 1 | #define HAVE_PFRING_OPEN_NEW 1 | #define HAVE_PCAP_H 1 | #define HAVE_PCAP_PCAP_H 1 | #define HAVE_PCAP_BPF_H 1 | #define HAVE_LIBPCAP 1 | #define HAVE_LIBPCAP 1 | #define HAVE_LIBPCAP 1 | #define HAVE_HTP_URI_NORMALIZE_HOOK 1 | #define HAVE_HTP_TX_GET_RESPONSE_HEADERS_RAW 1 | #define HAVE_HTP_DECODE_QUERY_INPLACE 1 | /* end confdefs.h. */ | #include configure:18275: result: no configure:18275: checking for nspr.h configure:18275: result: no configure:18355: checking for libnss configure:18362: $PKG_CONFIG --exists --print-errors "nss" Package nss was not found in the pkg-config search path. Perhaps you should add the directory containing `nss.pc' to the PKG_CONFIG_PATH environment variable No package 'nss' found configure:18365: $? = 1 configure:18379: $PKG_CONFIG --exists --print-errors "nss" Package nss was not found in the pkg-config search path. Perhaps you should add the directory containing `nss.pc' to the PKG_CONFIG_PATH environment variable No package 'nss' found configure:18382: $? = 1 configure:18396: result: no No package 'nss' found configure:18450: checking sechash.h usability configure:18450: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_PFRING -DLIBPCAP_VERSION_MAJOR=1 -DHAVE_PCAP_SET_BUFF -I./../libhtp/ -I/usr/local/pfring/include -I/usr/local/pfring/include conftest.c >&5 conftest.c:143:21: error: sechash.h: No such file or directory configure:18450: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "suricata" | #define PACKAGE_TARNAME "suricata" | #define PACKAGE_VERSION "2.0.2" | #define PACKAGE_STRING "suricata 2.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "2.0.2" | #define RELEASE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_POLL_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_LINUX_IF_ETHER_H 1 | #define HAVE_LINUX_IF_PACKET_H 1 | #define HAVE_LINUX_FILTER_H 1 | #define HAVE_LINUX_ETHTOOL_H 1 | #define HAVE_LINUX_SOCKIOS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_LINUX_IF_ARP_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC 1 | #define HAVE_STDLIB_H 1 | #define HAVE_REALLOC 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_MEMSET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define HAVE_MEMCHR 1 | #define HAVE_MEMRCHR 1 | #define _FILE_OFFSET_BITS 64 | #define TLS 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBYAML 1 | #define HAVE_LIBPTHREAD 1 | #define HAVE_LIBNFNETLINK 1 | #define HAVE_LIBNETFILTER_QUEUE 1 | #define HAVE_NFQ_MAXLEN 1 | #define NFQ_GET_PAYLOAD_SIGNED 1 | #define HAVE_LIBNETFILTER_LOG 1 | #define HAVE_NFLOG 1 | #define HAVE_LIBNET 1 | #define HAVE_LIBPFRING 1 | #define HAVE_LIBPFRING 1 | #define HAVE_PFRING_ENABLE 1 | #define HAVE_LIBPFRING 1 | #define HAVE_PFRING_CLUSTER_TYPE 1 | #define HAVE_LIBPFRING 1 | #define HAVE_LIBPFRING 1 | #define HAVE_PFRING_SET_BPF_FILTER 1 | #define HAVE_PFRING_RECV_UCHAR 1 | #define HAVE_PFRING_OPEN_NEW 1 | #define HAVE_PCAP_H 1 | #define HAVE_PCAP_PCAP_H 1 | #define HAVE_PCAP_BPF_H 1 | #define HAVE_LIBPCAP 1 | #define HAVE_LIBPCAP 1 | #define HAVE_LIBPCAP 1 | #define HAVE_HTP_URI_NORMALIZE_HOOK 1 | #define HAVE_HTP_TX_GET_RESPONSE_HEADERS_RAW 1 | #define HAVE_HTP_DECODE_QUERY_INPLACE 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | #include configure:18450: result: no configure:18450: checking sechash.h presence configure:18450: gcc -std=gnu99 -E -I./../libhtp/ -I/usr/local/pfring/include -I/usr/local/pfring/include conftest.c conftest.c:110:21: error: sechash.h: No such file or directory configure:18450: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "suricata" | #define PACKAGE_TARNAME "suricata" | #define PACKAGE_VERSION "2.0.2" | #define PACKAGE_STRING "suricata 2.0.2" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "2.0.2" | #define RELEASE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_POLL_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_LINUX_IF_ETHER_H 1 | #define HAVE_LINUX_IF_PACKET_H 1 | #define HAVE_LINUX_FILTER_H 1 | #define HAVE_LINUX_ETHTOOL_H 1 | #define HAVE_LINUX_SOCKIOS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_LINUX_IF_ARP_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC 1 | #define HAVE_STDLIB_H 1 | #define HAVE_REALLOC 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_MEMSET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define HAVE_MEMCHR 1 | #define HAVE_MEMRCHR 1 | #define _FILE_OFFSET_BITS 64 | #define TLS 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBYAML 1 | #define HAVE_LIBPTHREAD 1 | #define HAVE_LIBNFNETLINK 1 | #define HAVE_LIBNETFILTER_QUEUE 1 | #define HAVE_NFQ_MAXLEN 1 | #define NFQ_GET_PAYLOAD_SIGNED 1 | #define HAVE_LIBNETFILTER_LOG 1 | #define HAVE_NFLOG 1 | #define HAVE_LIBNET 1 | #define HAVE_LIBPFRING 1 | #define HAVE_LIBPFRING 1 | #define HAVE_PFRING_ENABLE 1 | #define HAVE_LIBPFRING 1 | #define HAVE_PFRING_CLUSTER_TYPE 1 | #define HAVE_LIBPFRING 1 | #define HAVE_LIBPFRING 1 | #define HAVE_PFRING_SET_BPF_FILTER 1 | #define HAVE_PFRING_RECV_UCHAR 1 | #define HAVE_PFRING_OPEN_NEW 1 | #define HAVE_PCAP_H 1 | #define HAVE_PCAP_PCAP_H 1 | #define HAVE_PCAP_BPF_H 1 | #define HAVE_LIBPCAP 1 | #define HAVE_LIBPCAP 1 | #define HAVE_LIBPCAP 1 | #define HAVE_HTP_URI_NORMALIZE_HOOK 1 | #define HAVE_HTP_TX_GET_RESPONSE_HEADERS_RAW 1 | #define HAVE_HTP_DECODE_QUERY_INPLACE 1 | /* end confdefs.h. */ | #include configure:18450: result: no configure:18450: checking for sechash.h configure:18450: result: no configure:18550: checking magic.h usability configure:18550: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_PFRING -DLIBPCAP_VERSION_MAJOR=1 -DHAVE_PCAP_SET_BUFF -I./../libhtp/ -I/usr/local/pfring/include -I/usr/local/pfring/include conftest.c >&5 configure:18550: $? = 0 configure:18550: result: yes configure:18550: checking magic.h presence configure:18550: gcc -std=gnu99 -E -I./../libhtp/ -I/usr/local/pfring/include -I/usr/local/pfring/include conftest.c configure:18550: $? = 0 configure:18550: result: yes configure:18550: checking for magic.h configure:18550: result: yes configure:18564: checking for magic_open in -lmagic configure:18589: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_PFRING -DLIBPCAP_VERSION_MAJOR=1 -DHAVE_PCAP_SET_BUFF -I./../libhtp/ -I/usr/local/pfring/include -I/usr/local/pfring/include -L/usr/local/pfring/lib -L/usr/local/pfring/lib conftest.c -lmagic -lpcap -lpfring -lpfring -lpfring -lpfring -lpfring -lnet -lnetfilter_log -lnetfilter_queue -lnfnetlink -lpthread -lyaml -lpcre >&5 configure:18589: $? = 0 configure:18598: result: yes configure:18748: checking for LUA configure:18755: $PKG_CONFIG --exists --print-errors "${LUA_PC_NAME}" configure:18758: $? = 0 configure:18772: $PKG_CONFIG --exists --print-errors "${LUA_PC_NAME}" configure:18775: $? = 0 configure:18833: result: yes configure:18840: checking lualib.h usability configure:18840: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_PFRING -DLIBPCAP_VERSION_MAJOR=1 -DHAVE_PCAP_SET_BUFF -I./../libhtp/ -I/usr/local/pfring/include -I/usr/local/pfring/include -I/usr/include/lua5.1 conftest.c >&5 configure:18840: $? = 0 configure:18840: result: yes configure:18840: checking lualib.h presence configure:18840: gcc -std=gnu99 -E -I./../libhtp/ -I/usr/local/pfring/include -I/usr/local/pfring/include -I/usr/include/lua5.1 conftest.c configure:18840: $? = 0 configure:18840: result: yes configure:18840: checking for lualib.h configure:18840: result: yes configure:18854: checking for LUA configure:18939: result: yes configure:18947: checking for luaL_openlibs in -llua5.1 configure:18972: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_PFRING -DLIBPCAP_VERSION_MAJOR=1 -DHAVE_PCAP_SET_BUFF -I./../libhtp/ -I/usr/local/pfring/include -I/usr/local/pfring/include -I/usr/include/lua5.1 -L/usr/local/pfring/lib -L/usr/local/pfring/lib -llua5.1 conftest.c -llua5.1 -lmagic -lpcap -lpfring -lpfring -lpfring -lpfring -lpfring -lnet -lnetfilter_log -lnetfilter_queue -lnfnetlink -lpthread -lyaml -lpcre >&5 configure:18972: $? = 0 configure:18982: result: yes configure:19355: checking GeoIP.h usability configure:19355: gcc -c -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_PFRING -DLIBPCAP_VERSION_MAJOR=1 -DHAVE_PCAP_SET_BUFF -I./../libhtp/ -I/usr/local/pfring/include -I/usr/local/pfring/include -I/usr/include/lua5.1 conftest.c >&5 configure:19355: $? = 0 configure:19355: result: yes configure:19355: checking GeoIP.h presence configure:19355: gcc -std=gnu99 -E -I./../libhtp/ -I/usr/local/pfring/include -I/usr/local/pfring/include -I/usr/include/lua5.1 conftest.c configure:19355: $? = 0 configure:19355: result: yes configure:19355: checking for GeoIP.h configure:19355: result: yes configure:19367: checking for GeoIP_country_code_by_ipnum in -lGeoIP configure:19392: gcc -o conftest -g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_PFRING -DLIBPCAP_VERSION_MAJOR=1 -DHAVE_PCAP_SET_BUFF -I./../libhtp/ -I/usr/local/pfring/include -I/usr/local/pfring/include -I/usr/include/lua5.1 -L/usr/local/pfring/lib -L/usr/local/pfring/lib -llua5.1 conftest.c -lGeoIP -llua5.1 -lmagic -lpcap -lpfring -lpfring -lpfring -lpfring -lpfring -lnet -lnetfilter_log -lnetfilter_queue -lnfnetlink -lpthread -lyaml -lpcre >&5 configure:19392: $? = 0 configure:19401: result: yes configure:19436: checking for getconf configure:19454: found /usr/bin/getconf configure:19467: result: /usr/bin/getconf configure:19505: checking for git configure:19536: result: no configure:19786: checking that generated files are newer than configure configure:19792: result: done configure:19847: creating ./config.status ## ---------------------- ## ## Running config.status. ## ## ---------------------- ## This file was extended by suricata config.status 2.0.2, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = CONFIG_HEADERS = CONFIG_LINKS = CONFIG_COMMANDS = $ ./config.status on octeon config.status:1253: creating Makefile config.status:1253: creating src/Makefile config.status:1253: creating qa/Makefile config.status:1253: creating qa/coccinelle/Makefile config.status:1253: creating rules/Makefile config.status:1253: creating doc/Makefile config.status:1253: creating contrib/Makefile config.status:1253: creating contrib/file_processor/Makefile config.status:1253: creating contrib/file_processor/Action/Makefile config.status:1253: creating contrib/file_processor/Processor/Makefile config.status:1253: creating contrib/tile_pcie_logd/Makefile config.status:1253: creating suricata.yaml config.status:1253: creating scripts/Makefile config.status:1253: creating scripts/suricatasc/Makefile config.status:1253: creating scripts/suricatasc/suricatasc config.status:1253: creating config.h config.status:1482: executing depfiles commands config.status:1482: executing libtool commands configure:22149: === configuring in libhtp (/home/raghuiyer/suricata-2.0.2/libhtp) configure:22212: running /bin/sh ./configure --disable-option-checking '--prefix=/usr/local' '--enable-old-barnyard2' '--enable-nfqueue' '--enable-nflog' '--enable-af-packet' '--enable-lua' '--enable-geoip' '--enable-pfring' '--with-libpfring-includes=/usr/local/pfring/include' '--with-libpfring-libraries=/usr/local/pfring/lib' '--with-libpcap-includes=/usr/local/pfring/include' '--with-libpcap-libraries=/usr/local/pfring/lib' --cache-file=/dev/null --srcdir=. ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_build=mips64-unknown-linux-gnu ac_cv_c_compiler_gnu=yes ac_cv_c_inline=inline ac_cv_c_int32_t=yes ac_cv_c_uint16_t=yes ac_cv_c_uint32_t=yes ac_cv_c_uint64_t=yes ac_cv_c_uint8_t=yes ac_cv_env_CC_set= ac_cv_env_CC_value= ac_cv_env_CFLAGS_set= ac_cv_env_CFLAGS_value= ac_cv_env_CPPFLAGS_set= ac_cv_env_CPPFLAGS_value= ac_cv_env_CPP_set= ac_cv_env_CPP_value= ac_cv_env_LDFLAGS_set= ac_cv_env_LDFLAGS_value= ac_cv_env_LIBHTPDEVVERSION_CFLAGS_set= ac_cv_env_LIBHTPDEVVERSION_CFLAGS_value= ac_cv_env_LIBHTPDEVVERSION_LIBS_set= ac_cv_env_LIBHTPDEVVERSION_LIBS_value= ac_cv_env_LIBHTPMINVERSION_CFLAGS_set= ac_cv_env_LIBHTPMINVERSION_CFLAGS_value= ac_cv_env_LIBHTPMINVERSION_LIBS_set= ac_cv_env_LIBHTPMINVERSION_LIBS_value= ac_cv_env_LIBS_set= ac_cv_env_LIBS_value= ac_cv_env_LUAJIT_CFLAGS_set= ac_cv_env_LUAJIT_CFLAGS_value= ac_cv_env_LUAJIT_LIBS_set= ac_cv_env_LUAJIT_LIBS_value= ac_cv_env_LUA_CFLAGS_set= ac_cv_env_LUA_CFLAGS_value= ac_cv_env_LUA_LIBS_set= ac_cv_env_LUA_LIBS_value= ac_cv_env_PKG_CONFIG_LIBDIR_set= ac_cv_env_PKG_CONFIG_LIBDIR_value= ac_cv_env_PKG_CONFIG_PATH_set= ac_cv_env_PKG_CONFIG_PATH_value= ac_cv_env_PKG_CONFIG_set= ac_cv_env_PKG_CONFIG_value= ac_cv_env_PYTHON_set= ac_cv_env_PYTHON_value= ac_cv_env_build_alias_set= ac_cv_env_build_alias_value= ac_cv_env_host_alias_set= ac_cv_env_host_alias_value= ac_cv_env_libnspr_CFLAGS_set= ac_cv_env_libnspr_CFLAGS_value= ac_cv_env_libnspr_LIBS_set= ac_cv_env_libnspr_LIBS_value= ac_cv_env_libnss_CFLAGS_set= ac_cv_env_libnss_CFLAGS_value= ac_cv_env_libnss_LIBS_set= ac_cv_env_libnss_LIBS_value= ac_cv_env_target_alias_set= ac_cv_env_target_alias_value= ac_cv_func_gettimeofday=yes ac_cv_func_malloc_0_nonnull=yes ac_cv_func_memchr=yes ac_cv_func_memrchr=yes ac_cv_func_memset=yes ac_cv_func_realloc_0_nonnull=yes ac_cv_func_strcasecmp=yes ac_cv_func_strchr=yes ac_cv_func_strdup=yes ac_cv_func_strerror=yes ac_cv_func_strncasecmp=yes ac_cv_func_strtol=yes ac_cv_func_strtoul=yes ac_cv_have_decl_PACKET_FANOUT=no ac_cv_have_decl_TPACKET_V2=no ac_cv_header_GeoIP_h=yes ac_cv_header_arpa_inet_h=yes ac_cv_header_assert_h=yes ac_cv_header_cap_ng_h=no ac_cv_header_ctype_h=yes ac_cv_header_dlfcn_h=yes ac_cv_header_errno_h=yes ac_cv_header_fcntl_h=yes ac_cv_header_getopt_h=yes ac_cv_header_iconv_h=yes ac_cv_header_inttypes_h=yes ac_cv_header_jansson_h=no ac_cv_header_libnetfilter_log_libnetfilter_log_h=yes ac_cv_header_libnetfilter_queue_libnetfilter_queue_h=yes ac_cv_header_limits_h=yes ac_cv_header_linux_ethtool_h=yes ac_cv_header_linux_filter_h=yes ac_cv_header_linux_if_arp_h=yes ac_cv_header_linux_if_ether_h=yes ac_cv_header_linux_if_packet_h=yes ac_cv_header_linux_sockios_h=yes ac_cv_header_lualib_h=yes ac_cv_header_magic_h=yes ac_cv_header_memory_h=yes ac_cv_header_net_if_h=yes ac_cv_header_netdb_h=yes ac_cv_header_netinet_in_h=yes ac_cv_header_nspr_h=no ac_cv_header_pcap_bpf_h=yes ac_cv_header_pcap_h=yes ac_cv_header_pcap_pcap_h=yes ac_cv_header_pcre_h=yes ac_cv_header_poll_h=yes ac_cv_header_sched_h=yes ac_cv_header_sechash_h=no ac_cv_header_signal_h=yes ac_cv_header_stdarg_h=yes ac_cv_header_stdbool_h=yes ac_cv_header_stdc=yes ac_cv_header_stdint_h=yes ac_cv_header_stdio_h=yes ac_cv_header_stdlib_h=yes ac_cv_header_string_h=yes ac_cv_header_strings_h=yes ac_cv_header_sys_ioctl_h=yes ac_cv_header_sys_mman_h=yes ac_cv_header_sys_prctl_h=yes ac_cv_header_sys_socket_h=yes ac_cv_header_sys_stat_h=yes ac_cv_header_sys_syscall_h=yes ac_cv_header_sys_time_h=yes ac_cv_header_sys_types_h=yes ac_cv_header_syslog_h=yes ac_cv_header_time_h=yes ac_cv_header_unistd_h=yes ac_cv_header_w32api_winbase_h=no ac_cv_header_w32api_wtypes_h=no ac_cv_header_windows_h=no ac_cv_header_winsock2_h=no ac_cv_header_ws2tcpip_h=no ac_cv_header_yaml_h=yes ac_cv_host=mips64-unknown-linux-gnu ac_cv_lib_GeoIP_GeoIP_country_code_by_ipnum=yes ac_cv_lib_iconv_libiconv_close=no ac_cv_lib_lua5_1___luaL_openlibs=yes ac_cv_lib_magic_magic_open=yes ac_cv_lib_net_libnet_build_icmpv6_unreach=no ac_cv_lib_net_libnet_write=yes ac_cv_lib_netfilter_log_nflog_open=yes ac_cv_lib_netfilter_queue_nfq_open=yes ac_cv_lib_netfilter_queue_nfq_set_queue_flags=no ac_cv_lib_netfilter_queue_nfq_set_queue_maxlen=yes ac_cv_lib_netfilter_queue_nfq_set_verdict2=no ac_cv_lib_netfilter_queue_nfq_set_verdict_batch=no ac_cv_lib_nfnetlink_nfnl_fd=yes ac_cv_lib_pcap_pcap_activate=yes ac_cv_lib_pcap_pcap_open_live=yes ac_cv_lib_pcap_pcap_set_buffer_size=yes ac_cv_lib_pcre_pcre_dfa_exec=yes ac_cv_lib_pcre_pcre_get_substring=yes ac_cv_lib_pfring_pfring_enable_ring=yes ac_cv_lib_pfring_pfring_open=yes ac_cv_lib_pfring_pfring_remove_bpf_filter=yes ac_cv_lib_pfring_pfring_set_bpf_filter=yes ac_cv_lib_pfring_pfring_set_cluster=yes ac_cv_lib_pthread_pthread_create=yes ac_cv_lib_yaml_yaml_parser_initialize=yes ac_cv_objext=o ac_cv_path_EGREP='/bin/grep -E' ac_cv_path_FGREP='/bin/grep -F' ac_cv_path_GREP=/bin/grep ac_cv_path_HAVE_COCCINELLE_CONFIG=no ac_cv_path_HAVE_GETCONF_CMD=/usr/bin/getconf ac_cv_path_HAVE_GIT_CMD=no ac_cv_path_HAVE_PCAP_CONFIG=no ac_cv_path_HAVE_PKG_CONFIG=/usr/bin/pkg-config ac_cv_path_HAVE_PYTHON_CONFIG=/usr/bin/python ac_cv_path_HAVE_WGET=/usr/bin/wget ac_cv_path_SED=/bin/sed ac_cv_path_ac_pt_PKG_CONFIG=/usr/bin/pkg-config ac_cv_path_install='/usr/bin/install -c' ac_cv_path_mkdir=/bin/mkdir ac_cv_prog_AWK=gawk ac_cv_prog_CPP='gcc -std=gnu99 -E' ac_cv_prog_ac_ct_AR=ar ac_cv_prog_ac_ct_CC=gcc ac_cv_prog_ac_ct_MANIFEST_TOOL=mt ac_cv_prog_ac_ct_OBJDUMP=objdump ac_cv_prog_ac_ct_RANLIB=ranlib ac_cv_prog_ac_ct_STRIP=strip ac_cv_prog_cc_c89= ac_cv_prog_cc_c99=-std=gnu99 ac_cv_prog_cc_g=yes ac_cv_prog_make_make_set=yes ac_cv_sys_file_offset_bits=64 ac_cv_sys_largefile_CC=no ac_cv_type__Bool=yes ac_cv_type_pid_t=yes ac_cv_type_size_t=yes am_cv_CC_dependencies_compiler_type=gcc3 am_cv_make_support_nested_variables=yes lt_cv_ar_at_file=@ lt_cv_archive_cmds_need_lc=no lt_cv_deplibs_check_method=pass_all lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_ld_reload_flag=-r lt_cv_nm_interface='BSD nm' lt_cv_objdir=.libs lt_cv_path_LD=/usr/bin/ld lt_cv_path_NM='/usr/bin/nm -B' lt_cv_path_mainfest_tool=no lt_cv_prog_compiler_c_o=yes lt_cv_prog_compiler_pic='-fPIC -DPIC' lt_cv_prog_compiler_pic_works=yes lt_cv_prog_compiler_rtti_exceptions=no lt_cv_prog_compiler_static_works=yes lt_cv_prog_gnu_ld=yes lt_cv_sharedlib_from_linklib_cmd='printf %s\n' lt_cv_shlibpath_overrides_runpath=no lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\''' lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"\2", (void *) \&\2},/p'\''' lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \(lib[^ ]*\)$/ {"\2", (void *) \&\2},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"lib\2", (void *) \&\2},/p'\''' lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\''' lt_cv_sys_max_cmd_len=98304 lt_cv_to_host_file_cmd=func_convert_file_noop lt_cv_to_tool_file_cmd=func_convert_file_noop pkg_cv_LUA_CFLAGS='-I/usr/include/lua5.1 ' pkg_cv_LUA_LIBS='-llua5.1 ' ## ----------------- ## ## Output variables. ## ## ----------------- ## ACLOCAL='${SHELL} /home/raghuiyer/suricata-2.0.2/missing aclocal-1.13' AMDEPBACKSLASH='\' AMDEP_FALSE='#' AMDEP_TRUE='' AMTAR='$${TAR-tar}' AM_BACKSLASH='\' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' AM_DEFAULT_VERBOSITY='1' AM_V='$(V)' AR='ar' AUTOCONF='${SHELL} /home/raghuiyer/suricata-2.0.2/missing autoconf' AUTOHEADER='${SHELL} /home/raghuiyer/suricata-2.0.2/missing autoheader' AUTOMAKE='${SHELL} /home/raghuiyer/suricata-2.0.2/missing automake-1.13' AWK='gawk' BUILD_CUDA_FALSE='' BUILD_CUDA_TRUE='#' BUILD_PCIE_LOGGING_FALSE='' BUILD_PCIE_LOGGING_TRUE='#' BUILD_UNITTESTS_FALSE='' BUILD_UNITTESTS_TRUE='#' CC='gcc' CCDEPMODE='depmode=gcc3' CFLAGS='-g -O2 -Wextra -Werror-implicit-function-declaration -fno-tree-pre -Wall -Wno-unused-parameter -std=gnu99 -DHAVE_OLD_BARNYARD2 -DNFQ -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_PFRING -DLIBPCAP_VERSION_MAJOR=1 -DHAVE_PCAP_SET_BUFF' CPP='gcc -std=gnu99 -E' CPPFLAGS='-I./../libhtp/ -I/usr/local/pfring/include -I/usr/local/pfring/include -I/usr/include/lua5.1 ' CYGPATH_W='echo' DEFS='-DHAVE_CONFIG_H' DEPDIR='.deps' DLLTOOL='false' DSYMUTIL='' DUMPBIN='' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='/bin/grep -E' EXEEXT='' FGREP='/bin/grep -F' GREP='/bin/grep' HAVE_COCCINELLE_CONFIG='no' HAVE_COCCINELLE_FALSE='' HAVE_COCCINELLE_TRUE='#' HAVE_CURL='' HAVE_FETCH_COMMAND_FALSE='#' HAVE_FETCH_COMMAND_TRUE='' HAVE_GETCONF_CMD='/usr/bin/getconf' HAVE_GIT_CMD='no' HAVE_PCAP_CONFIG='no' HAVE_PKG_CONFIG='/usr/bin/pkg-config' HAVE_PYTHON_CONFIG='/usr/bin/python' HAVE_PYTHON_FALSE='#' HAVE_PYTHON_TRUE='' HAVE_WGET='/usr/bin/wget' HAVE_WGET_COMMAND_FALSE='#' HAVE_WGET_COMMAND_TRUE='' HTP_DIR='libhtp' HTP_LDADD='../libhtp/htp/libhtp.la' INSTALL_DATA='${INSTALL} -m 644' INSTALL_PROGRAM='${INSTALL}' INSTALL_SCRIPT='${INSTALL}' INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' LD='/usr/bin/ld' LDFLAGS=' -L/usr/local/pfring/lib -L/usr/local/pfring/lib -llua5.1 ' LIBHTPDEVVERSION_CFLAGS='' LIBHTPDEVVERSION_LIBS='' LIBHTPMINVERSION_CFLAGS='' LIBHTPMINVERSION_LIBS='' LIBOBJS='' LIBPRELUDE_CFLAGS='' LIBPRELUDE_CONFIG='' LIBPRELUDE_CONFIG_PREFIX='' LIBPRELUDE_LDFLAGS='' LIBPRELUDE_LIBS='' LIBPRELUDE_PREFIX='' LIBPRELUDE_PTHREAD_CFLAGS='' LIBS='-lGeoIP -llua5.1 -lmagic -lpcap -lpfring -lpfring -lpfring -lpfring -lpfring -lnet -lnetfilter_log -lnetfilter_queue -lnfnetlink -lpthread -lyaml -lpcre ' LIBTOOL='$(SHELL) $(top_builddir)/libtool' LIPO='' LN_S='ln -s' LTLIBOBJS='' LUAJIT_CFLAGS='' LUAJIT_LIBS='' LUA_CFLAGS='-I/usr/include/lua5.1 ' LUA_LIBS='-llua5.1 ' MAKEINFO='${SHELL} /home/raghuiyer/suricata-2.0.2/missing makeinfo' MANIFEST_TOOL=':' MKDIR_P='/bin/mkdir -p' NM='/usr/bin/nm -B' NMEDIT='' NVCC='' OBJDUMP='objdump' OBJEXT='o' OTOOL64='' OTOOL='' PACKAGE='suricata' PACKAGE_BUGREPORT='' PACKAGE_NAME='suricata' PACKAGE_STRING='suricata 2.0.2' PACKAGE_TARNAME='suricata' PACKAGE_URL='' PACKAGE_VERSION='2.0.2' PATH_SEPARATOR=':' PKG_CONFIG='/usr/bin/pkg-config' PKG_CONFIG_LIBDIR='' PKG_CONFIG_PATH='' PYTHON='' PYTHON_EXEC_PREFIX='' PYTHON_PLATFORM='' PYTHON_PREFIX='' PYTHON_VERSION='' RANLIB='ranlib' SED='/bin/sed' SET_MAKE='' SHELL='/bin/sh' STRIP='strip' VERSION='2.0.2' ac_ct_AR='ar' ac_ct_CC='gcc' ac_ct_DUMPBIN='' am__EXEEXT_FALSE='' am__EXEEXT_TRUE='#' am__fastdepCC_FALSE='#' am__fastdepCC_TRUE='' am__include='include' am__isrc='' am__leading_dot='.' am__nodep='_no' am__quote='' am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' bindir='${exec_prefix}/bin' build='mips64-unknown-linux-gnu' build_alias='' build_cpu='mips64' build_os='linux-gnu' build_vendor='unknown' datadir='${datarootdir}' datarootdir='${prefix}/share' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' dvidir='${docdir}' e_localstatedir='/usr/local/var/run/suricata' e_logcertsdir='/usr/local/var/log/suricata/certs' e_logdir='/usr/local/var/log/suricata/' e_logfilesdir='/usr/local/var/log/suricata/files' e_magic_file='/usr/share/file/magic' e_rundir='/usr/local/var/run/' e_sysconfdir='/usr/local/etc/suricata/' e_sysconfrulesdir='/usr/local/etc/suricata/rules' exec_prefix='${prefix}' host='mips64-unknown-linux-gnu' host_alias='' host_cpu='mips64' host_os='linux-gnu' host_vendor='unknown' htmldir='${docdir}' includedir='${prefix}/include' infodir='${datarootdir}/info' install_sh='${SHELL} /home/raghuiyer/suricata-2.0.2/install-sh' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' libnspr_CFLAGS='' libnspr_LIBS='' libnss_CFLAGS='' libnss_LIBS='' localedir='${datarootdir}/locale' localstatedir='${prefix}/var' mandir='${datarootdir}/man' mkdir_p='$(MKDIR_P)' oldincludedir='/usr/include' pdfdir='${docdir}' pkgpyexecdir='' pkgpythondir='' prefix='/usr/local' program_transform_name='s,x,x,' psdir='${docdir}' pyexecdir='' pythondir='' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' subdirs=' libhtp' sysconfdir='${prefix}/etc' target_alias='' ## ----------- ## ## confdefs.h. ## ## ----------- ## /* confdefs.h */ #define PACKAGE_NAME "suricata" #define PACKAGE_TARNAME "suricata" #define PACKAGE_VERSION "2.0.2" #define PACKAGE_STRING "suricata 2.0.2" #define PACKAGE_BUGREPORT "" #define PACKAGE_URL "" #define PACKAGE "suricata" #define VERSION "2.0.2" #define RELEASE 1 #define STDC_HEADERS 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_SYS_STAT_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STRING_H 1 #define HAVE_MEMORY_H 1 #define HAVE_STRINGS_H 1 #define HAVE_INTTYPES_H 1 #define HAVE_STDINT_H 1 #define HAVE_UNISTD_H 1 #define HAVE_DLFCN_H 1 #define LT_OBJDIR ".libs/" #define HAVE_ARPA_INET_H 1 #define HAVE_ASSERT_H 1 #define HAVE_CTYPE_H 1 #define HAVE_ERRNO_H 1 #define HAVE_FCNTL_H 1 #define HAVE_INTTYPES_H 1 #define HAVE_GETOPT_H 1 #define HAVE_LIMITS_H 1 #define HAVE_NETDB_H 1 #define HAVE_NETINET_IN_H 1 #define HAVE_POLL_H 1 #define HAVE_SCHED_H 1 #define HAVE_SIGNAL_H 1 #define HAVE_STDARG_H 1 #define HAVE_STDINT_H 1 #define HAVE_STDIO_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STRING_H 1 #define HAVE_SYS_IOCTL_H 1 #define HAVE_SYSLOG_H 1 #define HAVE_SYS_PRCTL_H 1 #define HAVE_SYS_SOCKET_H 1 #define HAVE_SYS_STAT_H 1 #define HAVE_SYS_SYSCALL_H 1 #define HAVE_SYS_TIME_H 1 #define HAVE_TIME_H 1 #define HAVE_UNISTD_H 1 #define HAVE_SYS_IOCTL_H 1 #define HAVE_LINUX_IF_ETHER_H 1 #define HAVE_LINUX_IF_PACKET_H 1 #define HAVE_LINUX_FILTER_H 1 #define HAVE_LINUX_ETHTOOL_H 1 #define HAVE_LINUX_SOCKIOS_H 1 #define HAVE_SYS_SOCKET_H 1 #define HAVE_NET_IF_H 1 #define HAVE_SYS_MMAN_H 1 #define HAVE_LINUX_IF_ARP_H 1 #define HAVE__BOOL 1 #define HAVE_STDBOOL_H 1 #define HAVE_STDLIB_H 1 #define HAVE_MALLOC 1 #define HAVE_STDLIB_H 1 #define HAVE_REALLOC 1 #define HAVE_GETTIMEOFDAY 1 #define HAVE_MEMSET 1 #define HAVE_STRCASECMP 1 #define HAVE_STRCHR 1 #define HAVE_STRDUP 1 #define HAVE_STRERROR 1 #define HAVE_STRNCASECMP 1 #define HAVE_STRTOL 1 #define HAVE_STRTOUL 1 #define HAVE_MEMCHR 1 #define HAVE_MEMRCHR 1 #define _FILE_OFFSET_BITS 64 #define TLS 1 #define HAVE_LIBPCRE 1 #define HAVE_LIBPCRE 1 #define HAVE_LIBYAML 1 #define HAVE_LIBPTHREAD 1 #define HAVE_LIBNFNETLINK 1 #define HAVE_LIBNETFILTER_QUEUE 1 #define HAVE_NFQ_MAXLEN 1 #define NFQ_GET_PAYLOAD_SIGNED 1 #define HAVE_LIBNETFILTER_LOG 1 #define HAVE_NFLOG 1 #define HAVE_LIBNET 1 #define HAVE_LIBPFRING 1 #define HAVE_LIBPFRING 1 #define HAVE_PFRING_ENABLE 1 #define HAVE_LIBPFRING 1 #define HAVE_PFRING_CLUSTER_TYPE 1 #define HAVE_LIBPFRING 1 #define HAVE_LIBPFRING 1 #define HAVE_PFRING_SET_BPF_FILTER 1 #define HAVE_PFRING_RECV_UCHAR 1 #define HAVE_PFRING_OPEN_NEW 1 #define HAVE_PCAP_H 1 #define HAVE_PCAP_PCAP_H 1 #define HAVE_PCAP_BPF_H 1 #define HAVE_LIBPCAP 1 #define HAVE_LIBPCAP 1 #define HAVE_LIBPCAP 1 #define HAVE_HTP_URI_NORMALIZE_HOOK 1 #define HAVE_HTP_TX_GET_RESPONSE_HEADERS_RAW 1 #define HAVE_HTP_DECODE_QUERY_INPLACE 1 #define HAVE_LIBMAGIC 1 #define HAVE_LIBLUA5_1 1 #define HAVE_LUA 1 #define HAVE_LIBGEOIP 1 #define HAVE_GEOIP 1 #define CLS 64 #define CONFIG_DIR "/usr/local/etc/suricata/" configure: exit 0