Hi Folks, I am testing out the library on Ubuntu 16.04, and am running into the error below when attempting to compile the demo app from here: https://www.gnu.org/software/libmicrohttpd/. Am I missing something in the configuration?
# gcc -o microhttp microhttp.c -L/usr/local/lib/* -I/usr/local/include /tmp/cc7sUAvI.o: In function `ahc_echo': microhttp.c:(.text+0xa5): undefined reference to `MHD_create_response_from_buffer' microhttp.c:(.text+0xbe): undefined reference to `MHD_queue_response' microhttp.c:(.text+0xcd): undefined reference to `MHD_destroy_response' /tmp/cc7sUAvI.o: In function `main': microhttp.c:(.text+0x14a): undefined reference to `MHD_start_daemon' microhttp.c:(.text+0x17b): undefined reference to `MHD_stop_daemon' collect2: error: ld returned 1 exit status Here is the output from the config.log: # cat config.log This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by GNU Libmicrohttpd configure 0.9.59, which was generated by GNU Autoconf 2.69. Invocation command line was $ ./configure ## --------- ## ## Platform. ## ## --------- ## hostname = ubuntu-xenial uname -m = x86_64 uname -r = 4.4.0-127-generic uname -s = Linux uname -v = #153-Ubuntu SMP Sat May 19 10:58:46 UTC 2018 /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: /home/vagrant/bin PATH: /home/vagrant/.local/bin PATH: /usr/local/sbin PATH: /usr/local/bin PATH: /usr/sbin PATH: /usr/bin PATH: /sbin PATH: /bin PATH: /usr/games PATH: /usr/local/games PATH: /snap/bin ## ----------- ## ## Core tests. ## ## ----------- ## configure:2644: checking for a BSD-compatible install configure:2712: result: /usr/bin/install -c configure:2723: checking whether build environment is sane configure:2778: result: yes configure:2929: checking for a thread-safe mkdir -p configure:2968: result: /bin/mkdir -p configure:2975: checking for gawk configure:2991: found /usr/bin/gawk configure:3002: result: gawk configure:3013: checking whether make sets $(MAKE) configure:3035: result: yes configure:3064: checking whether make supports nested variables configure:3081: result: yes configure:3218: checking whether z/OS special settings are required configure:3241: result: no configure:3250: checking for gawk configure:3277: result: gawk configure:3289: checking whether ln -s works configure:3293: result: yes configure:3300: checking whether make sets $(MAKE) configure:3322: result: yes configure:3335: checking build system type configure:3349: result: x86_64-pc-linux-gnu configure:3369: checking host system type configure:3382: result: x86_64-pc-linux-gnu configure:3414: checking for style of include used by make configure:3442: result: GNU configure:3513: checking for gcc configure:3529: found /usr/bin/gcc configure:3540: result: gcc configure:3769: checking for C compiler version configure:3778: gcc --version >&5 gcc (Ubuntu 5.4.0-6ubuntu1~16.04.10) 5.4.0 20160609 Copyright (C) 2015 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:3789: $? = 0 configure:3778: gcc -v >&5 Using built-in specs. COLLECT_GCC=gcc COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper Target: x86_64-linux-gnu Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.10' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu Thread model: posix gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.10) configure:3789: $? = 0 configure:3778: gcc -V >&5 gcc: error: unrecognized command line option '-V' gcc: fatal error: no input files compilation terminated. configure:3789: $? = 1 configure:3778: gcc -qversion >&5 gcc: error: unrecognized command line option '-qversion' gcc: fatal error: no input files compilation terminated. configure:3789: $? = 1 configure:3809: checking whether the C compiler works configure:3831: gcc conftest.c >&5 configure:3835: $? = 0 configure:3883: result: yes configure:3886: checking for C compiler default output file name configure:3888: result: a.out configure:3894: checking for suffix of executables configure:3901: gcc -o conftest conftest.c >&5 configure:3905: $? = 0 configure:3927: result: configure:3949: checking whether we are cross compiling configure:3957: gcc -o conftest conftest.c >&5 configure:3961: $? = 0 configure:3968: ./conftest configure:3972: $? = 0 configure:3987: result: no configure:3992: checking for suffix of object files configure:4014: gcc -c conftest.c >&5 configure:4018: $? = 0 configure:4039: result: o configure:4043: checking whether we are using the GNU C compiler configure:4062: gcc -c conftest.c >&5 configure:4062: $? = 0 configure:4071: result: yes configure:4080: checking whether gcc accepts -g configure:4100: gcc -c -g conftest.c >&5 configure:4100: $? = 0 configure:4141: result: yes configure:4158: checking for gcc option to accept ISO C89 configure:4221: gcc -c -g -O2 conftest.c >&5 configure:4221: $? = 0 configure:4234: result: none needed configure:4259: checking whether gcc understands -c and -o together configure:4281: gcc -c conftest.c -o conftest2.o configure:4284: $? = 0 configure:4281: gcc -c conftest.c -o conftest2.o configure:4284: $? = 0 configure:4296: result: yes configure:4315: checking dependency style of gcc configure:4426: result: gcc3 configure:4445: checking for gcc option to accept ISO C99 configure:4594: gcc -c -g -O2 conftest.c >&5 configure:4594: $? = 0 configure:4607: result: none needed configure:4715: checking for gcc option to accept ISO Standard C configure:4726: result: none needed configure:4739: checking how to run the C preprocessor configure:4770: gcc -E conftest.c configure:4770: $? = 0 configure:4784: gcc -E conftest.c conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory compilation terminated. configure:4784: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | /* end confdefs.h. */ | #include <ac_nonexistent.h> configure:4809: result: gcc -E configure:4829: gcc -E conftest.c configure:4829: $? = 0 configure:4843: gcc -E conftest.c conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory compilation terminated. configure:4843: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | /* end confdefs.h. */ | #include <ac_nonexistent.h> configure:4872: checking for presence of stdio.h configure:4880: gcc -E conftest.c configure:4880: $? = 0 configure:4890: result: yes configure:4893: checking for presence of wchar.h configure:4901: gcc -E conftest.c configure:4901: $? = 0 configure:4911: result: yes configure:4914: checking for presence of stdlib.h configure:4922: gcc -E conftest.c configure:4922: $? = 0 configure:4932: result: yes configure:4935: checking for presence of string.h configure:4943: gcc -E conftest.c configure:4943: $? = 0 configure:4953: result: yes configure:4956: checking for presence of strings.h configure:4964: gcc -E conftest.c configure:4964: $? = 0 configure:4974: result: yes configure:4977: checking for presence of stdint.h configure:4985: gcc -E conftest.c configure:4985: $? = 0 configure:4995: result: yes configure:4998: checking for presence of fcntl.h configure:5006: gcc -E conftest.c configure:5006: $? = 0 configure:5016: result: yes configure:5019: checking for presence of sys/types.h configure:5027: gcc -E conftest.c configure:5027: $? = 0 configure:5037: result: yes configure:5040: checking for presence of time.h configure:5048: gcc -E conftest.c configure:5048: $? = 0 configure:5058: result: yes configure:5061: checking for presence of unistd.h configure:5069: gcc -E conftest.c configure:5069: $? = 0 configure:5079: result: yes configure:5150: checking for grep that handles long lines and -e configure:5208: result: /bin/grep configure:5213: checking for fgrep configure:5275: result: /bin/grep -F configure:5289: checking whether _GNU_SOURCE is already defined configure:5312: gcc -c -g -O2 conftest.c >&5 conftest.c:14:2: error: #error _GNU_SOURCE is not defined #error _GNU_SOURCE is not defined ^ conftest.c:15:1: error: unknown type name 'choke' choke me now; ^ conftest.c:15:10: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'now' choke me now; ^ configure:5312: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | /* end confdefs.h. */ | | | #ifndef _GNU_SOURCE | #error _GNU_SOURCE is not defined | choke me now; | #endif | | int | main () | { | | ; | return 0; | } | configure:5323: result: no configure:5328: checking whether headers accept _GNU_SOURCE configure:5351: gcc -c -g -O2 conftest.c >&5 configure:5351: $? = 0 configure:5361: result: yes configure:5386: checking whether to try __BSD_VISIBLE macro configure:5416: gcc -c -g -O2 conftest.c >&5 configure:5416: $? = 0 configure:5425: result: no configure:5520: checking whether to try _DARWIN_C_SOURCE macro configure:5543: gcc -c -g -O2 conftest.c >&5 conftest.c:15:2: error: #error __APPLE__ is not defined #error __APPLE__ is not defined ^ conftest.c:16:1: error: unknown type name 'choke' choke me now; ^ conftest.c:16:10: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'now' choke me now; ^ configure:5543: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | /* end confdefs.h. */ | | #define _GNU_SOURCE 1 | | #ifndef __APPLE__ | #error __APPLE__ is not defined | choke me now; | #endif | | int | main () | { | | ; | return 0; | } | configure:5554: result: no configure:5650: checking whether to try __EXTENSIONS__ macro configure:5673: gcc -c -g -O2 conftest.c >&5 conftest.c:15:2: error: #error __sun is not defined #error __sun is not defined ^ conftest.c:16:1: error: unknown type name 'choke' choke me now; ^ conftest.c:16:10: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'now' choke me now; ^ configure:5673: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | /* end confdefs.h. */ | | #define _GNU_SOURCE 1 | | #ifndef __sun | #error __sun is not defined | choke me now; | #endif | | int | main () | { | | ; | return 0; | } | configure:5684: result: no configure:5780: checking whether to try _NETBSD_SOURCE macro configure:5803: gcc -c -g -O2 conftest.c >&5 conftest.c:15:2: error: #error __NetBSD__ is not defined #error __NetBSD__ is not defined ^ conftest.c:16:1: error: unknown type name 'choke' choke me now; ^ conftest.c:16:10: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'now' choke me now; ^ configure:5803: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | /* end confdefs.h. */ | | #define _GNU_SOURCE 1 | | #ifndef __NetBSD__ | #error __NetBSD__ is not defined | choke me now; | #endif | | int | main () | { | | ; | return 0; | } | configure:5814: result: no configure:5910: checking whether to try _BSD_SOURCE macro configure:5933: gcc -c -g -O2 conftest.c >&5 conftest.c:15:2: error: #error __OpenBSD__ is not defined #error __OpenBSD__ is not defined ^ conftest.c:16:1: error: unknown type name 'choke' choke me now; ^ conftest.c:16:10: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'now' choke me now; ^ configure:5933: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | /* end confdefs.h. */ | | #define _GNU_SOURCE 1 | | #ifndef __OpenBSD__ | #error __OpenBSD__ is not defined | choke me now; | #endif | | int | main () | { | | ; | return 0; | } | configure:5944: result: no configure:6040: checking whether to try _TANDEM_SOURCE macro configure:6063: gcc -c -g -O2 conftest.c >&5 conftest.c:15:2: error: #error __TANDEM is not defined #error __TANDEM is not defined ^ conftest.c:16:1: error: unknown type name 'choke' choke me now; ^ conftest.c:16:10: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'now' choke me now; ^ configure:6063: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | /* end confdefs.h. */ | | #define _GNU_SOURCE 1 | | #ifndef __TANDEM | #error __TANDEM is not defined | choke me now; | #endif | | int | main () | { | | ; | return 0; | } | configure:6074: result: no configure:6170: checking whether to try _ALL_SOURCE macro configure:6191: gcc -c -g -O2 conftest.c >&5 conftest.c:13:2: error: #error Target is not z/OS, AIX or Interix #error Target is not z/OS, AIX or Interix ^ conftest.c:14:1: error: unknown type name 'choke' choke me now; ^ conftest.c:14:10: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'now' choke me now; ^ configure:6191: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | /* end confdefs.h. */ | | #if !defined(__TOS_MVS__) && !defined (__INTERIX) | #error Target is not z/OS, AIX or Interix | choke me now; | #endif | | int | main () | { | | ; | return 0; | } configure:6200: result: no configure:6299: checking whether _XOPEN_SOURCE is already defined configure:6323: gcc -c -g -O2 conftest.c >&5 conftest.c:15:2: error: #error _XOPEN_SOURCE is not defined #error _XOPEN_SOURCE is not defined ^ conftest.c:16:1: error: unknown type name 'choke' choke me now; ^ conftest.c:16:10: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'now' choke me now; ^ configure:6323: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | /* end confdefs.h. */ | | #define _GNU_SOURCE 1 | | #ifndef _XOPEN_SOURCE | #error _XOPEN_SOURCE is not defined | choke me now; | #endif | | int | main () | { | | ; | return 0; | } | configure:6335: result: no configure:6339: checking headers for POSIX.1-2008/SUSv4 features configure:6418: gcc -c -g -O2 conftest.c >&5 configure:6418: $? = 0 configure:6419: Checked features work with undefined all extensions and without _XOPEN_SOURCE configure:6429: gcc -c -g -O2 conftest.c >&5 configure:6429: $? = 0 configure:6430: Checked features work with extensions configure:6440: gcc -c -g -O2 conftest.c >&5 configure:6440: $? = 0 configure:6441: Checked features work with extensions and with _XOPEN_SOURCE=700 configure:6453: gcc -c -g -O2 conftest.c >&5 conftest.c: In function 'main': conftest.c:87:10: error: 'strnlen' undeclared (first use in this function) (void) strnlen; ^ conftest.c:87:10: note: each undeclared identifier is reported only once for each function it appears in conftest.c:93:10: error: 'wcsnlen' undeclared (first use in this function) (void) wcsnlen; ^ conftest.c:107:10: error: 'renameat' undeclared (first use in this function) (void) renameat; ^ conftest.c:111:10: error: 'getline' undeclared (first use in this function) (void) getline; ^ conftest.c:123:10: error: 'unsetenv' undeclared (first use in this function) (void) unsetenv; ^ configure:6453: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | /* end confdefs.h. */ | | | #ifdef _GNU_SOURCE | #undef _GNU_SOURCE | #endif | #ifdef _XOPEN_SOURCE | #undef _XOPEN_SOURCE | #endif | #ifdef _XOPEN_SOURCE_EXTENDED | #undef _XOPEN_SOURCE_EXTENDED | #endif | #ifdef _XOPEN_VERSION | #undef _XOPEN_VERSION | #endif | #ifdef _POSIX_C_SOURCE | #undef _POSIX_C_SOURCE | #endif | #ifdef _POSIX_SOURCE | #undef _POSIX_SOURCE | #endif | #ifdef _DEFAULT_SOURCE | #undef _DEFAULT_SOURCE | #endif | #ifdef _BSD_SOURCE | #undef _BSD_SOURCE | #endif | #ifdef _SVID_SOURCE | #undef _SVID_SOURCE | #endif | #ifdef __EXTENSIONS__ | #undef __EXTENSIONS__ | #endif | #ifdef _ALL_SOURCE | #undef _ALL_SOURCE | #endif | #ifdef _TANDEM_SOURCE | #undef _TANDEM_SOURCE | #endif | #ifdef _DARWIN_C_SOURCE | #undef _DARWIN_C_SOURCE | #endif | #ifdef __BSD_VISIBLE | #undef __BSD_VISIBLE | #endif | #ifdef _NETBSD_SOURCE | #undef _NETBSD_SOURCE | #endif | | | #define _POSIX_C_SOURCE 1 | #define _ANSI_SOURCE 1 | | | /* Start of MHD basic test includes */ | #include <stdio.h> | #include <sys/types.h> | #include <wchar.h> | #include <stdlib.h> | #include <string.h> | #include <strings.h> | #include <stdint.h> | #include <fcntl.h> | #include <time.h> | #include <unistd.h> | /* End of MHD basic test includes */ | | | /* Check will be passed if ALL features are avalable | * and failed if ANY feature is not avalable. */ | int main() | { | | #ifndef stpncpy | (void) stpncpy; | #endif | #ifndef strnlen | (void) strnlen; | #endif | | #if !defined(__NetBSD__) && !defined(__OpenBSD__) | /* NetBSD and OpenBSD didn't implement wcsnlen() for some reason. */ | #ifndef wcsnlen | (void) wcsnlen; | #endif | #endif | | #ifdef __CYGWIN__ | /* The only depend function on Cygwin, but missing on some other platforms */ | #ifndef strndup | (void) strndup; | #endif | #endif | | #ifndef __sun | /* illumos forget to uncomment some _XPG7 macros. */ | #ifndef renameat | (void) renameat; | #endif | | #ifndef getline | (void) getline; | #endif | #endif /* ! __sun */ | | /* gmtime_r() becomes mandatory only in POSIX.1-2008. */ | #ifndef gmtime_r | (void) gmtime_r; | #endif | | /* unsetenv() actually defined in POSIX.1-2001 so it | * must be present with _XOPEN_SOURCE == 700 too. */ | #ifndef unsetenv | (void) unsetenv; | #endif | | return 0; | } | | | configure:6458: Checked features DO NOT work with disabled extensions, with _POSIX_C_SOURCE=1 and _ANSI_SOURCE=1 configure:6743: result: available, works with _XOPEN_SOURCE=700, works with extension macro configure:7986: checking for useful system-specific features configure:7998: gcc -c -g -O2 conftest.c >&5 conftest.c:18:2: error: #error No useful system features. #error No useful system features. ^ conftest.c:19:1: error: unknown type name 'choke' choke me now; ^ conftest.c:19:10: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'now' choke me now; ^ configure:7998: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | /* end confdefs.h. */ | | #define _GNU_SOURCE 1 | | | #ifdef __APPLE__ | #include <sys/socket.h> | #else | #error No useful system features. | choke me now; | #endif | | int main() | { | #ifdef __APPLE__ | #ifndef sendfile | (void) sendfile; | #endif | #endif | return 0; | } | | configure:8006: result: no configure:8066: checking for final set of defined symbols configure:8089: result: _GNU_SOURCE _XOPEN_SOURCE=700 configure:8147: checking how to print strings configure:8174: result: printf configure:8195: checking for a sed that does not truncate output configure:8259: result: /bin/sed configure:8277: checking for egrep configure:8339: result: /bin/grep -E configure:8374: checking for ld used by gcc configure:8441: result: /usr/bin/ld configure:8448: checking if the linker (/usr/bin/ld) is GNU ld configure:8463: result: yes configure:8475: checking for BSD- or MS-compatible name lister (nm) configure:8529: result: /usr/bin/nm -B configure:8659: checking the name lister (/usr/bin/nm -B) interface configure:8666: gcc -c -g -O2 conftest.c >&5 configure:8669: /usr/bin/nm -B "conftest.o" configure:8672: output 0000000000000000 B some_variable configure:8679: result: BSD nm configure:8683: checking the maximum length of command line arguments configure:8814: result: 1572864 configure:8862: checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format configure:8902: result: func_convert_file_noop configure:8909: checking how to convert x86_64-pc-linux-gnu file names to toolchain format configure:8929: result: func_convert_file_noop configure:8936: checking for /usr/bin/ld option to reload object files configure:8943: result: -r configure:9017: checking for objdump configure:9033: found /usr/bin/objdump configure:9044: result: objdump configure:9073: checking how to recognize dependent libraries configure:9273: result: pass_all configure:9358: checking for dlltool configure:9388: result: no configure:9415: checking how to associate runtime and link libraries configure:9442: result: printf %s\n configure:9502: checking for ar configure:9518: found /usr/bin/ar configure:9529: result: ar configure:9566: checking for archiver @FILE support configure:9583: gcc -c -g -O2 conftest.c >&5 configure:9583: $? = 0 configure:9586: ar cru libconftest.a @conftest.lst >&5 ar: `u' modifier ignored since `D' is the default (see `U') configure:9589: $? = 0 configure:9594: ar cru libconftest.a @conftest.lst >&5 ar: `u' modifier ignored since `D' is the default (see `U') ar: conftest.o: No such file or directory configure:9597: $? = 1 configure:9609: result: @ configure:9667: checking for strip configure:9683: found /usr/bin/strip configure:9694: result: strip configure:9766: checking for ranlib configure:9782: found /usr/bin/ranlib configure:9793: result: ranlib configure:9895: checking command to parse /usr/bin/nm -B output from gcc object configure:10048: gcc -c -g -O2 conftest.c >&5 configure:10051: $? = 0 configure:10055: /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:10058: $? = 0 configure:10124: gcc -o conftest -g -O2 conftest.c conftstm.o >&5 configure:10127: $? = 0 configure:10165: result: ok configure:10212: checking for sysroot configure:10242: result: no configure:10249: checking for a working dd configure:10287: result: /bin/dd configure:10291: checking how to truncate binary pipes configure:10306: result: /bin/dd bs=4096 count=1 configure:10442: gcc -c -g -O2 conftest.c >&5 configure:10445: $? = 0 configure:10635: checking for mt configure:10651: found /bin/mt configure:10662: result: mt configure:10685: checking if mt is a manifest tool configure:10691: mt '-?' configure:10699: result: no configure:11371: checking for ANSI C header files configure:11391: gcc -c -g -O2 conftest.c >&5 configure:11391: $? = 0 configure:11464: gcc -o conftest -g -O2 conftest.c >&5 configure:11464: $? = 0 configure:11464: ./conftest configure:11464: $? = 0 configure:11475: result: yes configure:11488: checking for sys/types.h configure:11488: gcc -c -g -O2 conftest.c >&5 configure:11488: $? = 0 configure:11488: result: yes configure:11488: checking for sys/stat.h configure:11488: gcc -c -g -O2 conftest.c >&5 configure:11488: $? = 0 configure:11488: result: yes configure:11488: checking for stdlib.h configure:11488: gcc -c -g -O2 conftest.c >&5 configure:11488: $? = 0 configure:11488: result: yes configure:11488: checking for string.h configure:11488: gcc -c -g -O2 conftest.c >&5 configure:11488: $? = 0 configure:11488: result: yes configure:11488: checking for memory.h configure:11488: gcc -c -g -O2 conftest.c >&5 configure:11488: $? = 0 configure:11488: result: yes configure:11488: checking for strings.h configure:11488: gcc -c -g -O2 conftest.c >&5 configure:11488: $? = 0 configure:11488: result: yes configure:11488: checking for inttypes.h configure:11488: gcc -c -g -O2 conftest.c >&5 configure:11488: $? = 0 configure:11488: result: yes configure:11488: checking for stdint.h configure:11488: gcc -c -g -O2 conftest.c >&5 configure:11488: $? = 0 configure:11488: result: yes configure:11488: checking for unistd.h configure:11488: gcc -c -g -O2 conftest.c >&5 configure:11488: $? = 0 configure:11488: result: yes configure:11502: checking for dlfcn.h configure:11502: gcc -c -g -O2 conftest.c >&5 configure:11502: $? = 0 configure:11502: result: yes configure:12056: checking for objdir configure:12071: result: .libs configure:12335: checking if gcc supports -fno-rtti -fno-exceptions configure:12353: gcc -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:12357: $? = 0 configure:12370: result: no configure:12728: checking for gcc option to produce PIC configure:12735: result: -fPIC -DPIC configure:12743: checking if gcc PIC flag -fPIC -DPIC works configure:12761: gcc -c -g -O2 -fPIC -DPIC -DPIC conftest.c >&5 configure:12765: $? = 0 configure:12778: result: yes configure:12807: checking if gcc static flag -static works configure:12835: result: yes configure:12850: checking if gcc supports -c -o file.o configure:12871: gcc -c -g -O2 -o out/conftest2.o conftest.c >&5 configure:12875: $? = 0 configure:12897: result: yes configure:12905: checking if gcc supports -c -o file.o configure:12952: result: yes configure:12985: checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries configure:14248: result: yes configure:14285: checking whether -lc should be explicitly linked in configure:14293: gcc -c -g -O2 conftest.c >&5 configure:14296: $? = 0 configure:14311: gcc -shared -fPIC -DPIC conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep -lc \>/dev/null 2\>\&1 configure:14314: $? = 0 configure:14328: result: no configure:14488: checking dynamic linker characteristics configure:15069: gcc -o conftest -g -O2 -Wl,-rpath -Wl,/foo conftest.c >&5 configure:15069: $? = 0 configure:15318: result: GNU/Linux ld.so configure:15440: checking how to hardcode library paths into programs configure:15465: result: immediate configure:16013: checking whether stripping libraries is possible configure:16018: result: yes configure:16053: checking if libtool supports shared libraries configure:16055: result: yes configure:16058: checking whether to build shared libraries configure:16083: result: yes configure:16086: checking whether to build static libraries configure:16090: result: yes configure:16170: checking for windres configure:16200: result: no configure:16325: checking for stdbool.h configure:16325: gcc -c -g -O2 conftest.c >&5 configure:16325: $? = 0 configure:16325: result: yes configure:16330: checking for bool configure:16330: gcc -c -g -O2 conftest.c >&5 configure:16330: $? = 0 configure:16330: gcc -c -g -O2 conftest.c >&5 conftest.c: In function 'main': conftest.c:33:19: error: expected expression before ')' token if (sizeof ((bool))) ^ configure:16330: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | #define _GNU_SOURCE 1 | #define _XOPEN_SOURCE 700 | #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 <stdbool.h> | | | | int | main () | { | if (sizeof ((bool))) | return 0; | ; | return 0; | } configure:16330: result: yes configure:16387: checking whether "true" is defined or builtin configure:16414: gcc -c -g -O2 conftest.c >&5 configure:16414: $? = 0 configure:16422: result: yes configure:16432: checking whether "false" is defined or builtin configure:16459: gcc -c -g -O2 conftest.c >&5 configure:16459: $? = 0 configure:16467: result: yes configure:16477: checking whether "true" and "false" could be used configure:16505: gcc -c -g -O2 conftest.c >&5 configure:16505: $? = 0 configure:16513: result: yes configure:16522: checking whether C compiler accepts -Werror=attributes configure:16541: gcc -c -g -O2 -Werror=attributes conftest.c >&5 configure:16541: $? = 0 configure:16549: result: yes configure:16555: checking whether -Werror=attributes actually works configure:16568: gcc -c -g -O2 -Werror=attributes conftest.c >&5 conftest.c:27:1: error: 'non_existing_attrb_dummy' attribute directive ignored [-Werror=attributes] __attribute__((non_existing_attrb_dummy)) int SimpleFunc(void) {return 3;} ^ cc1: some warnings being treated as errors configure:16568: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | #define _GNU_SOURCE 1 | #define _XOPEN_SOURCE 700 | #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_STDBOOL_H 1 | #define HAVE_REAL_BOOL 1 | /* end confdefs.h. */ | __attribute__((non_existing_attrb_dummy)) int SimpleFunc(void) {return 3;} | int | main () | { | int r = SimpleFunc(); if (r) return r; | ; | return 0; | } configure:16576: result: yes configure:16588: checking for function inline keywords suppoted by gcc configure:16638: gcc -o conftest -g -O2 -Werror=attributes conftest.c >&5 configure:16638: $? = 0 configure:16663: result: inline __attribute__((always_inline)) configure:16669: checking for target host OS configure:16873: result: Linux configure:17192: checking whether gcc is Clang configure:17217: result: no configure:17340: checking whether pthreads work with -pthread configure:17434: gcc -o conftest -g -O2 -pthread conftest.c >&5 configure:17434: $? = 0 configure:17443: result: yes configure:17462: checking for joinable pthread attribute configure:17480: gcc -o conftest -g -O2 -pthread conftest.c >&5 configure:17480: $? = 0 configure:17488: result: PTHREAD_CREATE_JOINABLE configure:17502: checking whether more special flags are required for pthreads configure:17515: result: no configure:17523: checking for PTHREAD_PRIO_INHERIT configure:17539: gcc -o conftest -g -O2 -pthread conftest.c >&5 configure:17539: $? = 0 configure:17548: result: yes configure:17699: checking for threading lib to use with libmicrohttpd configure:17766: result: posix configure:17786: checking for pthread_np.h configure:17786: gcc -c -g -O2 -pthread conftest.c >&5 conftest.c:72:24: fatal error: pthread_np.h: No such file or directory compilation terminated. configure:17786: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | #define _GNU_SOURCE 1 | #define _XOPEN_SOURCE 700 | #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_STDBOOL_H 1 | #define HAVE_REAL_BOOL 1 | #define INLINE_FUNC 1 | #define _MHD_static_inline static inline __attribute__((always_inline)) | #define LINUX 1 | #define HAVE_PTHREAD_PRIO_INHERIT 1 | #define HAVE_PTHREAD_H 1 | #define MHD_USE_POSIX_THREADS 1 | /* end confdefs.h. */ | | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | | #include <pthread.h> | | | | #include <pthread_np.h> configure:17786: result: no configure:17806: checking whether pthread_attr_setname_np is declared configure:17806: gcc -c -g -O2 -pthread conftest.c >&5 conftest.c: In function 'main': conftest.c:47:10: error: 'pthread_attr_setname_np' undeclared (first use in this function) (void) pthread_attr_setname_np; ^ conftest.c:47:10: note: each undeclared identifier is reported only once for each function it appears in configure:17806: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | #define _GNU_SOURCE 1 | #define _XOPEN_SOURCE 700 | #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_STDBOOL_H 1 | #define HAVE_REAL_BOOL 1 | #define INLINE_FUNC 1 | #define _MHD_static_inline static inline __attribute__((always_inline)) | #define LINUX 1 | #define HAVE_PTHREAD_PRIO_INHERIT 1 | #define HAVE_PTHREAD_H 1 | #define MHD_USE_POSIX_THREADS 1 | /* end confdefs.h. */ | | #include <pthread.h> | #ifdef HAVE_PTHREAD_NP_H | #include <pthread_np.h> | #endif | | | int | main () | { | #ifndef pthread_attr_setname_np | #ifdef __cplusplus | (void) pthread_attr_setname_np; | #else | (void) pthread_attr_setname_np; | #endif | #endif | | ; | return 0; | } configure:17806: result: no configure:17905: checking whether pthread_setname_np is declared configure:17905: gcc -c -g -O2 -pthread conftest.c >&5 configure:17905: $? = 0 configure:17905: result: yes configure:17920: checking for pthread_setname_np(3) in NetBSD or OSF1 form configure:17938: gcc -o conftest -g -O2 -pthread conftest.c >&5 conftest.c: In function 'main': conftest.c:42:11: error: too many arguments to function 'pthread_setname_np' int res = pthread_setname_np(pthread_self(), "name", 0); ^ In file included from conftest.c:34:0: /usr/include/pthread.h:451:12: note: declared here extern int pthread_setname_np (pthread_t __target_thread, const char *__name) ^ configure:17938: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | #define _GNU_SOURCE 1 | #define _XOPEN_SOURCE 700 | #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_STDBOOL_H 1 | #define HAVE_REAL_BOOL 1 | #define INLINE_FUNC 1 | #define _MHD_static_inline static inline __attribute__((always_inline)) | #define LINUX 1 | #define HAVE_PTHREAD_PRIO_INHERIT 1 | #define HAVE_PTHREAD_H 1 | #define MHD_USE_POSIX_THREADS 1 | /* end confdefs.h. */ | | #include <pthread.h> | #ifdef HAVE_PTHREAD_NP_H | #include <pthread_np.h> | #endif | | int | main () | { | int res = pthread_setname_np(pthread_self(), "name", 0); | ; | return 0; | } configure:17946: result: no configure:17956: checking for pthread_setname_np(3) in GNU/Linux form configure:17974: gcc -o conftest -g -O2 -pthread conftest.c >&5 configure:17974: $? = 0 configure:17979: result: yes configure:18083: checking whether to enable thread names configure:18114: gcc -c -g -O2 conftest.c >&5 configure:18114: $? = 0 configure:18131: result: yes configure:18180: checking for sys/time.h configure:18180: gcc -c -g -O2 conftest.c >&5 configure:18180: $? = 0 configure:18180: result: yes configure:18188: checking for gettimeofday configure:18188: gcc -o conftest -g -O2 conftest.c >&5 configure:18188: $? = 0 configure:18188: result: yes configure:18203: checking for time.h configure:18203: gcc -c -g -O2 conftest.c >&5 configure:18203: $? = 0 configure:18203: result: yes configure:18211: checking for nanosleep configure:18211: gcc -o conftest -g -O2 conftest.c >&5 configure:18211: $? = 0 configure:18211: result: yes configure:18226: checking for unistd.h configure:18226: result: yes configure:18234: checking for usleep configure:18234: gcc -o conftest -g -O2 conftest.c >&5 configure:18234: $? = 0 configure:18234: result: yes configure:18250: checking for string.h configure:18250: result: yes configure:18250: checking for sys/types.h configure:18250: result: yes configure:18250: checking for sys/socket.h configure:18250: gcc -c -g -O2 conftest.c >&5 configure:18250: $? = 0 configure:18250: result: yes configure:18250: checking for netinet/in.h configure:18250: gcc -c -g -O2 conftest.c >&5 configure:18250: $? = 0 configure:18250: result: yes configure:18250: checking for time.h configure:18250: result: yes configure:18250: checking for sys/select.h configure:18250: gcc -c -g -O2 conftest.c >&5 configure:18250: $? = 0 configure:18250: result: yes configure:18250: checking for netinet/tcp.h configure:18250: gcc -c -g -O2 conftest.c >&5 configure:18250: $? = 0 configure:18250: result: yes configure:18261: checking whether shutdown of listen socket trigger select() configure:18626: result: yes configure:18649: checking whether the linker accepts -fno-strict-aliasing configure:18668: gcc -o conftest -g -O2 -fno-strict-aliasing conftest.c >&5 configure:18668: $? = 0 configure:18677: result: yes configure:18686: checking whether C compiler accepts -fno-strict-aliasing configure:18705: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 configure:18705: $? = 0 configure:18714: result: yes configure:18730: : CFLAGS="$CFLAGS" configure:18733: $? = 0 configure:18760: checking whether byte ordering is bigendian configure:18775: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 conftest.c:49:9: error: unknown type name 'not' not a universal capable compiler ^ conftest.c:49:15: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal' not a universal capable compiler ^ conftest.c:49:15: error: unknown type name 'universal' configure:18775: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | #define _GNU_SOURCE 1 | #define _XOPEN_SOURCE 700 | #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_STDBOOL_H 1 | #define HAVE_REAL_BOOL 1 | #define INLINE_FUNC 1 | #define _MHD_static_inline static inline __attribute__((always_inline)) | #define LINUX 1 | #define HAVE_PTHREAD_PRIO_INHERIT 1 | #define HAVE_PTHREAD_H 1 | #define MHD_USE_POSIX_THREADS 1 | #define HAVE_PTHREAD_SETNAME_NP_GNU 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_TIME_H 1 | #define HAVE_NANOSLEEP 1 | #define HAVE_UNISTD_H 1 | #define HAVE_USLEEP 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_LISTEN_SHUTDOWN 1 | /* end confdefs.h. */ | #ifndef __APPLE_CC__ | not a universal capable compiler | #endif | typedef int dummy; | configure:18820: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 configure:18820: $? = 0 configure:18838: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 conftest.c: In function 'main': conftest.c:55:4: error: unknown type name 'not' not big endian ^ conftest.c:55:12: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'endian' not big endian ^ configure:18838: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | #define _GNU_SOURCE 1 | #define _XOPEN_SOURCE 700 | #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_STDBOOL_H 1 | #define HAVE_REAL_BOOL 1 | #define INLINE_FUNC 1 | #define _MHD_static_inline static inline __attribute__((always_inline)) | #define LINUX 1 | #define HAVE_PTHREAD_PRIO_INHERIT 1 | #define HAVE_PTHREAD_H 1 | #define MHD_USE_POSIX_THREADS 1 | #define HAVE_PTHREAD_SETNAME_NP_GNU 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_TIME_H 1 | #define HAVE_NANOSLEEP 1 | #define HAVE_UNISTD_H 1 | #define HAVE_USLEEP 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_LISTEN_SHUTDOWN 1 | /* end confdefs.h. */ | #include <sys/types.h> | #include <sys/param.h> | | int | main () | { | #if BYTE_ORDER != BIG_ENDIAN | not big endian | #endif | | ; | return 0; | } configure:18966: result: no configure:18987: checking for curl configure:19003: found /usr/bin/curl configure:19015: result: yes configure:19033: checking for makeinfo configure:19061: result: no configure:19134: checking for poll.h configure:19134: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 configure:19134: $? = 0 configure:19134: result: yes configure:19143: checking for poll configure:19143: gcc -o conftest -g -O2 -fno-strict-aliasing conftest.c >&5 configure:19143: $? = 0 configure:19143: result: yes configure:19209: checking linux/version.h usability configure:19209: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 configure:19209: $? = 0 configure:19209: result: yes configure:19209: checking linux/version.h presence configure:19209: gcc -E conftest.c configure:19209: $? = 0 configure:19209: result: yes configure:19209: checking for linux/version.h configure:19209: result: yes configure:19215: checking for Linux epoll(7) interface configure:19241: gcc -o conftest -g -O2 -fno-strict-aliasing -DHAVE_LINUX_VERSION_H conftest.c >&5 configure:19241: $? = 0 configure:19252: result: yes configure:19275: checking for epoll_create1() configure:19297: gcc -o conftest -g -O2 -fno-strict-aliasing conftest.c >&5 configure:19297: $? = 0 configure:19305: result: yes configure:19319: checking for fcntl.h configure:19319: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 configure:19319: $? = 0 configure:19319: result: yes configure:19319: checking for math.h configure:19319: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 configure:19319: $? = 0 configure:19319: result: yes configure:19319: checking for errno.h configure:19319: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 configure:19319: $? = 0 configure:19319: result: yes configure:19319: checking for limits.h configure:19319: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 configure:19319: $? = 0 configure:19319: result: yes configure:19319: checking for stdio.h configure:19319: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 configure:19319: $? = 0 configure:19319: result: yes configure:19319: checking for locale.h configure:19319: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 configure:19319: $? = 0 configure:19319: result: yes configure:19319: checking for sys/stat.h configure:19319: result: yes configure:19319: checking for sys/types.h configure:19319: result: yes configure:19341: checking for sys/types.h configure:19341: result: yes configure:19341: checking for sys/time.h configure:19341: result: yes configure:19341: checking for sys/msg.h configure:19341: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 configure:19341: $? = 0 configure:19341: result: yes configure:19341: checking for time.h configure:19341: result: yes configure:19341: checking for sys/mman.h configure:19341: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 configure:19341: $? = 0 configure:19341: result: yes configure:19341: checking for sys/ioctl.h configure:19341: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 configure:19341: $? = 0 configure:19341: result: yes configure:19341: checking for sys/socket.h configure:19341: result: yes configure:19341: checking for sys/select.h configure:19341: result: yes configure:19341: checking for netdb.h configure:19341: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 configure:19341: $? = 0 configure:19341: result: yes configure:19341: checking for netinet/in.h configure:19341: result: yes configure:19341: checking for netinet/ip.h configure:19341: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 configure:19341: $? = 0 configure:19341: result: yes configure:19341: checking for netinet/tcp.h configure:19341: result: yes configure:19341: checking for arpa/inet.h configure:19341: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 configure:19341: $? = 0 configure:19341: result: yes configure:19341: checking for endian.h configure:19341: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 configure:19341: $? = 0 configure:19341: result: yes configure:19341: checking for machine/endian.h configure:19341: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 conftest.c:108:28: fatal error: machine/endian.h: No such file or directory compilation terminated. configure:19341: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | #define _GNU_SOURCE 1 | #define _XOPEN_SOURCE 700 | #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_STDBOOL_H 1 | #define HAVE_REAL_BOOL 1 | #define INLINE_FUNC 1 | #define _MHD_static_inline static inline __attribute__((always_inline)) | #define LINUX 1 | #define HAVE_PTHREAD_PRIO_INHERIT 1 | #define HAVE_PTHREAD_H 1 | #define MHD_USE_POSIX_THREADS 1 | #define HAVE_PTHREAD_SETNAME_NP_GNU 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_TIME_H 1 | #define HAVE_NANOSLEEP 1 | #define HAVE_UNISTD_H 1 | #define HAVE_USLEEP 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_LISTEN_SHUTDOWN 1 | #define HAVE_POLL_H 1 | #define HAVE_POLL 1 | #define EPOLL_SUPPORT 1 | #define HAVE_EPOLL_CREATE1 1 | #define HAVE_FCNTL_H 1 | #define HAVE_MATH_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_MSG_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ENDIAN_H 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | | #include <machine/endian.h> configure:19341: result: no configure:19341: checking for sys/endian.h configure:19341: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 conftest.c:108:24: fatal error: sys/endian.h: No such file or directory compilation terminated. configure:19341: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | #define _GNU_SOURCE 1 | #define _XOPEN_SOURCE 700 | #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_STDBOOL_H 1 | #define HAVE_REAL_BOOL 1 | #define INLINE_FUNC 1 | #define _MHD_static_inline static inline __attribute__((always_inline)) | #define LINUX 1 | #define HAVE_PTHREAD_PRIO_INHERIT 1 | #define HAVE_PTHREAD_H 1 | #define MHD_USE_POSIX_THREADS 1 | #define HAVE_PTHREAD_SETNAME_NP_GNU 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_TIME_H 1 | #define HAVE_NANOSLEEP 1 | #define HAVE_UNISTD_H 1 | #define HAVE_USLEEP 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_LISTEN_SHUTDOWN 1 | #define HAVE_POLL_H 1 | #define HAVE_POLL 1 | #define EPOLL_SUPPORT 1 | #define HAVE_EPOLL_CREATE1 1 | #define HAVE_FCNTL_H 1 | #define HAVE_MATH_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_MSG_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ENDIAN_H 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | | #include <sys/endian.h> configure:19341: result: no configure:19341: checking for sys/param.h configure:19341: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 configure:19341: $? = 0 configure:19341: result: yes configure:19341: checking for sys/machine.h configure:19341: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 conftest.c:109:25: fatal error: sys/machine.h: No such file or directory compilation terminated. configure:19341: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | #define _GNU_SOURCE 1 | #define _XOPEN_SOURCE 700 | #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_STDBOOL_H 1 | #define HAVE_REAL_BOOL 1 | #define INLINE_FUNC 1 | #define _MHD_static_inline static inline __attribute__((always_inline)) | #define LINUX 1 | #define HAVE_PTHREAD_PRIO_INHERIT 1 | #define HAVE_PTHREAD_H 1 | #define MHD_USE_POSIX_THREADS 1 | #define HAVE_PTHREAD_SETNAME_NP_GNU 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_TIME_H 1 | #define HAVE_NANOSLEEP 1 | #define HAVE_UNISTD_H 1 | #define HAVE_USLEEP 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_LISTEN_SHUTDOWN 1 | #define HAVE_POLL_H 1 | #define HAVE_POLL 1 | #define EPOLL_SUPPORT 1 | #define HAVE_EPOLL_CREATE1 1 | #define HAVE_FCNTL_H 1 | #define HAVE_MATH_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_MSG_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ENDIAN_H 1 | #define HAVE_SYS_PARAM_H 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | | #include <sys/machine.h> configure:19341: result: no configure:19341: checking for sys/byteorder.h configure:19341: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 conftest.c:109:27: fatal error: sys/byteorder.h: No such file or directory compilation terminated. configure:19341: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | #define _GNU_SOURCE 1 | #define _XOPEN_SOURCE 700 | #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_STDBOOL_H 1 | #define HAVE_REAL_BOOL 1 | #define INLINE_FUNC 1 | #define _MHD_static_inline static inline __attribute__((always_inline)) | #define LINUX 1 | #define HAVE_PTHREAD_PRIO_INHERIT 1 | #define HAVE_PTHREAD_H 1 | #define MHD_USE_POSIX_THREADS 1 | #define HAVE_PTHREAD_SETNAME_NP_GNU 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_TIME_H 1 | #define HAVE_NANOSLEEP 1 | #define HAVE_UNISTD_H 1 | #define HAVE_USLEEP 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_LISTEN_SHUTDOWN 1 | #define HAVE_POLL_H 1 | #define HAVE_POLL 1 | #define EPOLL_SUPPORT 1 | #define HAVE_EPOLL_CREATE1 1 | #define HAVE_FCNTL_H 1 | #define HAVE_MATH_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_MSG_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ENDIAN_H 1 | #define HAVE_SYS_PARAM_H 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | | #include <sys/byteorder.h> configure:19341: result: no configure:19341: checking for machine/param.h configure:19341: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 conftest.c:109:27: fatal error: machine/param.h: No such file or directory compilation terminated. configure:19341: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | #define _GNU_SOURCE 1 | #define _XOPEN_SOURCE 700 | #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_STDBOOL_H 1 | #define HAVE_REAL_BOOL 1 | #define INLINE_FUNC 1 | #define _MHD_static_inline static inline __attribute__((always_inline)) | #define LINUX 1 | #define HAVE_PTHREAD_PRIO_INHERIT 1 | #define HAVE_PTHREAD_H 1 | #define MHD_USE_POSIX_THREADS 1 | #define HAVE_PTHREAD_SETNAME_NP_GNU 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_TIME_H 1 | #define HAVE_NANOSLEEP 1 | #define HAVE_UNISTD_H 1 | #define HAVE_USLEEP 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_LISTEN_SHUTDOWN 1 | #define HAVE_POLL_H 1 | #define HAVE_POLL 1 | #define EPOLL_SUPPORT 1 | #define HAVE_EPOLL_CREATE1 1 | #define HAVE_FCNTL_H 1 | #define HAVE_MATH_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_MSG_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ENDIAN_H 1 | #define HAVE_SYS_PARAM_H 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | | #include <machine/param.h> configure:19341: result: no configure:19341: checking for sys/isa_defs.h configure:19341: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 conftest.c:109:26: fatal error: sys/isa_defs.h: No such file or directory compilation terminated. configure:19341: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | #define _GNU_SOURCE 1 | #define _XOPEN_SOURCE 700 | #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_STDBOOL_H 1 | #define HAVE_REAL_BOOL 1 | #define INLINE_FUNC 1 | #define _MHD_static_inline static inline __attribute__((always_inline)) | #define LINUX 1 | #define HAVE_PTHREAD_PRIO_INHERIT 1 | #define HAVE_PTHREAD_H 1 | #define MHD_USE_POSIX_THREADS 1 | #define HAVE_PTHREAD_SETNAME_NP_GNU 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_TIME_H 1 | #define HAVE_NANOSLEEP 1 | #define HAVE_UNISTD_H 1 | #define HAVE_USLEEP 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_LISTEN_SHUTDOWN 1 | #define HAVE_POLL_H 1 | #define HAVE_POLL 1 | #define EPOLL_SUPPORT 1 | #define HAVE_EPOLL_CREATE1 1 | #define HAVE_FCNTL_H 1 | #define HAVE_MATH_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_MSG_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ENDIAN_H 1 | #define HAVE_SYS_PARAM_H 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | | #include <sys/isa_defs.h> configure:19341: result: no configure:19341: checking for inttypes.h configure:19341: result: yes configure:19341: checking for stddef.h configure:19341: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 configure:19341: $? = 0 configure:19341: result: yes configure:19341: checking for unistd.h configure:19341: result: yes configure:19341: checking for sockLib.h configure:19341: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 conftest.c:112:21: fatal error: sockLib.h: No such file or directory compilation terminated. configure:19341: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | #define _GNU_SOURCE 1 | #define _XOPEN_SOURCE 700 | #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_STDBOOL_H 1 | #define HAVE_REAL_BOOL 1 | #define INLINE_FUNC 1 | #define _MHD_static_inline static inline __attribute__((always_inline)) | #define LINUX 1 | #define HAVE_PTHREAD_PRIO_INHERIT 1 | #define HAVE_PTHREAD_H 1 | #define MHD_USE_POSIX_THREADS 1 | #define HAVE_PTHREAD_SETNAME_NP_GNU 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_TIME_H 1 | #define HAVE_NANOSLEEP 1 | #define HAVE_UNISTD_H 1 | #define HAVE_USLEEP 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_LISTEN_SHUTDOWN 1 | #define HAVE_POLL_H 1 | #define HAVE_POLL 1 | #define EPOLL_SUPPORT 1 | #define HAVE_EPOLL_CREATE1 1 | #define HAVE_FCNTL_H 1 | #define HAVE_MATH_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_MSG_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ENDIAN_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_UNISTD_H 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | | #include <sockLib.h> configure:19341: result: no configure:19341: checking for inetLib.h configure:19341: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 conftest.c:112:21: fatal error: inetLib.h: No such file or directory compilation terminated. configure:19341: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | #define _GNU_SOURCE 1 | #define _XOPEN_SOURCE 700 | #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_STDBOOL_H 1 | #define HAVE_REAL_BOOL 1 | #define INLINE_FUNC 1 | #define _MHD_static_inline static inline __attribute__((always_inline)) | #define LINUX 1 | #define HAVE_PTHREAD_PRIO_INHERIT 1 | #define HAVE_PTHREAD_H 1 | #define MHD_USE_POSIX_THREADS 1 | #define HAVE_PTHREAD_SETNAME_NP_GNU 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_TIME_H 1 | #define HAVE_NANOSLEEP 1 | #define HAVE_UNISTD_H 1 | #define HAVE_USLEEP 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_LISTEN_SHUTDOWN 1 | #define HAVE_POLL_H 1 | #define HAVE_POLL 1 | #define EPOLL_SUPPORT 1 | #define HAVE_EPOLL_CREATE1 1 | #define HAVE_FCNTL_H 1 | #define HAVE_MATH_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_MSG_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ENDIAN_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_UNISTD_H 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | | #include <inetLib.h> configure:19341: result: no configure:19341: checking for net/if.h configure:19341: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 configure:19341: $? = 0 configure:19341: result: yes configure:19358: checking for search.h configure:19358: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 configure:19358: $? = 0 configure:19358: result: yes configure:19366: checking for tsearch configure:19366: gcc -o conftest -g -O2 -fno-strict-aliasing conftest.c >&5 configure:19366: $? = 0 configure:19366: result: yes configure:19377: checking whether tdelete works configure:19416: gcc -o conftest -g -O2 -fno-strict-aliasing conftest.c >&5 configure:19416: $? = 0 configure:19416: ./conftest configure:19416: $? = 0 configure:19427: result: yes configure:19461: checking for rand configure:19461: gcc -o conftest -g -O2 -fno-strict-aliasing conftest.c >&5 configure:19461: $? = 0 configure:19461: result: yes configure:19461: checking for random configure:19461: gcc -o conftest -g -O2 -fno-strict-aliasing conftest.c >&5 configure:19461: $? = 0 configure:19461: result: yes configure:19471: checking for struct sockaddr_in.sin_len configure:19471: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 conftest.c: In function 'main': conftest.c:99:12: error: 'struct sockaddr_in' has no member named 'sin_len' if (ac_aggr.sin_len) ^ configure:19471: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | #define _GNU_SOURCE 1 | #define _XOPEN_SOURCE 700 | #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_STDBOOL_H 1 | #define HAVE_REAL_BOOL 1 | #define INLINE_FUNC 1 | #define _MHD_static_inline static inline __attribute__((always_inline)) | #define LINUX 1 | #define HAVE_PTHREAD_PRIO_INHERIT 1 | #define HAVE_PTHREAD_H 1 | #define MHD_USE_POSIX_THREADS 1 | #define HAVE_PTHREAD_SETNAME_NP_GNU 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_TIME_H 1 | #define HAVE_NANOSLEEP 1 | #define HAVE_UNISTD_H 1 | #define HAVE_USLEEP 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_LISTEN_SHUTDOWN 1 | #define HAVE_POLL_H 1 | #define HAVE_POLL 1 | #define EPOLL_SUPPORT 1 | #define HAVE_EPOLL_CREATE1 1 | #define HAVE_FCNTL_H 1 | #define HAVE_MATH_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_MSG_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ENDIAN_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_TSEARCH 1 | #define HAVE_SEARCH_H 1 | #define HAVE_RAND 1 | #define HAVE_RANDOM 1 | /* end confdefs.h. */ | | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | #ifdef HAVE_NETINET_IN_H | #include <netinet/in.h> | #endif | | | int | main () | { | static struct sockaddr_in ac_aggr; | if (ac_aggr.sin_len) | return 0; | ; | return 0; | } configure:19471: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 conftest.c: In function 'main': conftest.c:99:19: error: 'struct sockaddr_in' has no member named 'sin_len' if (sizeof ac_aggr.sin_len) ^ configure:19471: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | #define _GNU_SOURCE 1 | #define _XOPEN_SOURCE 700 | #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_STDBOOL_H 1 | #define HAVE_REAL_BOOL 1 | #define INLINE_FUNC 1 | #define _MHD_static_inline static inline __attribute__((always_inline)) | #define LINUX 1 | #define HAVE_PTHREAD_PRIO_INHERIT 1 | #define HAVE_PTHREAD_H 1 | #define MHD_USE_POSIX_THREADS 1 | #define HAVE_PTHREAD_SETNAME_NP_GNU 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_TIME_H 1 | #define HAVE_NANOSLEEP 1 | #define HAVE_UNISTD_H 1 | #define HAVE_USLEEP 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_LISTEN_SHUTDOWN 1 | #define HAVE_POLL_H 1 | #define HAVE_POLL 1 | #define EPOLL_SUPPORT 1 | #define HAVE_EPOLL_CREATE1 1 | #define HAVE_FCNTL_H 1 | #define HAVE_MATH_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_MSG_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ENDIAN_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_TSEARCH 1 | #define HAVE_SEARCH_H 1 | #define HAVE_RAND 1 | #define HAVE_RANDOM 1 | /* end confdefs.h. */ | | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | #ifdef HAVE_NETINET_IN_H | #include <netinet/in.h> | #endif | | | int | main () | { | static struct sockaddr_in ac_aggr; | if (sizeof ac_aggr.sin_len) | return 0; | ; | return 0; | } configure:19471: result: no configure:19491: checking whether getsockname is declared configure:19491: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 configure:19491: $? = 0 configure:19491: result: yes configure:19517: checking for getsockname configure:19517: gcc -o conftest -g -O2 -fno-strict-aliasing conftest.c >&5 configure:19517: $? = 0 configure:19517: result: yes configure:19523: checking whether getsockname() is usable configure:19618: gcc -o conftest -g -O2 -fno-strict-aliasing conftest.c >&5 conftest.c: In function 'main': conftest.c:157:3: warning: implicit declaration of function 'close' [-Wimplicit-function-declaration] close (sckt); ^ configure:19618: $? = 0 configure:19618: ./conftest configure:19618: $? = 0 configure:19630: result: yes configure:19689: checking for sys/eventfd.h configure:19689: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 configure:19689: $? = 0 configure:19689: result: yes configure:19702: checking whether eventfd(2) is usable configure:19724: gcc -o conftest -g -O2 -fno-strict-aliasing conftest.c >&5 configure:19724: $? = 0 configure:19733: result: yes configure:19956: checking for accept4 configure:19956: gcc -o conftest -g -O2 -fno-strict-aliasing conftest.c >&5 configure:19956: $? = 0 configure:19956: result: yes configure:19956: checking for gmtime_r configure:19956: gcc -o conftest -g -O2 -fno-strict-aliasing conftest.c >&5 configure:19956: $? = 0 configure:19956: result: yes configure:19956: checking for memmem configure:19956: gcc -o conftest -g -O2 -fno-strict-aliasing conftest.c >&5 configure:19956: $? = 0 configure:19956: result: yes configure:19956: checking for snprintf configure:19956: gcc -o conftest -g -O2 -fno-strict-aliasing conftest.c >&5 conftest.c:114:6: warning: conflicting types for built-in function 'snprintf' char snprintf (); ^ configure:19956: $? = 0 configure:19956: result: yes configure:19974: checking whether gmtime_s is declared configure:19974: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 conftest.c: In function 'main': conftest.c:102:10: error: 'gmtime_s' undeclared (first use in this function) (void) gmtime_s; ^ conftest.c:102:10: note: each undeclared identifier is reported only once for each function it appears in configure:19974: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | #define _GNU_SOURCE 1 | #define _XOPEN_SOURCE 700 | #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_STDBOOL_H 1 | #define HAVE_REAL_BOOL 1 | #define INLINE_FUNC 1 | #define _MHD_static_inline static inline __attribute__((always_inline)) | #define LINUX 1 | #define HAVE_PTHREAD_PRIO_INHERIT 1 | #define HAVE_PTHREAD_H 1 | #define MHD_USE_POSIX_THREADS 1 | #define HAVE_PTHREAD_SETNAME_NP_GNU 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_TIME_H 1 | #define HAVE_NANOSLEEP 1 | #define HAVE_UNISTD_H 1 | #define HAVE_USLEEP 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_LISTEN_SHUTDOWN 1 | #define HAVE_POLL_H 1 | #define HAVE_POLL 1 | #define EPOLL_SUPPORT 1 | #define HAVE_EPOLL_CREATE1 1 | #define HAVE_FCNTL_H 1 | #define HAVE_MATH_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_MSG_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ENDIAN_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_TSEARCH 1 | #define HAVE_SEARCH_H 1 | #define HAVE_RAND 1 | #define HAVE_RANDOM 1 | #define HAVE_DECL_GETSOCKNAME 1 | #define HAVE_GETSOCKNAME 1 | #define MHD_USE_GETSOCKNAME 1 | #define HAVE_SYS_EVENTFD_H 1 | #define _MHD_ITC_EVENTFD 1 | #define HAVE_ACCEPT4 1 | #define HAVE_GMTIME_R 1 | #define HAVE_MEMMEM 1 | #define HAVE_SNPRINTF 1 | /* end confdefs.h. */ | #define __STDC_WANT_LIB_EXT1__ 1 | #include <time.h> | | int | main () | { | #ifndef gmtime_s | #ifdef __cplusplus | (void) gmtime_s; | #else | (void) gmtime_s; | #endif | #endif | | ; | return 0; | } configure:19974: result: no configure:20064: checking whether SOCK_NONBLOCK is declared configure:20064: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 configure:20064: $? = 0 configure:20064: result: yes configure:20092: checking whether clock_gettime is declared configure:20092: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 configure:20092: $? = 0 configure:20092: result: yes configure:20099: checking for library containing clock_gettime configure:20130: gcc -o conftest -g -O2 -fno-strict-aliasing conftest.c >&5 configure:20130: $? = 0 configure:20147: result: none required configure:20172: checking for clock_get_time configure:20195: gcc -o conftest -g -O2 -fno-strict-aliasing conftest.c >&5 conftest.c:96:24: fatal error: mach/clock.h: No such file or directory compilation terminated. configure:20195: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | #define _GNU_SOURCE 1 | #define _XOPEN_SOURCE 700 | #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_STDBOOL_H 1 | #define HAVE_REAL_BOOL 1 | #define INLINE_FUNC 1 | #define _MHD_static_inline static inline __attribute__((always_inline)) | #define LINUX 1 | #define HAVE_PTHREAD_PRIO_INHERIT 1 | #define HAVE_PTHREAD_H 1 | #define MHD_USE_POSIX_THREADS 1 | #define HAVE_PTHREAD_SETNAME_NP_GNU 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_TIME_H 1 | #define HAVE_NANOSLEEP 1 | #define HAVE_UNISTD_H 1 | #define HAVE_USLEEP 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_LISTEN_SHUTDOWN 1 | #define HAVE_POLL_H 1 | #define HAVE_POLL 1 | #define EPOLL_SUPPORT 1 | #define HAVE_EPOLL_CREATE1 1 | #define HAVE_FCNTL_H 1 | #define HAVE_MATH_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_MSG_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ENDIAN_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_TSEARCH 1 | #define HAVE_SEARCH_H 1 | #define HAVE_RAND 1 | #define HAVE_RANDOM 1 | #define HAVE_DECL_GETSOCKNAME 1 | #define HAVE_GETSOCKNAME 1 | #define MHD_USE_GETSOCKNAME 1 | #define HAVE_SYS_EVENTFD_H 1 | #define _MHD_ITC_EVENTFD 1 | #define HAVE_ACCEPT4 1 | #define HAVE_GMTIME_R 1 | #define HAVE_MEMMEM 1 | #define HAVE_SNPRINTF 1 | #define HAVE_DECL_SOCK_NONBLOCK 1 | #define HAVE_SOCK_NONBLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | /* end confdefs.h. */ | | #include <mach/clock.h> | #include <mach/mach.h> | | int | main () | { | | clock_serv_t cs; | mach_timespec_t mt; | host_get_clock_service(mach_host_self(), SYSTEM_CLOCK, &cs); | clock_get_time(cs, &mt); | mach_port_deallocate(mach_task_self(), cs); | | ; | return 0; | } | configure:20204: result: no configure:20211: checking for gethrtime configure:20234: gcc -o conftest -g -O2 -fno-strict-aliasing conftest.c >&5 conftest.c: In function 'main': conftest.c:108:1: error: unknown type name 'hrtime_t' hrtime_t hrt = gethrtime(); ^ conftest.c:108:16: warning: implicit declaration of function 'gethrtime' [-Wimplicit-function-declaration] hrtime_t hrt = gethrtime(); ^ configure:20234: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | #define _GNU_SOURCE 1 | #define _XOPEN_SOURCE 700 | #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_STDBOOL_H 1 | #define HAVE_REAL_BOOL 1 | #define INLINE_FUNC 1 | #define _MHD_static_inline static inline __attribute__((always_inline)) | #define LINUX 1 | #define HAVE_PTHREAD_PRIO_INHERIT 1 | #define HAVE_PTHREAD_H 1 | #define MHD_USE_POSIX_THREADS 1 | #define HAVE_PTHREAD_SETNAME_NP_GNU 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_TIME_H 1 | #define HAVE_NANOSLEEP 1 | #define HAVE_UNISTD_H 1 | #define HAVE_USLEEP 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_LISTEN_SHUTDOWN 1 | #define HAVE_POLL_H 1 | #define HAVE_POLL 1 | #define EPOLL_SUPPORT 1 | #define HAVE_EPOLL_CREATE1 1 | #define HAVE_FCNTL_H 1 | #define HAVE_MATH_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_MSG_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ENDIAN_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_TSEARCH 1 | #define HAVE_SEARCH_H 1 | #define HAVE_RAND 1 | #define HAVE_RANDOM 1 | #define HAVE_DECL_GETSOCKNAME 1 | #define HAVE_GETSOCKNAME 1 | #define MHD_USE_GETSOCKNAME 1 | #define HAVE_SYS_EVENTFD_H 1 | #define _MHD_ITC_EVENTFD 1 | #define HAVE_ACCEPT4 1 | #define HAVE_GMTIME_R 1 | #define HAVE_MEMMEM 1 | #define HAVE_SNPRINTF 1 | #define HAVE_DECL_SOCK_NONBLOCK 1 | #define HAVE_SOCK_NONBLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | /* end confdefs.h. */ | | #ifdef HAVE_SYS_TIME_H | /* Solaris define gethrtime() in sys/time.h */ | #include <sys/time.h> | #endif /* HAVE_SYS_TIME_H */ | #ifdef HAVE_TIME_H | /* HP-UX define gethrtime() in time.h */ | #include <time.h> | #endif /* HAVE_TIME_H */ | | int | main () | { | hrtime_t hrt = gethrtime(); | ; | return 0; | } | configure:20243: result: no configure:20251: checking for IPv6 configure:20283: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 configure:20283: $? = 0 configure:20296: result: yes configure:20308: checking whether the linker accepts -fvisibility=hidden configure:20327: gcc -o conftest -g -O2 -fno-strict-aliasing -fvisibility=hidden conftest.c >&5 configure:20327: $? = 0 configure:20336: result: yes configure:20339: checking whether C compiler accepts -fvisibility=hidden configure:20358: gcc -c -g -O2 -fno-strict-aliasing -fvisibility=hidden conftest.c >&5 configure:20358: $? = 0 configure:20366: result: yes configure:20433: checking for gawk configure:20460: result: gawk configure:20522: checking for curl-config configure:20555: result: no configure:20631: checking whether libcurl is usable configure:20665: gcc -o conftest -g -O2 -fno-strict-aliasing conftest.c -lcurl >&5 conftest.c:97:23: fatal error: curl/curl.h: No such file or directory compilation terminated. configure:20665: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | #define _GNU_SOURCE 1 | #define _XOPEN_SOURCE 700 | #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_STDBOOL_H 1 | #define HAVE_REAL_BOOL 1 | #define INLINE_FUNC 1 | #define _MHD_static_inline static inline __attribute__((always_inline)) | #define LINUX 1 | #define HAVE_PTHREAD_PRIO_INHERIT 1 | #define HAVE_PTHREAD_H 1 | #define MHD_USE_POSIX_THREADS 1 | #define HAVE_PTHREAD_SETNAME_NP_GNU 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_TIME_H 1 | #define HAVE_NANOSLEEP 1 | #define HAVE_UNISTD_H 1 | #define HAVE_USLEEP 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_LISTEN_SHUTDOWN 1 | #define HAVE_POLL_H 1 | #define HAVE_POLL 1 | #define EPOLL_SUPPORT 1 | #define HAVE_EPOLL_CREATE1 1 | #define HAVE_FCNTL_H 1 | #define HAVE_MATH_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_MSG_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ENDIAN_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_TSEARCH 1 | #define HAVE_SEARCH_H 1 | #define HAVE_RAND 1 | #define HAVE_RANDOM 1 | #define HAVE_DECL_GETSOCKNAME 1 | #define HAVE_GETSOCKNAME 1 | #define MHD_USE_GETSOCKNAME 1 | #define HAVE_SYS_EVENTFD_H 1 | #define _MHD_ITC_EVENTFD 1 | #define HAVE_ACCEPT4 1 | #define HAVE_GMTIME_R 1 | #define HAVE_MEMMEM 1 | #define HAVE_SNPRINTF 1 | #define HAVE_DECL_SOCK_NONBLOCK 1 | #define HAVE_SOCK_NONBLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_INET6 1 | #define _MHD_EXTERN __attribute__((visibility("default"))) extern | /* end confdefs.h. */ | #include <curl/curl.h> | int | main () | { | | /* Try and use a few common options to force a failure if we are | missing symbols or can't link. */ | int x; | curl_easy_setopt(NULL,CURLOPT_URL,NULL); | x=CURL_ERROR_SIZE; | x=CURLOPT_WRITEFUNCTION; | x=CURLOPT_WRITEDATA; | x=CURLOPT_ERRORBUFFER; | x=CURLOPT_STDERR; | x=CURLOPT_VERBOSE; | if (x) {;} | | ; | return 0; | } configure:20679: result: no configure:20813: checking for suitable libmagic configure:20838: gcc -o conftest -g -O2 -fno-strict-aliasing conftest.c -lmagic >&5 conftest.c:98:19: fatal error: magic.h: No such file or directory compilation terminated. configure:20838: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | #define _GNU_SOURCE 1 | #define _XOPEN_SOURCE 700 | #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_STDBOOL_H 1 | #define HAVE_REAL_BOOL 1 | #define INLINE_FUNC 1 | #define _MHD_static_inline static inline __attribute__((always_inline)) | #define LINUX 1 | #define HAVE_PTHREAD_PRIO_INHERIT 1 | #define HAVE_PTHREAD_H 1 | #define MHD_USE_POSIX_THREADS 1 | #define HAVE_PTHREAD_SETNAME_NP_GNU 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_TIME_H 1 | #define HAVE_NANOSLEEP 1 | #define HAVE_UNISTD_H 1 | #define HAVE_USLEEP 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_LISTEN_SHUTDOWN 1 | #define HAVE_POLL_H 1 | #define HAVE_POLL 1 | #define EPOLL_SUPPORT 1 | #define HAVE_EPOLL_CREATE1 1 | #define HAVE_FCNTL_H 1 | #define HAVE_MATH_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_MSG_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ENDIAN_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_TSEARCH 1 | #define HAVE_SEARCH_H 1 | #define HAVE_RAND 1 | #define HAVE_RANDOM 1 | #define HAVE_DECL_GETSOCKNAME 1 | #define HAVE_GETSOCKNAME 1 | #define MHD_USE_GETSOCKNAME 1 | #define HAVE_SYS_EVENTFD_H 1 | #define _MHD_ITC_EVENTFD 1 | #define HAVE_ACCEPT4 1 | #define HAVE_GMTIME_R 1 | #define HAVE_MEMMEM 1 | #define HAVE_SNPRINTF 1 | #define HAVE_DECL_SOCK_NONBLOCK 1 | #define HAVE_SOCK_NONBLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_INET6 1 | #define _MHD_EXTERN __attribute__((visibility("default"))) extern | /* end confdefs.h. */ | | #include <magic.h> | | int | main () | { | | char var_data[256]; | const char *var_mime; | magic_t var_magic = magic_open (MAGIC_MIME_TYPE); | (void)magic_load (var_magic, NULL); | var_data[0] = 0; | var_mime = magic_buffer (var_magic, var_data, 1); | magic_close (var_magic); | | | ; | return 0; | } | configure:20848: result: no configure:20873: checking for special C compiler options needed for large files configure:20918: result: no configure:20924: checking for _FILE_OFFSET_BITS value needed for large files configure:20949: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 configure:20949: $? = 0 configure:20981: result: no configure:21066: checking for _LARGEFILE_SOURCE value needed for large files configure:21085: gcc -o conftest -g -O2 -fno-strict-aliasing conftest.c >&5 configure:21085: $? = 0 configure:21113: result: no configure:21137: checking for lseek64 configure:21137: gcc -o conftest -g -O2 -fno-strict-aliasing conftest.c >&5 configure:21137: $? = 0 configure:21137: result: yes configure:21137: checking for pread64 configure:21137: gcc -o conftest -g -O2 -fno-strict-aliasing conftest.c >&5 configure:21137: $? = 0 configure:21137: result: yes configure:21137: checking for pread configure:21137: gcc -o conftest -g -O2 -fno-strict-aliasing conftest.c >&5 configure:21137: $? = 0 configure:21137: result: yes configure:21166: checking for Linux-style sendfile(2) configure:21199: gcc -o conftest -g -O2 -fno-strict-aliasing conftest.c >&5 configure:21199: $? = 0 configure:21205: result: yes configure:21209: checking for sendfile64 configure:21209: gcc -o conftest -g -O2 -fno-strict-aliasing conftest.c >&5 configure:21209: $? = 0 configure:21209: result: yes configure:21428: checking whether to generate error messages configure:21444: result: yes configure:21449: checking whether to enable postprocessor configure:21472: result: yes configure:21479: checking for zzuf configure:21507: result: no configure:21517: checking for socat configure:21545: result: no configure:21590: checking how to find GnuTLS library configure:21683: result: automatically configure:21743: checking for pkg-config configure:21761: found /usr/bin/pkg-config configure:21773: result: /usr/bin/pkg-config configure:21798: checking pkg-config is at least version 0.9.0 configure:21801: result: yes configure:21811: checking whether to add pkg-config special search directories configure:21868: result: no configure:21880: checking for gnutls configure:21887: $PKG_CONFIG --exists --print-errors "gnutls" Package gnutls was not found in the pkg-config search path. Perhaps you should add the directory containing `gnutls.pc' to the PKG_CONFIG_PATH environment variable No package 'gnutls' found configure:21890: $? = 1 configure:21904: $PKG_CONFIG --exists --print-errors "gnutls" Package gnutls was not found in the pkg-config search path. Perhaps you should add the directory containing `gnutls.pc' to the PKG_CONFIG_PATH environment variable No package 'gnutls' found configure:21907: $? = 1 configure:21921: result: no No package 'gnutls' found configure:21942: checking for gnutls/gnutls.h configure:21942: gcc -c -g -O2 -fno-strict-aliasing conftest.c >&5 conftest.c:139:27: fatal error: gnutls/gnutls.h: No such file or directory compilation terminated. configure:21942: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Libmicrohttpd" | #define PACKAGE_TARNAME "libmicrohttpd" | #define PACKAGE_VERSION "0.9.59" | #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" | #define PACKAGE "libmicrohttpd" | #define VERSION "0.9.59" | #define _GNU_SOURCE 1 | #define _XOPEN_SOURCE 700 | #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_STDBOOL_H 1 | #define HAVE_REAL_BOOL 1 | #define INLINE_FUNC 1 | #define _MHD_static_inline static inline __attribute__((always_inline)) | #define LINUX 1 | #define HAVE_PTHREAD_PRIO_INHERIT 1 | #define HAVE_PTHREAD_H 1 | #define MHD_USE_POSIX_THREADS 1 | #define HAVE_PTHREAD_SETNAME_NP_GNU 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_TIME_H 1 | #define HAVE_NANOSLEEP 1 | #define HAVE_UNISTD_H 1 | #define HAVE_USLEEP 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_LISTEN_SHUTDOWN 1 | #define HAVE_POLL_H 1 | #define HAVE_POLL 1 | #define EPOLL_SUPPORT 1 | #define HAVE_EPOLL_CREATE1 1 | #define HAVE_FCNTL_H 1 | #define HAVE_MATH_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_MSG_H 1 | #define HAVE_TIME_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_NETINET_TCP_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ENDIAN_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_TSEARCH 1 | #define HAVE_SEARCH_H 1 | #define HAVE_RAND 1 | #define HAVE_RANDOM 1 | #define HAVE_DECL_GETSOCKNAME 1 | #define HAVE_GETSOCKNAME 1 | #define MHD_USE_GETSOCKNAME 1 | #define HAVE_SYS_EVENTFD_H 1 | #define _MHD_ITC_EVENTFD 1 | #define HAVE_ACCEPT4 1 | #define HAVE_GMTIME_R 1 | #define HAVE_MEMMEM 1 | #define HAVE_SNPRINTF 1 | #define HAVE_DECL_SOCK_NONBLOCK 1 | #define HAVE_SOCK_NONBLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_INET6 1 | #define _MHD_EXTERN __attribute__((visibility("default"))) extern | #define HAVE_FSEEKO 1 | #define HAVE_LSEEK64 1 | #define HAVE_PREAD64 1 | #define HAVE_PREAD 1 | #define HAVE_LINUX_SENDFILE 1 | #define HAVE_SENDFILE64 1 | #define HAVE_MESSAGES 1 | #define HAVE_POSTPROCESSOR 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | | #include <gnutls/gnutls.h> configure:21942: result: no configure:22168: checking for libgcrypt-config configure:22199: result: no configure:22216: checking for LIBGCRYPT - version >= 1.2.2 configure:22253: result: no configure:22807: checking whether to support HTTPS configure:22809: result: no (lacking libgnutls) configure:22850: checking whether to support HTTP basic authentication configure:22873: result: yes configure:22877: checking whether to support HTTP digest authentication configure:22900: result: yes configure:22904: checking whether to support HTTP "Upgrade" configure:22931: result: yes configure:22934: checking for calloc() configure:22954: gcc -o conftest -g -O2 -fno-strict-aliasing conftest.c >&5 configure:22954: $? = 0 configure:22965: result: yes configure:22974: checking for fork() configure:23001: gcc -o conftest -g -O2 -fno-strict-aliasing conftest.c >&5 configure:23001: $? = 0 configure:23006: result: yes configure:23009: checking for waitpid() configure:23031: gcc -o conftest -g -O2 -fno-strict-aliasing conftest.c >&5 conftest.c: In function 'main': conftest.c:118:16: warning: implicit declaration of function 'fork' [-Wimplicit-function-declaration] pid_t p = fork (); ^ configure:23031: $? = 0 configure:23036: result: yes configure:23068: checking whether to compile with support for code coverage analysis configure:23077: result: no configure:23088: checking the number of available CPUs configure:23171: result: 2 configure:23184: checking whether to enable debug asserts configure:23201: result: no configure:23421: checking that generated files are newer than configure configure:23427: result: done configure:23563: creating ./config.status ## ---------------------- ## ## Running config.status. ## ## ---------------------- ## This file was extended by GNU Libmicrohttpd config.status 0.9.59, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = CONFIG_HEADERS = CONFIG_LINKS = CONFIG_COMMANDS = $ ./config.status on ubuntu-xenial config.status:1340: creating src/microhttpd/microhttpd_dll_res.rc config.status:1340: creating libmicrohttpd.pc config.status:1340: creating w32/common/microhttpd_dll_res_vc.rc config.status:1340: creating po/configure.acT config.status:1340: creating Makefile config.status:1340: creating contrib/Makefile config.status:1340: creating doc/Makefile config.status:1340: creating doc/doxygen/libmicrohttpd.doxy config.status:1340: creating doc/doxygen/Makefile config.status:1340: creating doc/examples/Makefile config.status:1340: creating m4/Makefile config.status:1340: creating src/Makefile config.status:1340: creating src/include/Makefile config.status:1340: creating src/microhttpd/Makefile config.status:1340: creating src/examples/Makefile config.status:1340: creating src/testcurl/Makefile config.status:1340: creating src/testcurl/https/Makefile config.status:1340: creating src/testzzuf/Makefile config.status:1340: creating MHD_config.h config.status:1569: executing depfiles commands config.status:1569: executing libtool commands config.status:1569: executing po/configargs.stamp commands config.status:2362: po/configargs.stamp is updated configure:25988: GNU libmicrohttpd 0.9.59 Configuration Summary: Target directory: /usr/local Cross-compiling: no Operating System: linux-gnu Shutdown of listening socket trigger select: yes Inter-thread comm: eventfd poll support: yes epoll support: yes sendfile used: yes, Linux-style HTTPS support: no (lacking libgnutls) Threading lib: posix Use thread names: yes Use debug asserts: no Messages: yes Basic auth.: yes Digest auth.: yes HTTP "Upgrade": yes Postproc: yes Build docs: yes Build examples: yes Test with libcurl: no, many unit tests will not run configure:26023: License : LGPL or eCos ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_build=x86_64-pc-linux-gnu ac_cv_c_bigendian=no ac_cv_c_compiler_gnu=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_GNUTLS_CFLAGS_set= ac_cv_env_GNUTLS_CFLAGS_value= ac_cv_env_GNUTLS_LIBS_set= ac_cv_env_GNUTLS_LIBS_value= ac_cv_env_LDFLAGS_set= ac_cv_env_LDFLAGS_value= ac_cv_env_LIBS_set= ac_cv_env_LIBS_value= ac_cv_env_LT_SYS_LIBRARY_PATH_set= ac_cv_env_LT_SYS_LIBRARY_PATH_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_accept4=yes ac_cv_func_getsockname=yes ac_cv_func_gettimeofday=yes ac_cv_func_gmtime_r=yes ac_cv_func_lseek64=yes ac_cv_func_memmem=yes ac_cv_func_nanosleep=yes ac_cv_func_poll=yes ac_cv_func_pread64=yes ac_cv_func_pread=yes ac_cv_func_rand=yes ac_cv_func_random=yes ac_cv_func_sendfile64=yes ac_cv_func_snprintf=yes ac_cv_func_tsearch=yes ac_cv_func_usleep=yes ac_cv_have_decl_SOCK_NONBLOCK=yes ac_cv_have_decl_clock_gettime=yes ac_cv_have_decl_getsockname=yes ac_cv_have_decl_gmtime_s=no ac_cv_have_decl_pthread_attr_setname_np=no ac_cv_have_decl_pthread_setname_np=yes ac_cv_header_arpa_inet_h=yes ac_cv_header_dlfcn_h=yes ac_cv_header_endian_h=yes ac_cv_header_errno_h=yes ac_cv_header_fcntl_h=yes ac_cv_header_gnutls_gnutls_h=no ac_cv_header_inetLib_h=no ac_cv_header_inttypes_h=yes ac_cv_header_limits_h=yes ac_cv_header_linux_version_h=yes ac_cv_header_locale_h=yes ac_cv_header_machine_endian_h=no ac_cv_header_machine_param_h=no ac_cv_header_math_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_netinet_ip_h=yes ac_cv_header_netinet_tcp_h=yes ac_cv_header_poll_h=yes ac_cv_header_pthread_np_h=no ac_cv_header_search_h=yes ac_cv_header_sockLib_h=no ac_cv_header_stdbool_h=yes ac_cv_header_stdc=yes ac_cv_header_stddef_h=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_byteorder_h=no ac_cv_header_sys_endian_h=no ac_cv_header_sys_eventfd_h=yes ac_cv_header_sys_ioctl_h=yes ac_cv_header_sys_isa_defs_h=no ac_cv_header_sys_machine_h=no ac_cv_header_sys_mman_h=yes ac_cv_header_sys_msg_h=yes ac_cv_header_sys_param_h=yes ac_cv_header_sys_select_h=yes ac_cv_header_sys_socket_h=yes ac_cv_header_sys_stat_h=yes ac_cv_header_sys_time_h=yes ac_cv_header_sys_types_h=yes ac_cv_header_time_h=yes ac_cv_header_unistd_h=yes ac_cv_host=x86_64-pc-linux-gnu ac_cv_member_struct_sockaddr_in_sin_len=no 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_LIBGCRYPT_CONFIG=no 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_lt_DD=/bin/dd ac_cv_path_mkdir=/bin/mkdir ac_cv_prog_AWK=gawk ac_cv_prog_CPP='gcc -E' ac_cv_prog_HAVE_CURL_BINARY=yes ac_cv_prog_HAVE_MAKEINFO_BINARY=no 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= ac_cv_prog_cc_g=yes ac_cv_prog_cc_stdc= ac_cv_prog_have_socat=no ac_cv_prog_have_zzuf=no ac_cv_prog_make_make_set=yes ac_cv_search_clock_gettime='none required' ac_cv_sys_file_offset_bits=no ac_cv_sys_largefile_CC=no ac_cv_sys_largefile_source=no ac_cv_type_bool=yes am_cv_CC_dependencies_compiler_type=gcc3 am_cv_make_support_nested_variables=yes am_cv_prog_cc_c_o=yes ax_cv_PTHREAD_CLANG=no ax_cv_PTHREAD_JOINABLE_ATTR=PTHREAD_CREATE_JOINABLE ax_cv_PTHREAD_PRIO_INHERIT=yes ax_cv_PTHREAD_SPECIAL_FLAGS=no ax_cv_check_cflags___Werror_attributes=yes ax_cv_check_cflags___fno_strict_aliasing=yes ax_cv_check_cflags___fvisibility_hidden=yes ax_cv_check_ldflags___fno_strict_aliasing=yes ax_cv_check_ldflags___fvisibility_hidden=yes ax_cv_have_epoll=yes gl_cv_func_tdelete_works=yes libcurl_cv_lib_curl_usable=no 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_c_o_RC=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][ABCDGIRSTW]* .* \(.*\)$/ {"\1", (void *) \&\1},/p'\''' lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(lib.*\)$/ {"\1", (void *) \&\1},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"lib\1", (void *) \&\1},/p'\''' lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\''' lt_cv_sys_global_symbol_to_import= lt_cv_sys_max_cmd_len=1572864 lt_cv_to_host_file_cmd=func_convert_file_noop lt_cv_to_tool_file_cmd=func_convert_file_noop lt_cv_truncate_bin='/bin/dd bs=4096 count=1' mhc_cv_getsockname_usable=yes mhd_cv_define__gnu_source_accepted=yes mhd_cv_eventfd_usable=yes mhd_cv_have_epoll_create1=yes mhd_cv_have_func_calloc=yes mhd_cv_header_fcntl_h_present=yes mhd_cv_header_stdint_h_present=yes mhd_cv_header_stdio_h_present=yes mhd_cv_header_stdlib_h_present=yes mhd_cv_header_string_h_present=yes mhd_cv_header_strings_h_present=yes mhd_cv_header_sys_types_h_present=yes mhd_cv_header_time_h_present=yes mhd_cv_header_unistd_h_present=yes mhd_cv_header_wchar_h_present=yes mhd_cv_headers_posix2008='available, works with _XOPEN_SOURCE=700, works with extension macro' mhd_cv_headers_useful_features_present=no mhd_cv_host_shtdwn_trgr_select=yes mhd_cv_macro___apple___defined=no mhd_cv_macro___netbsd___defined=no mhd_cv_macro___openbsd___defined=no mhd_cv_macro___sun_defined=no mhd_cv_macro___tandem_defined=no mhd_cv_macro__gnu_source_defined=no mhd_cv_macro__xopen_source_defined=no mhd_cv_macro_add__gnu_source=yes mhd_cv_macro_false_defined=yes mhd_cv_macro_true_defined=yes mhd_cv_macro_true_false_valid=yes mhd_cv_macro_try___bsd_visible=no mhd_cv_macro_try__all_source=no mhd_cv_pkgconf_add_dirs=no ## ----------------- ## ## Output variables. ## ## ----------------- ## ACLOCAL='${SHELL} /home/vagrant/libmicrohttpd-0.9.59/missing aclocal-1.15' 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' AS='as' AUTOCONF='${SHELL} /home/vagrant/libmicrohttpd-0.9.59/missing autoconf' AUTOHEADER='${SHELL} /home/vagrant/libmicrohttpd-0.9.59/missing autoheader' AUTOMAKE='${SHELL} /home/vagrant/libmicrohttpd-0.9.59/missing automake-1.15' AWK='gawk' BUILD_DOC_FALSE='#' BUILD_DOC_TRUE='' BUILD_EXAMPLES_FALSE='#' BUILD_EXAMPLES_TRUE='' CC='gcc' CCDEPMODE='depmode=gcc3' CFLAGS='-g -O2 -fno-strict-aliasing' CPP='gcc -E' CPPFLAGS='' CPU_COUNT='2' CYGPATH_W='echo' CYGWIN_TARGET_FALSE='' CYGWIN_TARGET_TRUE='#' DEFS='-DHAVE_CONFIG_H' DEPDIR='.deps' DLLTOOL='false' DSYMUTIL='' DUMPBIN='' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='/bin/grep -E' EMPTY_VAR='' ENABLE_BAUTH_FALSE='#' ENABLE_BAUTH_TRUE='' ENABLE_DAUTH_FALSE='#' ENABLE_DAUTH_TRUE='' ENABLE_HTTPS_FALSE='' ENABLE_HTTPS_TRUE='#' ENABLE_UPGRADE_FALSE='#' ENABLE_UPGRADE_TRUE='' EXEEXT='' FGREP='/bin/grep -F' GNULIB_TSEARCH='0' GNUTLS_CFLAGS='' GNUTLS_CPPFLAGS='' GNUTLS_LDFLAGS='' GNUTLS_LIBS='' GREP='/bin/grep' HAVE_CURL_BINARY='yes' HAVE_CURL_BINARY_FALSE='#' HAVE_CURL_BINARY_TRUE='' HAVE_CURL_FALSE='' HAVE_CURL_TRUE='#' HAVE_FORK_WAITPID_FALSE='#' HAVE_FORK_WAITPID_TRUE='' HAVE_GNUTLS_FALSE='' HAVE_GNUTLS_SNI_FALSE='' HAVE_GNUTLS_SNI_TRUE='#' HAVE_GNUTLS_TRUE='#' HAVE_LIBMAGIC_FALSE='' HAVE_LIBMAGIC_TRUE='#' HAVE_LISTEN_SHUTDOWN_FALSE='#' HAVE_LISTEN_SHUTDOWN_TRUE='' HAVE_MAKEINFO_BINARY='no' HAVE_MAKEINFO_BINARY_FALSE='' HAVE_MAKEINFO_BINARY_TRUE='#' HAVE_POSIX_THREADS_FALSE='#' HAVE_POSIX_THREADS_TRUE='' HAVE_POSTPROCESSOR_FALSE='#' HAVE_POSTPROCESSOR_TRUE='' HAVE_SOCAT_FALSE='' HAVE_SOCAT_TRUE='#' HAVE_TSEARCH='1' HAVE_W32_FALSE='' HAVE_W32_TRUE='#' HAVE_ZZUF_FALSE='' HAVE_ZZUF_TRUE='#' HIDDEN_VISIBILITY_CFLAGS='-fvisibility=hidden' HTTPS_REQUIRE_GRYPT_FALSE='' HTTPS_REQUIRE_GRYPT_TRUE='#' INSTALL_DATA='${INSTALL} -m 644' INSTALL_PROGRAM='${INSTALL}' INSTALL_SCRIPT='${INSTALL}' INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' LD='/usr/bin/ld -m elf_x86_64' LDFLAGS='' LIBCURL='' LIBCURL_CPPFLAGS='' LIBGCRYPT_CFLAGS='' LIBGCRYPT_CONFIG='no' LIBGCRYPT_LIBS='' LIBOBJS='' LIBS='' LIBTOOL='$(SHELL) $(top_builddir)/libtool' LIB_VERSION_AGE='46' LIB_VERSION_CURRENT='58' LIB_VERSION_REVISION='0' LIPO='' LN_S='ln -s' LTLIBOBJS='' LT_SYS_LIBRARY_PATH='' MAKEINFO='${SHELL} /home/vagrant/libmicrohttpd-0.9.59/missing makeinfo' MANIFEST_TOOL=':' MHD_HAVE_TSEARCH_FALSE='#' MHD_HAVE_TSEARCH_TRUE='' MHD_LIBDEPS=' ' MHD_LIBDEPS_PKGCFG=' ' MHD_LIB_CFLAGS=' -pthread' MHD_LIB_CPPFLAGS='' MHD_LIB_LDFLAGS=' -export-dynamic -no-undefined' MHD_REQ_PRIVATE='' MHD_W32_DLL_SUFF='12' MKDIR_P='/bin/mkdir -p' MS_LIB_TOOL='' NM='/usr/bin/nm -B' NMEDIT='' OBJDUMP='objdump' OBJEXT='o' OTOOL64='' OTOOL='' PACKAGE='libmicrohttpd' PACKAGE_BUGREPORT='[email protected]' PACKAGE_NAME='GNU Libmicrohttpd' PACKAGE_STRING='GNU Libmicrohttpd 0.9.59' PACKAGE_TARNAME='libmicrohttpd' PACKAGE_URL='http://www.gnu.org/software/libmicrohttpd/' PACKAGE_VERSION='0.9.59' PACKAGE_VERSION_MAJOR='0' PACKAGE_VERSION_MINOR='9' PACKAGE_VERSION_SUBMINOR='59' PATH_SEPARATOR=':' PKG_CONFIG='/usr/bin/pkg-config' PKG_CONFIG_LIBDIR='' PKG_CONFIG_PATH='' PTHREAD_CC='gcc' PTHREAD_CFLAGS='-pthread' PTHREAD_LIBS='' RANLIB='ranlib' RC='' REPLACE_TSEARCH='0' SED='/bin/sed' SET_MAKE='' SHELL='/bin/bash' STRIP='strip' USE_COVERAGE_FALSE='' USE_COVERAGE_TRUE='#' USE_MS_LIB_TOOL_FALSE='' USE_MS_LIB_TOOL_TRUE='#' USE_POSIX_THREADS_FALSE='#' USE_POSIX_THREADS_TRUE='' USE_W32_THREADS_FALSE='' USE_W32_THREADS_TRUE='#' VERSION='0.9.59' W32_SHARED_LIB_EXP_FALSE='' W32_SHARED_LIB_EXP_TRUE='#' W32_STATIC_LIB_FALSE='' W32_STATIC_LIB_TRUE='#' _libcurl_config='' ac_configure_args='' 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 -' ax_pthread_config='' bindir='${exec_prefix}/bin' build='x86_64-pc-linux-gnu' build_alias='' build_cpu='x86_64' build_os='linux-gnu' build_vendor='pc' datadir='${datarootdir}' datarootdir='${prefix}/share' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' dvidir='${docdir}' exec_prefix='${prefix}' have_socat='no' have_zzuf='no' host='x86_64-pc-linux-gnu' host_alias='' host_cpu='x86_64' host_os='linux-gnu' host_vendor='pc' htmldir='${docdir}' includedir='${prefix}/include' infodir='${datarootdir}/info' install_sh='${SHELL} /home/vagrant/libmicrohttpd-0.9.59/install-sh' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' localedir='${datarootdir}/locale' localstatedir='${prefix}/var' lt_cv_objdir='.libs' mandir='${datarootdir}/man' mkdir_p='$(MKDIR_P)' oldincludedir='/usr/include' pdfdir='${docdir}' prefix='/usr/local' program_transform_name='s,x,x,' psdir='${docdir}' runstatedir='${localstatedir}/run' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' sysconfdir='${prefix}/etc' target_alias='' ## ----------- ## ## confdefs.h. ## ## ----------- ## /* confdefs.h */ #define PACKAGE_NAME "GNU Libmicrohttpd" #define PACKAGE_TARNAME "libmicrohttpd" #define PACKAGE_VERSION "0.9.59" #define PACKAGE_STRING "GNU Libmicrohttpd 0.9.59" #define PACKAGE_BUGREPORT "[email protected]" #define PACKAGE_URL "http://www.gnu.org/software/libmicrohttpd/" #define PACKAGE "libmicrohttpd" #define VERSION "0.9.59" #define _GNU_SOURCE 1 #define _XOPEN_SOURCE 700 #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_STDBOOL_H 1 #define HAVE_REAL_BOOL 1 #define INLINE_FUNC 1 #define _MHD_static_inline static inline __attribute__((always_inline)) #define LINUX 1 #define HAVE_PTHREAD_PRIO_INHERIT 1 #define HAVE_PTHREAD_H 1 #define MHD_USE_POSIX_THREADS 1 #define HAVE_PTHREAD_SETNAME_NP_GNU 1 #define HAVE_SYS_TIME_H 1 #define HAVE_GETTIMEOFDAY 1 #define HAVE_TIME_H 1 #define HAVE_NANOSLEEP 1 #define HAVE_UNISTD_H 1 #define HAVE_USLEEP 1 #define HAVE_STRING_H 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_SYS_SOCKET_H 1 #define HAVE_NETINET_IN_H 1 #define HAVE_TIME_H 1 #define HAVE_SYS_SELECT_H 1 #define HAVE_NETINET_TCP_H 1 #define HAVE_LISTEN_SHUTDOWN 1 #define HAVE_POLL_H 1 #define HAVE_POLL 1 #define EPOLL_SUPPORT 1 #define HAVE_EPOLL_CREATE1 1 #define HAVE_FCNTL_H 1 #define HAVE_MATH_H 1 #define HAVE_ERRNO_H 1 #define HAVE_LIMITS_H 1 #define HAVE_STDIO_H 1 #define HAVE_LOCALE_H 1 #define HAVE_SYS_STAT_H 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_SYS_TIME_H 1 #define HAVE_SYS_MSG_H 1 #define HAVE_TIME_H 1 #define HAVE_SYS_MMAN_H 1 #define HAVE_SYS_IOCTL_H 1 #define HAVE_SYS_SOCKET_H 1 #define HAVE_SYS_SELECT_H 1 #define HAVE_NETDB_H 1 #define HAVE_NETINET_IN_H 1 #define HAVE_NETINET_IP_H 1 #define HAVE_NETINET_TCP_H 1 #define HAVE_ARPA_INET_H 1 #define HAVE_ENDIAN_H 1 #define HAVE_SYS_PARAM_H 1 #define HAVE_INTTYPES_H 1 #define HAVE_STDDEF_H 1 #define HAVE_UNISTD_H 1 #define HAVE_NET_IF_H 1 #define HAVE_TSEARCH 1 #define HAVE_SEARCH_H 1 #define HAVE_RAND 1 #define HAVE_RANDOM 1 #define HAVE_DECL_GETSOCKNAME 1 #define HAVE_GETSOCKNAME 1 #define MHD_USE_GETSOCKNAME 1 #define HAVE_SYS_EVENTFD_H 1 #define _MHD_ITC_EVENTFD 1 #define HAVE_ACCEPT4 1 #define HAVE_GMTIME_R 1 #define HAVE_MEMMEM 1 #define HAVE_SNPRINTF 1 #define HAVE_DECL_SOCK_NONBLOCK 1 #define HAVE_SOCK_NONBLOCK 1 #define HAVE_CLOCK_GETTIME 1 #define HAVE_INET6 1 #define _MHD_EXTERN __attribute__((visibility("default"))) extern #define HAVE_FSEEKO 1 #define HAVE_LSEEK64 1 #define HAVE_PREAD64 1 #define HAVE_PREAD 1 #define HAVE_LINUX_SENDFILE 1 #define HAVE_SENDFILE64 1 #define HAVE_MESSAGES 1 #define HAVE_POSTPROCESSOR 1 #define BAUTH_SUPPORT 1 #define DAUTH_SUPPORT 1 #define UPGRADE_SUPPORT 1 #define HAVE_CALLOC 1 #define HAVE_FORK 1 #define HAVE_WAITPID 1 #define NDEBUG 1 configure: exit 0
