This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by configure, which was generated by GNU Autoconf 2.67. Invocation command line was $ ./configure ## --------- ## ## Platform. ## ## --------- ## hostname = c001-007470.RALEYSNT.SECNET.RALEYS.COM uname -m = i686 uname -r = 2.6.35.12-88.fc14.i686 uname -s = Linux uname -v = #1 SMP Thu Mar 31 22:12:38 UTC 2011 /usr/bin/uname -p = unknown /bin/uname -X = unknown /bin/arch = i686 /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/local/sbin PATH: /usr/sbin PATH: /sbin PATH: /opt/java/jdk1.6.0_20/bin PATH: /usr/share/maven2/bin PATH: /home/jpile/bin PATH: /opt/java/jdk1.6.0_20/bin PATH: /usr/share/maven2/bin ## ----------- ## ## Core tests. ## ## ----------- ## configure:2511: checking for a BSD-compatible install configure:2579: result: /usr/bin/install -c configure:2590: checking whether build environment is sane configure:2640: result: yes configure:2781: checking for a thread-safe mkdir -p configure:2820: result: /bin/mkdir -p configure:2833: checking for gawk configure:2849: found /usr/bin/gawk configure:2860: result: gawk configure:2871: checking whether make sets $(MAKE) configure:2893: result: yes configure:2992: checking for style of include used by make configure:3020: result: GNU configure:3090: checking for gcc configure:3106: found /usr/bin/gcc configure:3117: result: gcc configure:3346: checking for C compiler version configure:3355: gcc --version >&5 gcc (GCC) 4.5.1 20100924 (Red Hat 4.5.1-4) Copyright (C) 2010 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:3366: $? = 0 configure:3355: gcc -v >&5 Using built-in specs. COLLECT_GCC=gcc COLLECT_LTO_WRAPPER=/usr/libexec/gcc/i686-redhat-linux/4.5.1/lto-wrapper Target: i686-redhat-linux Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,lto --enable-plugin --enable-java-awt=gtk --disable-dssi --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-1.5.0.0/jre --enable-libgcj-multifile --enable-java-maintainer-mode --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --disable-libjava-multilib --with-ppl --with-cloog --with-tune=generic --with-arch=i686 --build=i686-redhat-linux Thread model: posix gcc version 4.5.1 20100924 (Red Hat 4.5.1-4) (GCC) configure:3366: $? = 0 configure:3355: gcc -V >&5 gcc: '-V' option must have argument configure:3366: $? = 1 configure:3355: gcc -qversion >&5 gcc: unrecognized option '-qversion' gcc: no input files configure:3366: $? = 1 configure:3386: checking whether the C compiler works configure:3408: gcc conftest.c >&5 configure:3412: $? = 0 configure:3460: result: yes configure:3463: checking for C compiler default output file name configure:3465: result: a.out configure:3471: checking for suffix of executables configure:3478: gcc -o conftest conftest.c >&5 configure:3482: $? = 0 configure:3504: result: configure:3526: checking whether we are cross compiling configure:3534: gcc -o conftest conftest.c >&5 configure:3538: $? = 0 configure:3545: ./conftest configure:3549: $? = 0 configure:3564: result: no configure:3569: checking for suffix of object files configure:3591: gcc -c conftest.c >&5 configure:3595: $? = 0 configure:3616: result: o configure:3620: checking whether we are using the GNU C compiler configure:3639: gcc -c conftest.c >&5 configure:3639: $? = 0 configure:3648: result: yes configure:3657: checking whether gcc accepts -g configure:3677: gcc -c -g conftest.c >&5 configure:3677: $? = 0 configure:3718: result: yes configure:3735: checking for gcc option to accept ISO C89 configure:3799: gcc -c -g -O2 conftest.c >&5 configure:3799: $? = 0 configure:3812: result: none needed configure:3834: checking dependency style of gcc configure:3944: result: gcc3 configure:3959: checking for gcc option to accept ISO C99 configure:4108: gcc -c -g -O2 conftest.c >&5 conftest.c:61:29: error: expected ';', ',' or ')' before 'text' conftest.c: In function 'main': conftest.c:115:18: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'newvar' conftest.c:115:18: error: 'newvar' undeclared (first use in this function) conftest.c:115:18: note: each undeclared identifier is reported only once for each function it appears in conftest.c:125:3: error: 'for' loop initial declarations are only allowed in C99 mode conftest.c:125:3: note: use option -std=c99 or -std=gnu99 to compile your code configure:4108: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "1.0.3" | /* 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:4108: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:4108: $? = 0 configure:4128: result: -std=gnu99 configure:4165: checking build system type configure:4179: result: i686-pc-linux-gnu configure:4199: checking host system type configure:4212: result: i686-pc-linux-gnu configure:4232: checking for a sed that does not truncate output configure:4296: result: /bin/sed configure:4314: checking for grep that handles long lines and -e configure:4372: result: /bin/grep configure:4377: checking for egrep configure:4439: result: /bin/grep -E configure:4444: checking for fgrep configure:4506: result: /bin/grep -F configure:4541: checking for ld used by gcc -std=gnu99 configure:4608: result: /usr/bin/ld configure:4615: checking if the linker (/usr/bin/ld) is GNU ld configure:4630: result: yes configure:4642: checking for BSD- or MS-compatible name lister (nm) configure:4691: result: /usr/bin/nm -B configure:4809: checking the name lister (/usr/bin/nm -B) interface configure:4816: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:4819: /usr/bin/nm -B "conftest.o" configure:4822: output 00000000 B some_variable configure:4829: result: BSD nm configure:4832: checking whether ln -s works configure:4836: result: yes configure:4844: checking the maximum length of command line arguments configure:4964: result: 1572864 configure:4981: checking whether the shell understands some XSI constructs configure:4991: result: yes configure:4995: checking whether the shell understands "+=" configure:5001: result: yes configure:5036: checking for /usr/bin/ld option to reload object files configure:5043: result: -r configure:5112: checking for objdump configure:5128: found /usr/bin/objdump configure:5139: result: objdump configure:5171: checking how to recognize dependent libraries configure:5367: result: pass_all configure:5427: checking for ar configure:5443: found /usr/bin/ar configure:5454: result: ar configure:5532: checking for strip configure:5548: found /usr/bin/strip configure:5559: result: strip configure:5631: checking for ranlib configure:5647: found /usr/bin/ranlib configure:5658: result: ranlib configure:5748: checking command to parse /usr/bin/nm -B output from gcc -std=gnu99 object configure:5866: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5869: $? = 0 configure:5873: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm configure:5876: $? = 0 configure:5930: gcc -std=gnu99 -o conftest -g -O2 conftest.c conftstm.o >&5 configure:5933: $? = 0 configure:5971: result: ok configure:6780: checking how to run the C preprocessor configure:6811: gcc -std=gnu99 -E conftest.c configure:6811: $? = 0 configure:6825: gcc -std=gnu99 -E conftest.c conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory compilation terminated. configure:6825: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "1.0.3" | /* end confdefs.h. */ | #include configure:6850: result: gcc -std=gnu99 -E configure:6870: gcc -std=gnu99 -E conftest.c configure:6870: $? = 0 configure:6884: gcc -std=gnu99 -E conftest.c conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory compilation terminated. configure:6884: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "1.0.3" | /* end confdefs.h. */ | #include configure:6913: checking for ANSI C header files configure:6933: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:6933: $? = 0 configure:7006: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:7006: $? = 0 configure:7006: ./conftest configure:7006: $? = 0 configure:7017: result: yes configure:7030: checking for sys/types.h configure:7030: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:7030: $? = 0 configure:7030: result: yes configure:7030: checking for sys/stat.h configure:7030: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:7030: $? = 0 configure:7030: result: yes configure:7030: checking for stdlib.h configure:7030: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:7030: $? = 0 configure:7030: result: yes configure:7030: checking for string.h configure:7030: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:7030: $? = 0 configure:7030: result: yes configure:7030: checking for memory.h configure:7030: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:7030: $? = 0 configure:7030: result: yes configure:7030: checking for strings.h configure:7030: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:7030: $? = 0 configure:7030: result: yes configure:7030: checking for inttypes.h configure:7030: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:7030: $? = 0 configure:7030: result: yes configure:7030: checking for stdint.h configure:7030: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:7030: $? = 0 configure:7030: result: yes configure:7030: checking for unistd.h configure:7030: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:7030: $? = 0 configure:7030: result: yes configure:7044: checking for dlfcn.h configure:7044: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:7044: $? = 0 configure:7044: result: yes configure:7228: checking for objdir configure:7243: result: .libs configure:7539: checking if gcc -std=gnu99 supports -fno-rtti -fno-exceptions configure:7557: 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:7561: $? = 0 configure:7574: result: no configure:7594: checking for gcc -std=gnu99 option to produce PIC configure:7866: result: -fPIC -DPIC configure:7878: checking if gcc -std=gnu99 PIC flag -fPIC -DPIC works configure:7896: gcc -std=gnu99 -c -g -O2 -fPIC -DPIC -DPIC conftest.c >&5 configure:7900: $? = 0 configure:7913: result: yes configure:7937: checking if gcc -std=gnu99 static flag -static works configure:7965: result: no configure:7980: checking if gcc -std=gnu99 supports -c -o file.o configure:8001: gcc -std=gnu99 -c -g -O2 -o out/conftest2.o conftest.c >&5 configure:8005: $? = 0 configure:8027: result: yes configure:8035: checking if gcc -std=gnu99 supports -c -o file.o configure:8082: result: yes configure:8115: checking whether the gcc -std=gnu99 linker (/usr/bin/ld) supports shared libraries configure:9106: result: yes configure:9143: checking whether -lc should be explicitly linked in configure:9148: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:9151: $? = 0 configure:9166: gcc -std=gnu99 -shared conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep -lc \>/dev/null 2\>\&1 configure:9169: $? = 0 configure:9181: result: no configure:9345: checking dynamic linker characteristics configure:9778: gcc -std=gnu99 -o conftest -g -O2 -Wl,-rpath -Wl,/foo conftest.c >&5 configure:9778: $? = 0 configure:10008: result: GNU/Linux ld.so configure:10110: checking how to hardcode library paths into programs configure:10135: result: immediate configure:10655: checking whether stripping libraries is possible configure:10660: result: yes configure:10695: checking if libtool supports shared libraries configure:10697: result: yes configure:10700: checking whether to build shared libraries configure:10721: result: yes configure:10724: checking whether to build static libraries configure:10728: result: yes configure:10768: checking gcc version configure:10774: result: 4.5.1 configure:10794: checking for gawk configure:10821: result: gawk configure:10880: checking for gcc configure:10907: result: gcc configure:11136: checking for C compiler version configure:11145: gcc --version >&5 gcc (GCC) 4.5.1 20100924 (Red Hat 4.5.1-4) Copyright (C) 2010 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:11156: $? = 0 configure:11145: gcc -v >&5 Using built-in specs. COLLECT_GCC=gcc COLLECT_LTO_WRAPPER=/usr/libexec/gcc/i686-redhat-linux/4.5.1/lto-wrapper Target: i686-redhat-linux Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,lto --enable-plugin --enable-java-awt=gtk --disable-dssi --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-1.5.0.0/jre --enable-libgcj-multifile --enable-java-maintainer-mode --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --disable-libjava-multilib --with-ppl --with-cloog --with-tune=generic --with-arch=i686 --build=i686-redhat-linux Thread model: posix gcc version 4.5.1 20100924 (Red Hat 4.5.1-4) (GCC) configure:11156: $? = 0 configure:11145: gcc -V >&5 gcc: '-V' option must have argument configure:11156: $? = 1 configure:11145: gcc -qversion >&5 gcc: unrecognized option '-qversion' gcc: no input files configure:11156: $? = 1 configure:11160: checking whether we are using the GNU C compiler configure:11188: result: yes configure:11197: checking whether gcc accepts -g configure:11258: result: yes configure:11275: checking for gcc option to accept ISO C89 configure:11352: result: none needed configure:11374: checking dependency style of gcc configure:11484: result: gcc3 configure:11504: checking how to run the C preprocessor configure:11574: result: gcc -std=gnu99 -E configure:11594: gcc -std=gnu99 -E conftest.c configure:11594: $? = 0 configure:11608: gcc -std=gnu99 -E conftest.c conftest.c:23:28: fatal error: ac_nonexistent.h: No such file or directory compilation terminated. configure:11608: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "1.0.3" | #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:11637: checking whether ln -s works configure:11641: result: yes configure:11648: checking whether make sets $(MAKE) configure:11670: result: yes configure:11682: checking for pkg-config configure:11700: found /usr/bin/pkg-config configure:11713: result: /usr/bin/pkg-config configure:11736: checking arpa/inet.h usability configure:11736: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:11736: $? = 0 configure:11736: result: yes configure:11736: checking arpa/inet.h presence configure:11736: gcc -std=gnu99 -E conftest.c configure:11736: $? = 0 configure:11736: result: yes configure:11736: checking for arpa/inet.h configure:11736: result: yes configure:11736: checking for inttypes.h configure:11736: result: yes configure:11736: checking limits.h usability configure:11736: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:11736: $? = 0 configure:11736: result: yes configure:11736: checking limits.h presence configure:11736: gcc -std=gnu99 -E conftest.c configure:11736: $? = 0 configure:11736: result: yes configure:11736: checking for limits.h configure:11736: result: yes configure:11736: checking netdb.h usability configure:11736: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:11736: $? = 0 configure:11736: result: yes configure:11736: checking netdb.h presence configure:11736: gcc -std=gnu99 -E conftest.c configure:11736: $? = 0 configure:11736: result: yes configure:11736: checking for netdb.h configure:11736: result: yes configure:11736: checking netinet/in.h usability configure:11736: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:11736: $? = 0 configure:11736: result: yes configure:11736: checking netinet/in.h presence configure:11736: gcc -std=gnu99 -E conftest.c configure:11736: $? = 0 configure:11736: result: yes configure:11736: checking for netinet/in.h configure:11736: result: yes configure:11736: checking poll.h usability configure:11736: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:11736: $? = 0 configure:11736: result: yes configure:11736: checking poll.h presence configure:11736: gcc -std=gnu99 -E conftest.c configure:11736: $? = 0 configure:11736: result: yes configure:11736: checking for poll.h configure:11736: result: yes configure:11736: checking signal.h usability configure:11736: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:11736: $? = 0 configure:11736: result: yes configure:11736: checking signal.h presence configure:11736: gcc -std=gnu99 -E conftest.c configure:11736: $? = 0 configure:11736: result: yes configure:11736: checking for signal.h configure:11736: result: yes configure:11736: checking for stdint.h configure:11736: result: yes configure:11736: checking for stdlib.h configure:11736: result: yes configure:11736: checking for string.h configure:11736: result: yes configure:11736: checking syslog.h usability configure:11736: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:11736: $? = 0 configure:11736: result: yes configure:11736: checking syslog.h presence configure:11736: gcc -std=gnu99 -E conftest.c configure:11736: $? = 0 configure:11736: result: yes configure:11736: checking for syslog.h configure:11736: result: yes configure:11736: checking sys/prctl.h usability configure:11736: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:11736: $? = 0 configure:11736: result: yes configure:11736: checking sys/prctl.h presence configure:11736: gcc -std=gnu99 -E conftest.c configure:11736: $? = 0 configure:11736: result: yes configure:11736: checking for sys/prctl.h configure:11736: result: yes configure:11736: checking sys/socket.h usability configure:11736: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:11736: $? = 0 configure:11736: result: yes configure:11736: checking sys/socket.h presence configure:11736: gcc -std=gnu99 -E conftest.c configure:11736: $? = 0 configure:11736: result: yes configure:11736: checking for sys/socket.h configure:11736: result: yes configure:11736: checking sys/syscall.h usability configure:11736: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:11736: $? = 0 configure:11736: result: yes configure:11736: checking sys/syscall.h presence configure:11736: gcc -std=gnu99 -E conftest.c configure:11736: $? = 0 configure:11736: result: yes configure:11736: checking for sys/syscall.h configure:11736: result: yes configure:11736: checking sys/time.h usability configure:11736: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:11736: $? = 0 configure:11736: result: yes configure:11736: checking sys/time.h presence configure:11736: gcc -std=gnu99 -E conftest.c configure:11736: $? = 0 configure:11736: result: yes configure:11736: checking for sys/time.h configure:11736: result: yes configure:11736: checking for unistd.h configure:11736: result: yes configure:11736: checking windows.h usability configure:11736: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 conftest.c:72:21: fatal error: windows.h: No such file or directory compilation terminated. configure:11736: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "1.0.3" | #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_INTTYPES_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_SIGNAL_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UNISTD_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 | #include configure:11736: result: no configure:11736: checking windows.h presence configure:11736: gcc -std=gnu99 -E conftest.c conftest.c:39:21: fatal error: windows.h: No such file or directory compilation terminated. configure:11736: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "1.0.3" | #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_INTTYPES_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_SIGNAL_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UNISTD_H 1 | /* end confdefs.h. */ | #include configure:11736: result: no configure:11736: checking for windows.h configure:11736: result: no configure:11736: checking winsock2.h usability configure:11736: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 conftest.c:72:22: fatal error: winsock2.h: No such file or directory compilation terminated. configure:11736: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "1.0.3" | #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_INTTYPES_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_SIGNAL_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UNISTD_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 | #include configure:11736: result: no configure:11736: checking winsock2.h presence configure:11736: gcc -std=gnu99 -E conftest.c conftest.c:39:22: fatal error: winsock2.h: No such file or directory compilation terminated. configure:11736: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "1.0.3" | #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_INTTYPES_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_SIGNAL_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UNISTD_H 1 | /* end confdefs.h. */ | #include configure:11736: result: no configure:11736: checking for winsock2.h configure:11736: result: no configure:11736: checking ws2tcpip.h usability configure:11736: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 conftest.c:72:22: fatal error: ws2tcpip.h: No such file or directory compilation terminated. configure:11736: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "1.0.3" | #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_INTTYPES_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_SIGNAL_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UNISTD_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 | #include configure:11736: result: no configure:11736: checking ws2tcpip.h presence configure:11736: gcc -std=gnu99 -E conftest.c conftest.c:39:22: fatal error: ws2tcpip.h: No such file or directory compilation terminated. configure:11736: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "1.0.3" | #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_INTTYPES_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_SIGNAL_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UNISTD_H 1 | /* end confdefs.h. */ | #include configure:11736: result: no configure:11736: checking for ws2tcpip.h configure:11736: result: no configure:11748: checking for inline configure:11764: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:11764: $? = 0 configure:11772: result: inline configure:11790: checking for pid_t configure:11790: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:11790: $? = 0 configure:11790: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 conftest.c: In function 'main': conftest.c:75:20: error: expected expression before ')' token configure:11790: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "1.0.3" | #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_INTTYPES_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_SIGNAL_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UNISTD_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:11790: result: yes configure:11801: checking for size_t configure:11801: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:11801: $? = 0 configure:11801: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 conftest.c: In function 'main': conftest.c:75:21: error: expected expression before ')' token configure:11801: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "1.0.3" | #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_INTTYPES_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_SIGNAL_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UNISTD_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:11801: result: yes configure:11813: checking for int32_t configure:11834: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:11834: $? = 0 configure:11849: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 conftest.c: In function 'main': conftest.c:76:60: warning: integer overflow in expression conftest.c:75:12: error: size of array 'test_array' is negative conftest.c:75:12: error: storage size of 'test_array' isn't constant conftest.c:75:12: warning: unused variable 'test_array' configure:11849: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "1.0.3" | #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_INTTYPES_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_SIGNAL_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UNISTD_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 0; | } configure:11864: result: yes configure:11877: checking for uint16_t configure:11898: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:11898: $? = 0 configure:11909: result: yes configure:11923: checking for uint32_t configure:11944: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:11944: $? = 0 configure:11955: result: yes configure:11971: checking for uint64_t configure:11992: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:11992: $? = 0 configure:12003: result: yes configure:12019: checking for uint8_t configure:12040: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:12040: $? = 0 configure:12051: result: yes configure:12066: checking for stdbool.h that conforms to C99 configure:12151: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 conftest.c:66:2: warning: the address of 's' will always evaluate as 'true' conftest.c: In function 'main': conftest.c:110:10: warning: the address of 'a' will always evaluate as 'true' conftest.c:110:15: warning: the address of 'b' will always evaluate as 'true' conftest.c:110:20: warning: the address of 'c' will always evaluate as 'true' conftest.c:110:25: warning: the address of 'd' will always evaluate as 'true' conftest.c:110:35: warning: the address of 'f' will always evaluate as 'true' conftest.c:110:40: warning: the address of 'g' will always evaluate as 'true' conftest.c:110:45: warning: the address of 'h' will always evaluate as 'true' conftest.c:110:50: warning: the address of 'i' will always evaluate as 'true' conftest.c:111:10: warning: the address of 'n' will always evaluate as 'true' conftest.c:111:15: warning: the address of 'o' will always evaluate as 'true' conftest.c:111:20: warning: the address of 'p' will always evaluate as 'true' configure:12151: $? = 0 configure:12158: result: yes configure:12160: checking for _Bool configure:12160: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:12160: $? = 0 configure:12160: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 conftest.c: In function 'main': conftest.c:75:20: error: expected expression before ')' token configure:12160: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "1.0.3" | #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_INTTYPES_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_SIGNAL_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UNISTD_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:12160: result: yes configure:12180: checking for stdlib.h configure:12180: result: yes configure:12190: checking for GNU libc compatible malloc configure:12214: gcc -o conftest -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:12214: $? = 0 configure:12214: ./conftest configure:12214: $? = 0 configure:12224: result: yes configure:12247: checking for stdlib.h configure:12247: result: yes configure:12257: checking for GNU libc compatible realloc configure:12281: gcc -o conftest -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:12281: $? = 0 configure:12281: ./conftest configure:12281: $? = 0 configure:12291: result: yes configure:12315: checking for gettimeofday configure:12315: gcc -o conftest -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:12315: $? = 0 configure:12315: result: yes configure:12315: checking for memset configure:12315: gcc -o conftest -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 conftest.c:69:6: warning: conflicting types for built-in function 'memset' configure:12315: $? = 0 configure:12315: result: yes configure:12315: checking for strcasecmp configure:12315: gcc -o conftest -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 conftest.c:70:6: warning: conflicting types for built-in function 'strcasecmp' configure:12315: $? = 0 configure:12315: result: yes configure:12315: checking for strchr configure:12315: gcc -o conftest -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 conftest.c:71:6: warning: conflicting types for built-in function 'strchr' configure:12315: $? = 0 configure:12315: result: yes configure:12315: checking for strdup configure:12315: gcc -o conftest -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 conftest.c:72:6: warning: conflicting types for built-in function 'strdup' configure:12315: $? = 0 configure:12315: result: yes configure:12315: checking for strerror configure:12315: gcc -o conftest -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:12315: $? = 0 configure:12315: result: yes configure:12315: checking for strncasecmp configure:12315: gcc -o conftest -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 conftest.c:74:6: warning: conflicting types for built-in function 'strncasecmp' configure:12315: $? = 0 configure:12315: result: yes configure:12315: checking for strtol configure:12315: gcc -o conftest -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:12315: $? = 0 configure:12315: result: yes configure:12315: checking for strtoul configure:12315: gcc -o conftest -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 conftest.c >&5 configure:12315: $? = 0 configure:12315: result: yes configure:12326: checking host os configure:12358: result: ok configure:12581: checking pcre.h usability configure:12581: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 -march=native conftest.c >&5 configure:12581: $? = 0 configure:12581: result: yes configure:12581: checking pcre.h presence configure:12581: gcc -std=gnu99 -E conftest.c configure:12581: $? = 0 configure:12581: result: yes configure:12581: checking for pcre.h configure:12581: result: yes configure:12595: checking for pcre_get_substring in -lpcre configure:12620: gcc -o conftest -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 -march=native conftest.c -lpcre >&5 configure:12620: $? = 0 configure:12629: result: yes configure:12655: checking for pcre_dfa_exec in -lpcre configure:12680: gcc -o conftest -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 -march=native conftest.c -lpcre -lpcre >&5 configure:12680: $? = 0 configure:12689: result: yes configure:12723: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 -march=native conftest.c >&5 configure:12723: $? = 0 configure:12762: checking yaml.h usability configure:12762: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 -march=native conftest.c >&5 configure:12762: $? = 0 configure:12762: result: yes configure:12762: checking yaml.h presence configure:12762: gcc -std=gnu99 -E conftest.c configure:12762: $? = 0 configure:12762: result: yes configure:12762: checking for yaml.h configure:12762: result: yes configure:12776: checking for yaml_parser_initialize in -lyaml configure:12801: gcc -o conftest -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 -march=native conftest.c -lyaml -lpcre >&5 configure:12801: $? = 0 configure:12810: result: yes configure:12861: checking for pthread_create in -lpthread configure:12886: gcc -o conftest -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 -march=native conftest.c -lpthread -lyaml -lpcre >&5 configure:12886: $? = 0 configure:12895: result: yes configure:13518: checking for libnet.h version 1.1.x configure:13537: result: yes configure:13545: checking for libnet_write in -lnet configure:13570: gcc -o conftest -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 -march=native conftest.c -lnet -lpthread -lyaml -lpcre >&5 configure:13570: $? = 0 configure:13579: result: yes configure:13620: checking for libnet_build_icmpv6_unreach in -lnet configure:13645: gcc -o conftest -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 -march=native -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H conftest.c -lnet -lnet -lpthread -lyaml -lpcre >&5 configure:13645: $? = 0 configure:13654: result: yes configure:13729: checking for pfring_set_cluster in -lpfring configure:13754: gcc -o conftest -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 -march=native -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_LIBNET_ICMPV6_UNREACH conftest.c -lpfring -lnet -lpthread -lyaml -lpcre >&5 /usr/bin/ld: cannot find -lpfring collect2: ld returned 1 exit status configure:13754: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "1.0.3" | #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_INTTYPES_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_SIGNAL_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UNISTD_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_LIBPCRE 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBYAML 1 | #define HAVE_LIBPTHREAD 1 | #define HAVE_LIBNET 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 pfring_set_cluster (); | int | main () | { | return pfring_set_cluster (); | ; | return 0; | } configure:13763: result: no configure:13797: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 -march=native -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_LIBNET_ICMPV6_UNREACH conftest.c >&5 conftest.c:60:21: fatal error: pfring.h: No such file or directory compilation terminated. configure:13797: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "suricata" | #define VERSION "1.0.3" | #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_INTTYPES_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_SIGNAL_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_SYS_PRCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UNISTD_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_LIBPCRE 1 | #define HAVE_LIBPCRE 1 | #define HAVE_LIBYAML 1 | #define HAVE_LIBPTHREAD 1 | #define HAVE_LIBNET 1 | #define HAVE_LIBNET 1 | /* end confdefs.h. */ | #include | int | main () | { | pfring *pd; pd = pfring_open("eth1", 1, 1515, 1); pfring_set_cluster(pd, 99, cluster_round_robin); | ; | return 0; | } configure:13831: checking pcap.h usability configure:13831: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 -march=native -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_LIBNET_ICMPV6_UNREACH conftest.c >&5 configure:13831: $? = 0 configure:13831: result: yes configure:13831: checking pcap.h presence configure:13831: gcc -std=gnu99 -E conftest.c configure:13831: $? = 0 configure:13831: result: yes configure:13831: checking for pcap.h configure:13831: result: yes configure:13845: checking for pcap_open_live in -lpcap configure:13870: gcc -o conftest -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 -march=native -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_LIBNET_ICMPV6_UNREACH conftest.c -lpcap -lnet -lpthread -lyaml -lpcre >&5 configure:13870: $? = 0 configure:13879: result: yes configure:13905: checking for pcap_activate in -lpcap configure:13930: gcc -o conftest -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 -march=native -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_LIBNET_ICMPV6_UNREACH conftest.c -lpcap -lpcap -lnet -lpthread -lyaml -lpcre >&5 configure:13930: $? = 0 configure:13939: result: yes configure:13964: checking for pcap_set_buffer_size in -lpcap configure:13989: gcc -o conftest -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 -march=native -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_LIBNET_ICMPV6_UNREACH -DLIBPCAP_VERSION_MAJOR=1 conftest.c -lpcap -lpcap -lnet -lpthread -lyaml -lpcre >&5 configure:13989: $? = 0 configure:13998: result: yes configure:14134: checking for pkg-config configure:14152: found /usr/bin/pkg-config configure:14164: result: /usr/bin/pkg-config configure:14189: checking pkg-config is at least version 0.9.0 configure:14192: result: yes configure:14515: checking cap-ng.h usability configure:14515: gcc -c -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 -march=native -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_LIBNET_ICMPV6_UNREACH -DLIBPCAP_VERSION_MAJOR=1 -DHAVE_PCAP_SET_BUFF conftest.c >&5 configure:14515: $? = 0 configure:14515: result: yes configure:14515: checking cap-ng.h presence configure:14515: gcc -std=gnu99 -E conftest.c configure:14515: $? = 0 configure:14515: result: yes configure:14515: checking for cap-ng.h configure:14515: result: yes configure:14525: checking for capng_clear in -lcap-ng configure:14550: gcc -o conftest -g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 -march=native -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_LIBNET_ICMPV6_UNREACH -DLIBPCAP_VERSION_MAJOR=1 -DHAVE_PCAP_SET_BUFF conftest.c -lcap-ng -lpcap -lnet -lpthread -lyaml -lpcre >&5 configure:14550: $? = 0 configure:14559: result: yes configure:14848: creating ./config.status ## ---------------------- ## ## Running config.status. ## ## ---------------------- ## This file was extended by config.status, which was generated by GNU Autoconf 2.67. Invocation command line was CONFIG_FILES = CONFIG_HEADERS = CONFIG_LINKS = CONFIG_COMMANDS = $ ./config.status on c001-007470.RALEYSNT.SECNET.RALEYS.COM config.status:1125: creating Makefile config.status:1125: creating src/Makefile config.status:1125: creating config.h config.status:1353: executing depfiles commands config.status:1353: executing libtool commands configure:17130: === configuring in libhtp (/home/jpile/tools/suricata-1.0.3/libhtp) configure:17193: running /bin/sh ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=/dev/null --srcdir=. ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_build=i686-pc-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_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_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_build_alias_set= ac_cv_env_build_alias_value= ac_cv_env_host_alias_set= ac_cv_env_host_alias_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_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_header_arpa_inet_h=yes ac_cv_header_cap_ng_h=yes ac_cv_header_dlfcn_h=yes ac_cv_header_inttypes_h=yes ac_cv_header_limits_h=yes ac_cv_header_memory_h=yes ac_cv_header_netdb_h=yes ac_cv_header_netinet_in_h=yes ac_cv_header_pcap_h=yes ac_cv_header_pcre_h=yes ac_cv_header_poll_h=yes ac_cv_header_signal_h=yes ac_cv_header_stdbool_h=yes ac_cv_header_stdc=yes ac_cv_header_stdint_h=yes ac_cv_header_stdlib_h=yes ac_cv_header_string_h=yes ac_cv_header_strings_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_unistd_h=yes 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=i686-pc-linux-gnu ac_cv_lib_cap_ng_capng_clear=yes ac_cv_lib_net_libnet_build_icmpv6_unreach=yes ac_cv_lib_net_libnet_write=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_set_cluster=no 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_PKG_CONFIG=/usr/bin/pkg-config 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_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_type__Bool=yes ac_cv_type_pid_t=yes ac_cv_type_size_t=yes am_cv_CC_dependencies_compiler_type=gcc3 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_prog_compiler_c_o=yes lt_cv_prog_compiler_pic_works=yes lt_cv_prog_compiler_rtti_exceptions=no lt_cv_prog_compiler_static_works=no lt_cv_prog_gnu_ld=yes lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\''' 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=1572864 ## ----------------- ## ## Output variables. ## ## ----------------- ## ACLOCAL='${SHELL} /home/jpile/tools/suricata-1.0.3/missing --run aclocal-1.11' AMDEPBACKSLASH='\' AMDEP_FALSE='#' AMDEP_TRUE='' AMTAR='${SHELL} /home/jpile/tools/suricata-1.0.3/missing --run tar' AR='ar' AUTOCONF='${SHELL} /home/jpile/tools/suricata-1.0.3/missing --run autoconf' AUTOHEADER='${SHELL} /home/jpile/tools/suricata-1.0.3/missing --run autoheader' AUTOMAKE='${SHELL} /home/jpile/tools/suricata-1.0.3/missing --run automake-1.11' AWK='gawk' BUILD_LIBHTP_FALSE='#' BUILD_LIBHTP_TRUE='' CC='gcc' CCDEPMODE='depmode=gcc3' CFLAGS='-g -O2 -Wextra -Wall -fno-strict-aliasing -fno-tree-pre -Wno-unused-parameter -std=gnu99 -march=native -DHAVE_LIBNET11 -D_BSD_SOURCE -D__BSD_SOURCE -D__FAVOR_BSD -DHAVE_NET_ETHERNET_H -DHAVE_LIBNET_ICMPV6_UNREACH -DLIBPCAP_VERSION_MAJOR=1 -DHAVE_PCAP_SET_BUFF -DHAVE_LIBCAP_NG' CPP='gcc -std=gnu99 -E' CPPFLAGS='' CYGPATH_W='echo' DEFS='-DHAVE_CONFIG_H' DEPDIR='.deps' DSYMUTIL='' DUMPBIN='' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='/bin/grep -E' EXEEXT='' FGREP='/bin/grep -F' GREP='/bin/grep' HAVE_PKG_CONFIG='/usr/bin/pkg-config' INSTALL_DATA='${INSTALL} -m 644' INSTALL_PROGRAM='${INSTALL}' INSTALL_SCRIPT='${INSTALL}' INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' LD='/usr/bin/ld' LDFLAGS='' LIBHTPMINVERSION_CFLAGS='' LIBHTPMINVERSION_LIBS='' LIBOBJS='' LIBPRELUDE_CFLAGS='' LIBPRELUDE_CONFIG='' LIBPRELUDE_CONFIG_PREFIX='' LIBPRELUDE_LDFLAGS='' LIBPRELUDE_LIBS='' LIBPRELUDE_PREFIX='' LIBPRELUDE_PTHREAD_CFLAGS='' LIBS='-lcap-ng -lpcap -lnet -lpthread -lyaml -lpcre ' LIBTOOL='$(SHELL) $(top_builddir)/libtool' LIPO='' LN_S='ln -s' LTLIBOBJS='' MAKEINFO='${SHELL} /home/jpile/tools/suricata-1.0.3/missing --run makeinfo' MKDIR_P='/bin/mkdir -p' NM='/usr/bin/nm -B' NMEDIT='' OBJDUMP='objdump' OBJEXT='o' OTOOL64='' OTOOL='' PACKAGE='suricata' PACKAGE_BUGREPORT='' PACKAGE_NAME='' PACKAGE_STRING='' PACKAGE_TARNAME='' PACKAGE_URL='' PACKAGE_VERSION='' PATH_SEPARATOR=':' PKG_CONFIG='/usr/bin/pkg-config' PKG_CONFIG_LIBDIR='' PKG_CONFIG_PATH='' RANLIB='ranlib' SED='/bin/sed' SET_MAKE='' SHELL='/bin/sh' STRIP='strip' VERSION='1.0.3' 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__quote='' am__tar='${AMTAR} chof - "$$tardir"' am__untar='${AMTAR} xf -' bindir='${exec_prefix}/bin' build='i686-pc-linux-gnu' build_alias='' build_cpu='i686' build_os='linux-gnu' build_vendor='pc' datadir='${datarootdir}' datarootdir='${prefix}/share' docdir='${datarootdir}/doc/${PACKAGE}' dvidir='${docdir}' exec_prefix='${prefix}' host='i686-pc-linux-gnu' host_alias='' host_cpu='i686' host_os='linux-gnu' host_vendor='pc' htmldir='${docdir}' includedir='${prefix}/include' infodir='${datarootdir}/info' install_sh='${SHELL} /home/jpile/tools/suricata-1.0.3/install-sh' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' localedir='${datarootdir}/locale' localstatedir='${prefix}/var' lt_ECHO='echo' mandir='${datarootdir}/man' mkdir_p='/bin/mkdir -p' oldincludedir='/usr/include' pdfdir='${docdir}' prefix='/usr/local' program_transform_name='s,x,x,' psdir='${docdir}' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' subdirs=' libhtp' sysconfdir='${prefix}/etc' target_alias='' ## ----------- ## ## confdefs.h. ## ## ----------- ## /* confdefs.h */ #define PACKAGE_NAME "" #define PACKAGE_TARNAME "" #define PACKAGE_VERSION "" #define PACKAGE_STRING "" #define PACKAGE_BUGREPORT "" #define PACKAGE_URL "" #define PACKAGE "suricata" #define VERSION "1.0.3" #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_INTTYPES_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_SIGNAL_H 1 #define HAVE_STDINT_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STRING_H 1 #define HAVE_SYSLOG_H 1 #define HAVE_SYS_PRCTL_H 1 #define HAVE_SYS_SOCKET_H 1 #define HAVE_SYS_SYSCALL_H 1 #define HAVE_SYS_TIME_H 1 #define HAVE_UNISTD_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_LIBPCRE 1 #define HAVE_LIBPCRE 1 #define HAVE_LIBYAML 1 #define HAVE_LIBPTHREAD 1 #define HAVE_LIBNET 1 #define HAVE_LIBNET 1 #define HAVE_LIBPCAP 1 #define HAVE_LIBPCAP 1 #define HAVE_LIBPCAP 1 #define HAVE_LIBCAP_NG 1 configure: exit 0