This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by ngIRCd configure 23, which was generated by GNU Autoconf 2.69. Invocation command line was $ contrib/../configure -C ## --------- ## ## Platform. ## ## --------- ## hostname = susi52 uname -m = i686 uname -r = 2.0.33 uname -s = Linux uname -v = #2 Sat Jan 11 16:17:36 MET 2014 /usr/bin/uname -p = unknown /bin/uname -X = unknown /bin/arch = i686 /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /sbin PATH: /usr/sbin PATH: /root/bin PATH: /usr/local/bin PATH: /usr/bin PATH: /usr/X11R6/bin PATH: /bin PATH: /var/lib/dosemu PATH: /usr/games/bin PATH: /usr/games PATH: /usr/bin/TeX ## ----------- ## ## Core tests. ## ## ----------- ## configure:2295: creating cache config.cache configure:2431: checking build system type configure:2445: result: i686-pc-linux-gnu configure:2465: checking host system type configure:2478: result: i686-pc-linux-gnu configure:2515: checking for a BSD-compatible install configure:2583: result: /usr/bin/install -c configure:2594: checking whether build environment is sane configure:2644: result: yes configure:2785: checking for a thread-safe mkdir -p configure:2824: result: ./install-sh -c -d configure:2837: checking for gawk configure:2853: found /usr/bin/gawk configure:2864: result: gawk configure:2875: checking whether make sets $(MAKE) configure:2897: result: yes configure:2989: checking whether make supports nested variables configure:3006: result: yes configure:3088: checking for gcc configure:3104: found /usr/bin/gcc configure:3115: result: gcc configure:3344: checking for C compiler version configure:3353: gcc --version >&5 2.7.2.1 configure:3364: $? = 0 configure:3353: gcc -v >&5 Reading specs from /usr/lib/gcc-lib/i486-linux/2.7.2.1/specs gcc version 2.7.2.1 configure:3364: $? = 0 configure:3353: gcc -V >&5 gcc: argument to `-V' is missing configure:3364: $? = 1 configure:3353: gcc -qversion >&5 gcc: unrecognized option `-qversion' gcc: No input files configure:3364: $? = 1 configure:3384: checking whether the C compiler works configure:3406: gcc conftest.c >&5 configure:3410: $? = 0 configure:3458: result: yes configure:3461: checking for C compiler default output file name configure:3463: result: a.out configure:3469: checking for suffix of executables configure:3476: gcc -o conftest conftest.c >&5 configure:3480: $? = 0 configure:3502: result: configure:3524: checking whether we are cross compiling configure:3532: gcc -o conftest conftest.c >&5 configure:3536: $? = 0 configure:3543: ./conftest configure:3547: $? = 0 configure:3562: result: no configure:3567: checking for suffix of object files configure:3589: gcc -c conftest.c >&5 configure:3593: $? = 0 configure:3614: result: o configure:3618: checking whether we are using the GNU C compiler configure:3637: gcc -c conftest.c >&5 configure:3637: $? = 0 configure:3646: result: yes configure:3655: checking whether gcc accepts -g configure:3675: gcc -c -g conftest.c >&5 configure:3675: $? = 0 configure:3716: result: yes configure:3733: checking for gcc option to accept ISO C89 configure:3796: gcc -c -g -O2 conftest.c >&5 configure:3796: $? = 0 configure:3809: result: none needed configure:3840: checking for style of include used by make configure:3868: result: GNU configure:3894: checking dependency style of gcc configure:4005: result: gcc configure:4024: checking for gcc option to accept ISO C99 configure:4173: gcc -c -g -O2 conftest.c >&5 conftest.c:12: stdbool.h: No such file or directory conftest.c:18: warning: invalid character in macro parameter name conftest.c:18: badly punctuated parameter list in `#define' conftest.c:19: warning: invalid character in macro parameter name conftest.c:19: badly punctuated parameter list in `#define' conftest.c:20: badly punctuated parameter list in `#define' conftest.c:36: two `l's in integer constant conftest.c:39: two `l's in integer constant configure:4173: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | /* end confdefs.h. */ | #include | #include | #include | #include | #include | | // Check varargs macros. These examples are taken from C99 6.10.3.5. | #define debug(...) fprintf (stderr, __VA_ARGS__) | #define showlist(...) puts (#__VA_ARGS__) | #define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__)) | static void | test_varargs_macros (void) | { | int x = 1234; | int y = 5678; | debug ("Flag"); | debug ("X = %d\n", x); | showlist (The first, second, and third items.); | report (x>y, "x is %d but y is %d", x, y); | } | | // Check long long types. | #define BIG64 18446744073709551615ull | #define BIG32 4294967295ul | #define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0) | #if !BIG_OK | your preprocessor is broken; | #endif | #if BIG_OK | #else | your preprocessor is broken; | #endif | static long long int bignum = -9223372036854775807LL; | static unsigned long long int ubignum = BIG64; | | struct incomplete_array | { | int datasize; | double data[]; | }; | | struct named_init { | int number; | const wchar_t *name; | double average; | }; | | typedef const char *ccp; | | static inline int | test_restrict (ccp restrict text) | { | // See if C++-style comments work. | // Iterate through items via the restricted pointer. | // Also check for declarations in for loops. | for (unsigned int i = 0; *(text+i) != '\0'; ++i) | continue; | return 0; | } | | // Check varargs and va_copy. | static void | test_varargs (const char *format, ...) | { | va_list args; | va_start (args, format); | va_list args_copy; | va_copy (args_copy, args); | | const char *str; | int number; | float fnumber; | | while (*format) | { | switch (*format++) | { | case 's': // string | str = va_arg (args_copy, const char *); | break; | case 'd': // int | number = va_arg (args_copy, int); | break; | case 'f': // float | fnumber = va_arg (args_copy, double); | break; | default: | break; | } | } | va_end (args_copy); | va_end (args); | } | | int | main () | { | | // Check bool. | _Bool success = false; | | // Check restrict. | if (test_restrict ("String literal") == 0) | success = true; | char *restrict newvar = "Another string"; | | // Check varargs. | test_varargs ("s, d' f .", "string", 65, 34.234); | test_varargs_macros (); | | // Check flexible array members. | struct incomplete_array *ia = | malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10)); | ia->datasize = 10; | for (int i = 0; i < ia->datasize; ++i) | ia->data[i] = i * 1.234; | | // Check named initializers. | struct named_init ni = { | .number = 34, | .name = L"Test wide string", | .average = 543.34343, | }; | | ni.number = 58; | | int dynamic_array[ni.number]; | dynamic_array[ni.number - 1] = 543; | | // work around unused variable warnings | return (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == 'x' | || dynamic_array[ni.number - 1] != 543); | | ; | return 0; | } configure:4173: gcc -std=gnu99 -c -g -O2 conftest.c >&5 gcc: unrecognized option `-std=gnu99' conftest.c:12: stdbool.h: No such file or directory conftest.c:18: warning: invalid character in macro parameter name conftest.c:18: badly punctuated parameter list in `#define' conftest.c:19: warning: invalid character in macro parameter name conftest.c:19: badly punctuated parameter list in `#define' conftest.c:20: badly punctuated parameter list in `#define' conftest.c:36: two `l's in integer constant conftest.c:39: two `l's in integer constant configure:4173: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | /* end confdefs.h. */ | #include | #include | #include | #include | #include | | // Check varargs macros. These examples are taken from C99 6.10.3.5. | #define debug(...) fprintf (stderr, __VA_ARGS__) | #define showlist(...) puts (#__VA_ARGS__) | #define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__)) | static void | test_varargs_macros (void) | { | int x = 1234; | int y = 5678; | debug ("Flag"); | debug ("X = %d\n", x); | showlist (The first, second, and third items.); | report (x>y, "x is %d but y is %d", x, y); | } | | // Check long long types. | #define BIG64 18446744073709551615ull | #define BIG32 4294967295ul | #define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0) | #if !BIG_OK | your preprocessor is broken; | #endif | #if BIG_OK | #else | your preprocessor is broken; | #endif | static long long int bignum = -9223372036854775807LL; | static unsigned long long int ubignum = BIG64; | | struct incomplete_array | { | int datasize; | double data[]; | }; | | struct named_init { | int number; | const wchar_t *name; | double average; | }; | | typedef const char *ccp; | | static inline int | test_restrict (ccp restrict text) | { | // See if C++-style comments work. | // Iterate through items via the restricted pointer. | // Also check for declarations in for loops. | for (unsigned int i = 0; *(text+i) != '\0'; ++i) | continue; | return 0; | } | | // Check varargs and va_copy. | static void | test_varargs (const char *format, ...) | { | va_list args; | va_start (args, format); | va_list args_copy; | va_copy (args_copy, args); | | const char *str; | int number; | float fnumber; | | while (*format) | { | switch (*format++) | { | case 's': // string | str = va_arg (args_copy, const char *); | break; | case 'd': // int | number = va_arg (args_copy, int); | break; | case 'f': // float | fnumber = va_arg (args_copy, double); | break; | default: | break; | } | } | va_end (args_copy); | va_end (args); | } | | int | main () | { | | // Check bool. | _Bool success = false; | | // Check restrict. | if (test_restrict ("String literal") == 0) | success = true; | char *restrict newvar = "Another string"; | | // Check varargs. | test_varargs ("s, d' f .", "string", 65, 34.234); | test_varargs_macros (); | | // Check flexible array members. | struct incomplete_array *ia = | malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10)); | ia->datasize = 10; | for (int i = 0; i < ia->datasize; ++i) | ia->data[i] = i * 1.234; | | // Check named initializers. | struct named_init ni = { | .number = 34, | .name = L"Test wide string", | .average = 543.34343, | }; | | ni.number = 58; | | int dynamic_array[ni.number]; | dynamic_array[ni.number - 1] = 543; | | // work around unused variable warnings | return (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == 'x' | || dynamic_array[ni.number - 1] != 543); | | ; | return 0; | } configure:4173: gcc -std=c99 -c -g -O2 conftest.c >&5 gcc: unrecognized option `-std=c99' conftest.c:12: stdbool.h: No such file or directory conftest.c:18: warning: invalid character in macro parameter name conftest.c:18: badly punctuated parameter list in `#define' conftest.c:19: warning: invalid character in macro parameter name conftest.c:19: badly punctuated parameter list in `#define' conftest.c:20: badly punctuated parameter list in `#define' conftest.c:36: two `l's in integer constant conftest.c:39: two `l's in integer constant configure:4173: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | /* end confdefs.h. */ | #include | #include | #include | #include | #include | | // Check varargs macros. These examples are taken from C99 6.10.3.5. | #define debug(...) fprintf (stderr, __VA_ARGS__) | #define showlist(...) puts (#__VA_ARGS__) | #define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__)) | static void | test_varargs_macros (void) | { | int x = 1234; | int y = 5678; | debug ("Flag"); | debug ("X = %d\n", x); | showlist (The first, second, and third items.); | report (x>y, "x is %d but y is %d", x, y); | } | | // Check long long types. | #define BIG64 18446744073709551615ull | #define BIG32 4294967295ul | #define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0) | #if !BIG_OK | your preprocessor is broken; | #endif | #if BIG_OK | #else | your preprocessor is broken; | #endif | static long long int bignum = -9223372036854775807LL; | static unsigned long long int ubignum = BIG64; | | struct incomplete_array | { | int datasize; | double data[]; | }; | | struct named_init { | int number; | const wchar_t *name; | double average; | }; | | typedef const char *ccp; | | static inline int | test_restrict (ccp restrict text) | { | // See if C++-style comments work. | // Iterate through items via the restricted pointer. | // Also check for declarations in for loops. | for (unsigned int i = 0; *(text+i) != '\0'; ++i) | continue; | return 0; | } | | // Check varargs and va_copy. | static void | test_varargs (const char *format, ...) | { | va_list args; | va_start (args, format); | va_list args_copy; | va_copy (args_copy, args); | | const char *str; | int number; | float fnumber; | | while (*format) | { | switch (*format++) | { | case 's': // string | str = va_arg (args_copy, const char *); | break; | case 'd': // int | number = va_arg (args_copy, int); | break; | case 'f': // float | fnumber = va_arg (args_copy, double); | break; | default: | break; | } | } | va_end (args_copy); | va_end (args); | } | | int | main () | { | | // Check bool. | _Bool success = false; | | // Check restrict. | if (test_restrict ("String literal") == 0) | success = true; | char *restrict newvar = "Another string"; | | // Check varargs. | test_varargs ("s, d' f .", "string", 65, 34.234); | test_varargs_macros (); | | // Check flexible array members. | struct incomplete_array *ia = | malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10)); | ia->datasize = 10; | for (int i = 0; i < ia->datasize; ++i) | ia->data[i] = i * 1.234; | | // Check named initializers. | struct named_init ni = { | .number = 34, | .name = L"Test wide string", | .average = 543.34343, | }; | | ni.number = 58; | | int dynamic_array[ni.number]; | dynamic_array[ni.number - 1] = 543; | | // work around unused variable warnings | return (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == 'x' | || dynamic_array[ni.number - 1] != 543); | | ; | return 0; | } configure:4173: gcc -c99 -c -g -O2 conftest.c >&5 gcc: unrecognized option `-c99' conftest.c:12: stdbool.h: No such file or directory conftest.c:18: warning: invalid character in macro parameter name conftest.c:18: badly punctuated parameter list in `#define' conftest.c:19: warning: invalid character in macro parameter name conftest.c:19: badly punctuated parameter list in `#define' conftest.c:20: badly punctuated parameter list in `#define' conftest.c:36: two `l's in integer constant conftest.c:39: two `l's in integer constant configure:4173: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | /* end confdefs.h. */ | #include | #include | #include | #include | #include | | // Check varargs macros. These examples are taken from C99 6.10.3.5. | #define debug(...) fprintf (stderr, __VA_ARGS__) | #define showlist(...) puts (#__VA_ARGS__) | #define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__)) | static void | test_varargs_macros (void) | { | int x = 1234; | int y = 5678; | debug ("Flag"); | debug ("X = %d\n", x); | showlist (The first, second, and third items.); | report (x>y, "x is %d but y is %d", x, y); | } | | // Check long long types. | #define BIG64 18446744073709551615ull | #define BIG32 4294967295ul | #define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0) | #if !BIG_OK | your preprocessor is broken; | #endif | #if BIG_OK | #else | your preprocessor is broken; | #endif | static long long int bignum = -9223372036854775807LL; | static unsigned long long int ubignum = BIG64; | | struct incomplete_array | { | int datasize; | double data[]; | }; | | struct named_init { | int number; | const wchar_t *name; | double average; | }; | | typedef const char *ccp; | | static inline int | test_restrict (ccp restrict text) | { | // See if C++-style comments work. | // Iterate through items via the restricted pointer. | // Also check for declarations in for loops. | for (unsigned int i = 0; *(text+i) != '\0'; ++i) | continue; | return 0; | } | | // Check varargs and va_copy. | static void | test_varargs (const char *format, ...) | { | va_list args; | va_start (args, format); | va_list args_copy; | va_copy (args_copy, args); | | const char *str; | int number; | float fnumber; | | while (*format) | { | switch (*format++) | { | case 's': // string | str = va_arg (args_copy, const char *); | break; | case 'd': // int | number = va_arg (args_copy, int); | break; | case 'f': // float | fnumber = va_arg (args_copy, double); | break; | default: | break; | } | } | va_end (args_copy); | va_end (args); | } | | int | main () | { | | // Check bool. | _Bool success = false; | | // Check restrict. | if (test_restrict ("String literal") == 0) | success = true; | char *restrict newvar = "Another string"; | | // Check varargs. | test_varargs ("s, d' f .", "string", 65, 34.234); | test_varargs_macros (); | | // Check flexible array members. | struct incomplete_array *ia = | malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10)); | ia->datasize = 10; | for (int i = 0; i < ia->datasize; ++i) | ia->data[i] = i * 1.234; | | // Check named initializers. | struct named_init ni = { | .number = 34, | .name = L"Test wide string", | .average = 543.34343, | }; | | ni.number = 58; | | int dynamic_array[ni.number]; | dynamic_array[ni.number - 1] = 543; | | // work around unused variable warnings | return (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == 'x' | || dynamic_array[ni.number - 1] != 543); | | ; | return 0; | } configure:4173: gcc -AC99 -c -g -O2 conftest.c >&5 *Initialization*:1: missing token-sequence in `#assert' conftest.c:12: stdbool.h: No such file or directory conftest.c:18: warning: invalid character in macro parameter name conftest.c:18: badly punctuated parameter list in `#define' conftest.c:19: warning: invalid character in macro parameter name conftest.c:19: badly punctuated parameter list in `#define' conftest.c:20: badly punctuated parameter list in `#define' conftest.c:36: two `l's in integer constant conftest.c:39: two `l's in integer constant configure:4173: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | /* end confdefs.h. */ | #include | #include | #include | #include | #include | | // Check varargs macros. These examples are taken from C99 6.10.3.5. | #define debug(...) fprintf (stderr, __VA_ARGS__) | #define showlist(...) puts (#__VA_ARGS__) | #define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__)) | static void | test_varargs_macros (void) | { | int x = 1234; | int y = 5678; | debug ("Flag"); | debug ("X = %d\n", x); | showlist (The first, second, and third items.); | report (x>y, "x is %d but y is %d", x, y); | } | | // Check long long types. | #define BIG64 18446744073709551615ull | #define BIG32 4294967295ul | #define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0) | #if !BIG_OK | your preprocessor is broken; | #endif | #if BIG_OK | #else | your preprocessor is broken; | #endif | static long long int bignum = -9223372036854775807LL; | static unsigned long long int ubignum = BIG64; | | struct incomplete_array | { | int datasize; | double data[]; | }; | | struct named_init { | int number; | const wchar_t *name; | double average; | }; | | typedef const char *ccp; | | static inline int | test_restrict (ccp restrict text) | { | // See if C++-style comments work. | // Iterate through items via the restricted pointer. | // Also check for declarations in for loops. | for (unsigned int i = 0; *(text+i) != '\0'; ++i) | continue; | return 0; | } | | // Check varargs and va_copy. | static void | test_varargs (const char *format, ...) | { | va_list args; | va_start (args, format); | va_list args_copy; | va_copy (args_copy, args); | | const char *str; | int number; | float fnumber; | | while (*format) | { | switch (*format++) | { | case 's': // string | str = va_arg (args_copy, const char *); | break; | case 'd': // int | number = va_arg (args_copy, int); | break; | case 'f': // float | fnumber = va_arg (args_copy, double); | break; | default: | break; | } | } | va_end (args_copy); | va_end (args); | } | | int | main () | { | | // Check bool. | _Bool success = false; | | // Check restrict. | if (test_restrict ("String literal") == 0) | success = true; | char *restrict newvar = "Another string"; | | // Check varargs. | test_varargs ("s, d' f .", "string", 65, 34.234); | test_varargs_macros (); | | // Check flexible array members. | struct incomplete_array *ia = | malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10)); | ia->datasize = 10; | for (int i = 0; i < ia->datasize; ++i) | ia->data[i] = i * 1.234; | | // Check named initializers. | struct named_init ni = { | .number = 34, | .name = L"Test wide string", | .average = 543.34343, | }; | | ni.number = 58; | | int dynamic_array[ni.number]; | dynamic_array[ni.number - 1] = 543; | | // work around unused variable warnings | return (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == 'x' | || dynamic_array[ni.number - 1] != 543); | | ; | return 0; | } configure:4173: gcc -D_STDC_C99= -c -g -O2 conftest.c >&5 conftest.c:12: stdbool.h: No such file or directory conftest.c:18: warning: invalid character in macro parameter name conftest.c:18: badly punctuated parameter list in `#define' conftest.c:19: warning: invalid character in macro parameter name conftest.c:19: badly punctuated parameter list in `#define' conftest.c:20: badly punctuated parameter list in `#define' conftest.c:36: two `l's in integer constant conftest.c:39: two `l's in integer constant configure:4173: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | /* end confdefs.h. */ | #include | #include | #include | #include | #include | | // Check varargs macros. These examples are taken from C99 6.10.3.5. | #define debug(...) fprintf (stderr, __VA_ARGS__) | #define showlist(...) puts (#__VA_ARGS__) | #define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__)) | static void | test_varargs_macros (void) | { | int x = 1234; | int y = 5678; | debug ("Flag"); | debug ("X = %d\n", x); | showlist (The first, second, and third items.); | report (x>y, "x is %d but y is %d", x, y); | } | | // Check long long types. | #define BIG64 18446744073709551615ull | #define BIG32 4294967295ul | #define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0) | #if !BIG_OK | your preprocessor is broken; | #endif | #if BIG_OK | #else | your preprocessor is broken; | #endif | static long long int bignum = -9223372036854775807LL; | static unsigned long long int ubignum = BIG64; | | struct incomplete_array | { | int datasize; | double data[]; | }; | | struct named_init { | int number; | const wchar_t *name; | double average; | }; | | typedef const char *ccp; | | static inline int | test_restrict (ccp restrict text) | { | // See if C++-style comments work. | // Iterate through items via the restricted pointer. | // Also check for declarations in for loops. | for (unsigned int i = 0; *(text+i) != '\0'; ++i) | continue; | return 0; | } | | // Check varargs and va_copy. | static void | test_varargs (const char *format, ...) | { | va_list args; | va_start (args, format); | va_list args_copy; | va_copy (args_copy, args); | | const char *str; | int number; | float fnumber; | | while (*format) | { | switch (*format++) | { | case 's': // string | str = va_arg (args_copy, const char *); | break; | case 'd': // int | number = va_arg (args_copy, int); | break; | case 'f': // float | fnumber = va_arg (args_copy, double); | break; | default: | break; | } | } | va_end (args_copy); | va_end (args); | } | | int | main () | { | | // Check bool. | _Bool success = false; | | // Check restrict. | if (test_restrict ("String literal") == 0) | success = true; | char *restrict newvar = "Another string"; | | // Check varargs. | test_varargs ("s, d' f .", "string", 65, 34.234); | test_varargs_macros (); | | // Check flexible array members. | struct incomplete_array *ia = | malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10)); | ia->datasize = 10; | for (int i = 0; i < ia->datasize; ++i) | ia->data[i] = i * 1.234; | | // Check named initializers. | struct named_init ni = { | .number = 34, | .name = L"Test wide string", | .average = 543.34343, | }; | | ni.number = 58; | | int dynamic_array[ni.number]; | dynamic_array[ni.number - 1] = 543; | | // work around unused variable warnings | return (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == 'x' | || dynamic_array[ni.number - 1] != 543); | | ; | return 0; | } configure:4173: gcc -qlanglvl=extc99 -c -g -O2 conftest.c >&5 gcc: unrecognized option `-qlanglvl=extc99' conftest.c:12: stdbool.h: No such file or directory conftest.c:18: warning: invalid character in macro parameter name conftest.c:18: badly punctuated parameter list in `#define' conftest.c:19: warning: invalid character in macro parameter name conftest.c:19: badly punctuated parameter list in `#define' conftest.c:20: badly punctuated parameter list in `#define' conftest.c:36: two `l's in integer constant conftest.c:39: two `l's in integer constant configure:4173: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | /* end confdefs.h. */ | #include | #include | #include | #include | #include | | // Check varargs macros. These examples are taken from C99 6.10.3.5. | #define debug(...) fprintf (stderr, __VA_ARGS__) | #define showlist(...) puts (#__VA_ARGS__) | #define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__)) | static void | test_varargs_macros (void) | { | int x = 1234; | int y = 5678; | debug ("Flag"); | debug ("X = %d\n", x); | showlist (The first, second, and third items.); | report (x>y, "x is %d but y is %d", x, y); | } | | // Check long long types. | #define BIG64 18446744073709551615ull | #define BIG32 4294967295ul | #define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0) | #if !BIG_OK | your preprocessor is broken; | #endif | #if BIG_OK | #else | your preprocessor is broken; | #endif | static long long int bignum = -9223372036854775807LL; | static unsigned long long int ubignum = BIG64; | | struct incomplete_array | { | int datasize; | double data[]; | }; | | struct named_init { | int number; | const wchar_t *name; | double average; | }; | | typedef const char *ccp; | | static inline int | test_restrict (ccp restrict text) | { | // See if C++-style comments work. | // Iterate through items via the restricted pointer. | // Also check for declarations in for loops. | for (unsigned int i = 0; *(text+i) != '\0'; ++i) | continue; | return 0; | } | | // Check varargs and va_copy. | static void | test_varargs (const char *format, ...) | { | va_list args; | va_start (args, format); | va_list args_copy; | va_copy (args_copy, args); | | const char *str; | int number; | float fnumber; | | while (*format) | { | switch (*format++) | { | case 's': // string | str = va_arg (args_copy, const char *); | break; | case 'd': // int | number = va_arg (args_copy, int); | break; | case 'f': // float | fnumber = va_arg (args_copy, double); | break; | default: | break; | } | } | va_end (args_copy); | va_end (args); | } | | int | main () | { | | // Check bool. | _Bool success = false; | | // Check restrict. | if (test_restrict ("String literal") == 0) | success = true; | char *restrict newvar = "Another string"; | | // Check varargs. | test_varargs ("s, d' f .", "string", 65, 34.234); | test_varargs_macros (); | | // Check flexible array members. | struct incomplete_array *ia = | malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10)); | ia->datasize = 10; | for (int i = 0; i < ia->datasize; ++i) | ia->data[i] = i * 1.234; | | // Check named initializers. | struct named_init ni = { | .number = 34, | .name = L"Test wide string", | .average = 543.34343, | }; | | ni.number = 58; | | int dynamic_array[ni.number]; | dynamic_array[ni.number - 1] = 543; | | // work around unused variable warnings | return (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == 'x' | || dynamic_array[ni.number - 1] != 543); | | ; | return 0; | } configure:4189: result: unsupported configure:4199: checking for gcc option to accept ISO C89 configure:4275: result: none needed configure:4294: checking for gcc option to accept ISO Standard C configure:4305: result: none needed configure:4365: checking for ar configure:4381: found /usr/bin/ar configure:4392: result: ar configure:4418: checking the archiver (ar) interface configure:4428: gcc -c -g -O2 conftest.c >&5 configure:4428: $? = 0 configure:4430: ar cru libconftest.a conftest.o >&5 configure:4433: $? = 0 configure:4456: result: ar configure:4481: checking for gawk configure:4508: result: gawk configure:4520: checking whether ln -s works configure:4524: result: yes configure:4531: checking whether make sets $(MAKE) configure:4553: result: yes configure:4606: checking for ranlib configure:4622: found /usr/bin/ranlib configure:4633: result: ranlib configure:4658: checking for an ANSI C-conforming const configure:4724: gcc -c -g -O2 conftest.c >&5 configure:4724: $? = 0 configure:4731: result: yes configure:4739: checking for inline configure:4755: gcc -c -g -O2 conftest.c >&5 configure:4755: $? = 0 configure:4763: result: inline configure:4781: checking for function prototypes configure:4784: result: yes configure:4802: checking how to run the C preprocessor configure:4833: gcc -E conftest.c configure:4833: $? = 0 configure:4847: gcc -E conftest.c conftest.c:13: ac_nonexistent.h: No such file or directory configure:4847: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | /* end confdefs.h. */ | #include configure:4872: result: gcc -E configure:4892: gcc -E conftest.c configure:4892: $? = 0 configure:4906: gcc -E conftest.c conftest.c:13: ac_nonexistent.h: No such file or directory configure:4906: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | /* end confdefs.h. */ | #include configure:4935: checking for grep that handles long lines and -e configure:4993: result: /usr/bin/grep configure:4998: checking for egrep configure:5060: result: /usr/bin/grep -E configure:5065: checking for ANSI C header files configure:5085: gcc -c -g -O2 conftest.c >&5 configure:5085: $? = 0 configure:5155: gcc -o conftest -g -O2 conftest.c >&5 configure:5155: $? = 0 configure:5155: ./conftest configure:5155: $? = 0 configure:5166: result: yes configure:5179: checking for sys/types.h configure:5179: gcc -c -g -O2 conftest.c >&5 configure:5179: $? = 0 configure:5179: result: yes configure:5179: checking for sys/stat.h configure:5179: gcc -c -g -O2 conftest.c >&5 configure:5179: $? = 0 configure:5179: result: yes configure:5179: checking for stdlib.h configure:5179: gcc -c -g -O2 conftest.c >&5 configure:5179: $? = 0 configure:5179: result: yes configure:5179: checking for string.h configure:5179: gcc -c -g -O2 conftest.c >&5 configure:5179: $? = 0 configure:5179: result: yes configure:5179: checking for memory.h configure:5179: gcc -c -g -O2 conftest.c >&5 configure:5179: $? = 0 configure:5179: result: yes configure:5179: checking for strings.h configure:5179: gcc -c -g -O2 conftest.c >&5 configure:5179: $? = 0 configure:5179: result: yes configure:5179: checking for inttypes.h configure:5179: gcc -c -g -O2 conftest.c >&5 conftest.c:54: inttypes.h: No such file or directory configure:5179: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | | #include configure:5179: result: no configure:5179: checking for stdint.h configure:5179: gcc -c -g -O2 conftest.c >&5 conftest.c:54: stdint.h: No such file or directory configure:5179: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | | #include configure:5179: result: no configure:5179: checking for unistd.h configure:5179: gcc -c -g -O2 conftest.c >&5 configure:5179: $? = 0 configure:5179: result: yes configure:5202: checking for string.h configure:5202: result: yes configure:5230: checking whether gcc accepts -fstack-protector configure:5245: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -fstack-protector-all conftest.c >&5 cc1: Invalid option `-fstack-protector-all' conftest.c:25: warning: function declaration isn't a prototype configure:5245: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | /* end confdefs.h. */ | | int | main () | { | | ; | return 0; | } configure:5278: checking for ANSI C header files configure:5379: result: yes configure:5387: checking for sys/wait.h that is POSIX.1 compatible configure:5413: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:34: warning: function declaration isn't a prototype configure:5413: $? = 0 configure:5420: result: yes configure:5428: checking whether time.h and sys/time.h may both be included configure:5448: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:30: warning: function declaration isn't a prototype configure:5448: $? = 0 configure:5455: result: yes configure:5471: checking fcntl.h usability configure:5471: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 configure:5471: $? = 0 configure:5471: result: yes configure:5471: checking fcntl.h presence configure:5471: gcc -E conftest.c configure:5471: $? = 0 configure:5471: result: yes configure:5471: checking for fcntl.h configure:5471: result: yes configure:5471: checking netdb.h usability configure:5471: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 configure:5471: $? = 0 configure:5471: result: yes configure:5471: checking netdb.h presence configure:5471: gcc -E conftest.c configure:5471: $? = 0 configure:5471: result: yes configure:5471: checking for netdb.h configure:5471: result: yes configure:5471: checking netinet/in.h usability configure:5471: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 configure:5471: $? = 0 configure:5471: result: yes configure:5471: checking netinet/in.h presence configure:5471: gcc -E conftest.c configure:5471: $? = 0 configure:5471: result: yes configure:5471: checking for netinet/in.h configure:5471: result: yes configure:5471: checking for stdlib.h configure:5471: result: yes configure:5471: checking for string.h configure:5471: result: yes configure:5471: checking for strings.h configure:5471: result: yes configure:5471: checking sys/socket.h usability configure:5471: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 configure:5471: $? = 0 configure:5471: result: yes configure:5471: checking sys/socket.h presence configure:5471: gcc -E conftest.c configure:5471: $? = 0 configure:5471: result: yes configure:5471: checking for sys/socket.h configure:5471: result: yes configure:5471: checking sys/time.h usability configure:5471: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 configure:5471: $? = 0 configure:5471: result: yes configure:5471: checking sys/time.h presence configure:5471: gcc -E conftest.c configure:5471: $? = 0 configure:5471: result: yes configure:5471: checking for sys/time.h configure:5471: result: yes configure:5471: checking for sys/types.h configure:5471: result: yes configure:5471: checking for unistd.h configure:5471: result: yes configure:5491: checking for arpa/inet.h configure:5491: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 configure:5491: $? = 0 configure:5491: result: yes configure:5491: checking for inttypes.h configure:5491: result: no configure:5491: checking for malloc.h configure:5491: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 configure:5491: $? = 0 configure:5491: result: yes configure:5491: checking for netinet/in_systm.h configure:5491: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 configure:5491: $? = 0 configure:5491: result: yes configure:5491: checking for netinet/ip.h configure:5491: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 configure:5491: $? = 0 configure:5491: result: yes configure:5491: checking for stdbool.h configure:5491: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:73: stdbool.h: No such file or directory configure:5491: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | | #include configure:5491: result: no configure:5491: checking for stddef.h configure:5491: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 configure:5491: $? = 0 configure:5491: result: yes configure:5491: checking for stdint.h configure:5491: result: no configure:5491: checking for varargs.h configure:5491: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 configure:5491: $? = 0 configure:5491: result: yes configure:5524: checking whether socklen_t exists configure:5543: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:47: warning: function declaration isn't a prototype conftest.c: In function `main': conftest.c:49: `socklen_t' undeclared (first use this function) conftest.c:49: (Each undeclared identifier is reported only once conftest.c:49: for each function it appears in.) conftest.c:49: parse error before `a' conftest.c:50: `a' undeclared (first use this function) conftest.c:50: `b' undeclared (first use this function) configure:5543: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_VARARGS_H 1 | /* end confdefs.h. */ | | #include | #include | | int | main () | { | | socklen_t a, b; | a = 2; b = 4; a += b; | | ; | return 0; | } configure:5551: result: no configure:5557: checking for pid_t configure:5557: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:76: warning: function declaration isn't a prototype configure:5557: $? = 0 configure:5557: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:76: warning: function declaration isn't a prototype conftest.c: In function `main': conftest.c:77: parse error before `)' configure:5557: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_VARARGS_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((pid_t))) | return 0; | ; | return 0; | } configure:5557: result: yes configure:5568: checking for size_t configure:5568: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:76: warning: function declaration isn't a prototype configure:5568: $? = 0 configure:5568: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:76: warning: function declaration isn't a prototype conftest.c: In function `main': conftest.c:77: parse error before `)' configure:5568: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_VARARGS_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((size_t))) | return 0; | ; | return 0; | } configure:5568: result: yes configure:5579: checking for ssize_t configure:5579: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:76: warning: function declaration isn't a prototype configure:5579: $? = 0 configure:5579: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:76: warning: function declaration isn't a prototype conftest.c: In function `main': conftest.c:77: parse error before `)' configure:5579: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_VARARGS_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((ssize_t))) | return 0; | ; | return 0; | } configure:5579: result: yes configure:5590: checking for uid_t in sys/types.h configure:5609: result: yes configure:5620: checking for uint16_t configure:5620: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:76: warning: function declaration isn't a prototype conftest.c: In function `main': conftest.c:77: `uint16_t' undeclared (first use this function) conftest.c:77: (Each undeclared identifier is reported only once conftest.c:77: for each function it appears in.) conftest.c:77: warning: suggest parentheses around + or - inside shift conftest.c:77: size of array `test_array' has non-integer type configure:5620: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_VARARGS_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | static int test_array [1 - 2 * !(((uint16_t) -1 >> (16 / 2 - 1)) >> (16 / 2 - 1) == 3)]; | test_array [0] = 0; | return test_array [0]; | | ; | return 0; | } configure:5620: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:76: warning: function declaration isn't a prototype conftest.c: In function `main': conftest.c:77: size of array `test_array' is negative configure:5620: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_VARARGS_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | static int test_array [1 - 2 * !(((unsigned int) -1 >> (16 / 2 - 1)) >> (16 / 2 - 1) == 3)]; | test_array [0] = 0; | return test_array [0]; | | ; | return 0; | } configure:5620: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:76: warning: function declaration isn't a prototype conftest.c: In function `main': conftest.c:77: size of array `test_array' is negative configure:5620: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_VARARGS_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | static int test_array [1 - 2 * !(((unsigned long int) -1 >> (16 / 2 - 1)) >> (16 / 2 - 1) == 3)]; | test_array [0] = 0; | return test_array [0]; | | ; | return 0; | } configure:5620: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:76: warning: function declaration isn't a prototype conftest.c: In function `main': conftest.c:77: size of array `test_array' is negative configure:5620: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_VARARGS_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | static int test_array [1 - 2 * !(((unsigned long long int) -1 >> (16 / 2 - 1)) >> (16 / 2 - 1) == 3)]; | test_array [0] = 0; | return test_array [0]; | | ; | return 0; | } configure:5620: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:76: warning: function declaration isn't a prototype configure:5620: $? = 0 configure:5620: result: unsigned short int configure:5632: checking for uint32_t configure:5632: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:77: warning: function declaration isn't a prototype conftest.c: In function `main': conftest.c:78: `uint32_t' undeclared (first use this function) conftest.c:78: (Each undeclared identifier is reported only once conftest.c:78: for each function it appears in.) conftest.c:78: warning: suggest parentheses around + or - inside shift conftest.c:78: size of array `test_array' has non-integer type configure:5632: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_VARARGS_H 1 | #define uint16_t unsigned short int | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | static int test_array [1 - 2 * !(((uint32_t) -1 >> (32 / 2 - 1)) >> (32 / 2 - 1) == 3)]; | test_array [0] = 0; | return test_array [0]; | | ; | return 0; | } configure:5632: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:77: warning: function declaration isn't a prototype configure:5632: $? = 0 configure:5632: result: unsigned int configure:5646: checking for uint8_t configure:5646: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:79: warning: function declaration isn't a prototype conftest.c: In function `main': conftest.c:80: `uint8_t' undeclared (first use this function) conftest.c:80: (Each undeclared identifier is reported only once conftest.c:80: for each function it appears in.) conftest.c:80: warning: suggest parentheses around + or - inside shift conftest.c:80: size of array `test_array' has non-integer type configure:5646: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_VARARGS_H 1 | #define uint16_t unsigned short int | #define _UINT32_T 1 | #define uint32_t unsigned int | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | static int test_array [1 - 2 * !(((uint8_t) -1 >> (8 / 2 - 1)) >> (8 / 2 - 1) == 3)]; | test_array [0] = 0; | return test_array [0]; | | ; | return 0; | } configure:5646: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:79: warning: function declaration isn't a prototype conftest.c: In function `main': conftest.c:80: size of array `test_array' is negative configure:5646: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_VARARGS_H 1 | #define uint16_t unsigned short int | #define _UINT32_T 1 | #define uint32_t unsigned int | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | static int test_array [1 - 2 * !(((unsigned int) -1 >> (8 / 2 - 1)) >> (8 / 2 - 1) == 3)]; | test_array [0] = 0; | return test_array [0]; | | ; | return 0; | } configure:5646: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:79: warning: function declaration isn't a prototype conftest.c: In function `main': conftest.c:80: size of array `test_array' is negative configure:5646: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_VARARGS_H 1 | #define uint16_t unsigned short int | #define _UINT32_T 1 | #define uint32_t unsigned int | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | static int test_array [1 - 2 * !(((unsigned long int) -1 >> (8 / 2 - 1)) >> (8 / 2 - 1) == 3)]; | test_array [0] = 0; | return test_array [0]; | | ; | return 0; | } configure:5646: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:79: warning: function declaration isn't a prototype conftest.c: In function `main': conftest.c:80: size of array `test_array' is negative configure:5646: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_VARARGS_H 1 | #define uint16_t unsigned short int | #define _UINT32_T 1 | #define uint32_t unsigned int | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | static int test_array [1 - 2 * !(((unsigned long long int) -1 >> (8 / 2 - 1)) >> (8 / 2 - 1) == 3)]; | test_array [0] = 0; | return test_array [0]; | | ; | return 0; | } configure:5646: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:79: warning: function declaration isn't a prototype conftest.c: In function `main': conftest.c:80: size of array `test_array' is negative configure:5646: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_VARARGS_H 1 | #define uint16_t unsigned short int | #define _UINT32_T 1 | #define uint32_t unsigned int | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | static int test_array [1 - 2 * !(((unsigned short int) -1 >> (8 / 2 - 1)) >> (8 / 2 - 1) == 3)]; | test_array [0] = 0; | return test_array [0]; | | ; | return 0; | } configure:5646: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:79: warning: function declaration isn't a prototype configure:5646: $? = 0 configure:5646: result: unsigned char configure:5661: checking for struct sockaddr_in.sin_len configure:5661: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:50: warning: function declaration isn't a prototype conftest.c: In function `main': conftest.c:52: structure has no member named `sin_len' configure:5661: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_VARARGS_H 1 | #define uint16_t unsigned short int | #define _UINT32_T 1 | #define uint32_t unsigned int | #define _UINT8_T 1 | #define uint8_t unsigned char | /* end confdefs.h. */ | #include | | int | main () | { | static struct sockaddr_in ac_aggr; | if (ac_aggr.sin_len) | return 0; | ; | return 0; | } configure:5661: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:50: warning: function declaration isn't a prototype conftest.c: In function `main': conftest.c:52: structure has no member named `sin_len' configure:5661: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_VARARGS_H 1 | #define uint16_t unsigned short int | #define _UINT32_T 1 | #define uint32_t unsigned int | #define _UINT8_T 1 | #define uint8_t unsigned char | /* end confdefs.h. */ | #include | | int | main () | { | static struct sockaddr_in ac_aggr; | if (sizeof ac_aggr.sin_len) | return 0; | ; | return 0; | } configure:5661: result: no configure:5672: checking for library containing memmove configure:5703: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:53: warning: function declaration isn't a prototype conftest.c:56: warning: function declaration isn't a prototype configure:5703: $? = 0 configure:5720: result: none required configure:5733: checking for library containing gethostbyname configure:5764: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:53: warning: function declaration isn't a prototype conftest.c:56: warning: function declaration isn't a prototype configure:5764: $? = 0 configure:5781: result: none required configure:5794: checking for library containing bind configure:5825: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:53: warning: function declaration isn't a prototype conftest.c:56: warning: function declaration isn't a prototype configure:5825: $? = 0 configure:5842: result: none required configure:5859: checking vfork.h usability configure:5859: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:79: vfork.h: No such file or directory configure:5859: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_VARARGS_H 1 | #define uint16_t unsigned short int | #define _UINT32_T 1 | #define uint32_t unsigned int | #define _UINT8_T 1 | #define uint8_t unsigned char | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | #include configure:5859: result: no configure:5859: checking vfork.h presence configure:5859: gcc -E conftest.c conftest.c:46: vfork.h: No such file or directory configure:5859: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_VARARGS_H 1 | #define uint16_t unsigned short int | #define _UINT32_T 1 | #define uint32_t unsigned int | #define _UINT8_T 1 | #define uint8_t unsigned char | /* end confdefs.h. */ | #include configure:5859: result: no configure:5859: checking for vfork.h configure:5859: result: no configure:5872: checking for fork configure:5872: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:69: warning: function declaration isn't a prototype conftest.c:79: warning: function declaration isn't a prototype configure:5872: $? = 0 configure:5872: result: yes configure:5872: checking for vfork configure:5872: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:70: warning: function declaration isn't a prototype conftest.c:80: warning: function declaration isn't a prototype configure:5872: $? = 0 configure:5872: result: yes configure:5882: checking for working fork configure:5904: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:83: warning: function declaration isn't a prototype configure:5904: $? = 0 configure:5904: ./conftest configure:5904: $? = 0 configure:5914: result: yes configure:5935: checking for working vfork configure:6045: result: yes configure:6072: checking for strftime configure:6072: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:73: warning: function declaration isn't a prototype conftest.c:83: warning: function declaration isn't a prototype configure:6072: $? = 0 configure:6072: result: yes configure:6134: checking for alarm configure:6134: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:74: warning: function declaration isn't a prototype conftest.c:84: warning: function declaration isn't a prototype configure:6134: $? = 0 configure:6134: result: yes configure:6134: checking for dup2 configure:6134: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:75: warning: function declaration isn't a prototype conftest.c:85: warning: function declaration isn't a prototype configure:6134: $? = 0 configure:6134: result: yes configure:6134: checking for endpwent configure:6134: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:76: warning: function declaration isn't a prototype conftest.c:86: warning: function declaration isn't a prototype configure:6134: $? = 0 configure:6134: result: yes configure:6134: checking for gethostbyaddr configure:6134: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:77: warning: function declaration isn't a prototype conftest.c:87: warning: function declaration isn't a prototype configure:6134: $? = 0 configure:6134: result: yes configure:6134: checking for gethostbyname configure:6134: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:78: warning: function declaration isn't a prototype conftest.c:88: warning: function declaration isn't a prototype configure:6134: $? = 0 configure:6134: result: yes configure:6134: checking for gethostname configure:6134: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:79: warning: function declaration isn't a prototype conftest.c:89: warning: function declaration isn't a prototype configure:6134: $? = 0 configure:6134: result: yes configure:6134: checking for gettimeofday configure:6134: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:80: warning: function declaration isn't a prototype conftest.c:90: warning: function declaration isn't a prototype configure:6134: $? = 0 configure:6134: result: yes configure:6134: checking for inet_ntoa configure:6134: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:81: warning: function declaration isn't a prototype conftest.c:91: warning: function declaration isn't a prototype configure:6134: $? = 0 configure:6134: result: yes configure:6134: checking for memmove configure:6134: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:82: warning: function declaration isn't a prototype conftest.c:92: warning: function declaration isn't a prototype configure:6134: $? = 0 configure:6134: result: yes configure:6134: checking for memset configure:6134: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:83: warning: function declaration isn't a prototype conftest.c:93: warning: function declaration isn't a prototype configure:6134: $? = 0 configure:6134: result: yes configure:6134: checking for setsid configure:6134: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:84: warning: function declaration isn't a prototype conftest.c:94: warning: function declaration isn't a prototype configure:6134: $? = 0 configure:6134: result: yes configure:6134: checking for socket configure:6134: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:85: warning: function declaration isn't a prototype conftest.c:95: warning: function declaration isn't a prototype configure:6134: $? = 0 configure:6134: result: yes configure:6134: checking for strcasecmp configure:6134: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:86: warning: function declaration isn't a prototype conftest.c:96: warning: function declaration isn't a prototype configure:6134: $? = 0 configure:6134: result: yes configure:6134: checking for strchr configure:6134: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:87: warning: function declaration isn't a prototype conftest.c:97: warning: function declaration isn't a prototype configure:6134: $? = 0 configure:6134: result: yes configure:6134: checking for strcspn configure:6134: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:88: warning: function declaration isn't a prototype conftest.c:98: warning: function declaration isn't a prototype configure:6134: $? = 0 configure:6134: result: yes configure:6134: checking for strerror configure:6134: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:89: warning: function declaration isn't a prototype conftest.c:99: warning: function declaration isn't a prototype configure:6134: $? = 0 configure:6134: result: yes configure:6134: checking for strncasecmp configure:6134: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:90: warning: function declaration isn't a prototype conftest.c:100: warning: function declaration isn't a prototype configure:6134: $? = 0 configure:6134: result: yes configure:6134: checking for strrchr configure:6134: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:91: warning: function declaration isn't a prototype conftest.c:101: warning: function declaration isn't a prototype configure:6134: $? = 0 configure:6134: result: yes configure:6134: checking for strspn configure:6134: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:92: warning: function declaration isn't a prototype conftest.c:102: warning: function declaration isn't a prototype configure:6134: $? = 0 configure:6134: result: yes configure:6134: checking for strstr configure:6134: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:93: warning: function declaration isn't a prototype conftest.c:103: warning: function declaration isn't a prototype configure:6134: $? = 0 configure:6134: result: yes configure:6153: checking for arc4random configure:6153: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:94: warning: function declaration isn't a prototype conftest.c:104: warning: function declaration isn't a prototype /tmp/cca078511.o: In function `main': /mnt/ngircd-23/conftest.c:105: undefined reference to `arc4random' configure:6153: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_VARARGS_H 1 | #define uint16_t unsigned short int | #define _UINT32_T 1 | #define uint32_t unsigned int | #define _UINT8_T 1 | #define uint8_t unsigned char | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_STRFTIME 1 | #define HAVE_ALARM 1 | #define HAVE_DUP2 1 | #define HAVE_ENDPWENT 1 | #define HAVE_GETHOSTBYADDR 1 | #define HAVE_GETHOSTBYNAME 1 | #define HAVE_GETHOSTNAME 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_INET_NTOA 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_SETSID 1 | #define HAVE_SOCKET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | /* end confdefs.h. */ | /* Define arc4random to an innocuous variant, in case declares arc4random. | For example, HP-UX 11i declares gettimeofday. */ | #define arc4random innocuous_arc4random | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char arc4random (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef arc4random | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char arc4random (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined __stub_arc4random || defined __stub___arc4random | choke me | #endif | | int | main () | { | return arc4random (); | ; | return 0; | } configure:6153: result: no configure:6153: checking for arc4random_stir configure:6153: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:94: warning: function declaration isn't a prototype conftest.c:104: warning: function declaration isn't a prototype /tmp/cca078751.o: In function `main': /mnt/ngircd-23/conftest.c:105: undefined reference to `arc4random_stir' configure:6153: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_VARARGS_H 1 | #define uint16_t unsigned short int | #define _UINT32_T 1 | #define uint32_t unsigned int | #define _UINT8_T 1 | #define uint8_t unsigned char | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_STRFTIME 1 | #define HAVE_ALARM 1 | #define HAVE_DUP2 1 | #define HAVE_ENDPWENT 1 | #define HAVE_GETHOSTBYADDR 1 | #define HAVE_GETHOSTBYNAME 1 | #define HAVE_GETHOSTNAME 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_INET_NTOA 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_SETSID 1 | #define HAVE_SOCKET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | /* end confdefs.h. */ | /* Define arc4random_stir to an innocuous variant, in case declares arc4random_stir. | For example, HP-UX 11i declares gettimeofday. */ | #define arc4random_stir innocuous_arc4random_stir | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char arc4random_stir (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef arc4random_stir | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char arc4random_stir (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined __stub_arc4random_stir || defined __stub___arc4random_stir | choke me | #endif | | int | main () | { | return arc4random_stir (); | ; | return 0; | } configure:6153: result: no configure:6153: checking for gai_strerror configure:6153: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:94: warning: function declaration isn't a prototype conftest.c:104: warning: function declaration isn't a prototype /tmp/cca078991.o: In function `main': /mnt/ngircd-23/conftest.c:105: undefined reference to `gai_strerror' configure:6153: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_VARARGS_H 1 | #define uint16_t unsigned short int | #define _UINT32_T 1 | #define uint32_t unsigned int | #define _UINT8_T 1 | #define uint8_t unsigned char | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_STRFTIME 1 | #define HAVE_ALARM 1 | #define HAVE_DUP2 1 | #define HAVE_ENDPWENT 1 | #define HAVE_GETHOSTBYADDR 1 | #define HAVE_GETHOSTBYNAME 1 | #define HAVE_GETHOSTNAME 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_INET_NTOA 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_SETSID 1 | #define HAVE_SOCKET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | /* end confdefs.h. */ | /* Define gai_strerror to an innocuous variant, in case declares gai_strerror. | For example, HP-UX 11i declares gettimeofday. */ | #define gai_strerror innocuous_gai_strerror | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char gai_strerror (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef gai_strerror | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char gai_strerror (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined __stub_gai_strerror || defined __stub___gai_strerror | choke me | #endif | | int | main () | { | return gai_strerror (); | ; | return 0; | } configure:6153: result: no configure:6153: checking for getnameinfo configure:6153: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:94: warning: function declaration isn't a prototype conftest.c:104: warning: function declaration isn't a prototype /tmp/cca079231.o: In function `main': /mnt/ngircd-23/conftest.c:105: undefined reference to `getnameinfo' configure:6153: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_VARARGS_H 1 | #define uint16_t unsigned short int | #define _UINT32_T 1 | #define uint32_t unsigned int | #define _UINT8_T 1 | #define uint8_t unsigned char | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_STRFTIME 1 | #define HAVE_ALARM 1 | #define HAVE_DUP2 1 | #define HAVE_ENDPWENT 1 | #define HAVE_GETHOSTBYADDR 1 | #define HAVE_GETHOSTBYNAME 1 | #define HAVE_GETHOSTNAME 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_INET_NTOA 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_SETSID 1 | #define HAVE_SOCKET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | /* end confdefs.h. */ | /* Define getnameinfo to an innocuous variant, in case declares getnameinfo. | For example, HP-UX 11i declares gettimeofday. */ | #define getnameinfo innocuous_getnameinfo | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char getnameinfo (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef getnameinfo | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char getnameinfo (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined __stub_getnameinfo || defined __stub___getnameinfo | choke me | #endif | | int | main () | { | return getnameinfo (); | ; | return 0; | } configure:6153: result: no configure:6153: checking for inet_aton configure:6153: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:94: warning: function declaration isn't a prototype conftest.c:104: warning: function declaration isn't a prototype configure:6153: $? = 0 configure:6153: result: yes configure:6153: checking for setgroups configure:6153: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:95: warning: function declaration isn't a prototype conftest.c:105: warning: function declaration isn't a prototype configure:6153: $? = 0 configure:6153: result: yes configure:6153: checking for sigaction configure:6153: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:96: warning: function declaration isn't a prototype conftest.c:106: warning: function declaration isn't a prototype configure:6153: $? = 0 configure:6153: result: yes configure:6153: checking for sigprocmask configure:6153: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:97: warning: function declaration isn't a prototype conftest.c:107: warning: function declaration isn't a prototype configure:6153: $? = 0 configure:6153: result: yes configure:6153: checking for snprintf configure:6153: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:98: warning: function declaration isn't a prototype conftest.c:108: warning: function declaration isn't a prototype configure:6153: $? = 0 configure:6153: result: yes configure:6153: checking for strdup configure:6153: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:99: warning: function declaration isn't a prototype conftest.c:109: warning: function declaration isn't a prototype configure:6153: $? = 0 configure:6153: result: yes configure:6153: checking for strlcat configure:6153: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:100: warning: function declaration isn't a prototype conftest.c:110: warning: function declaration isn't a prototype /tmp/cca081031.o: In function `main': /mnt/ngircd-23/conftest.c:111: undefined reference to `strlcat' configure:6153: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_VARARGS_H 1 | #define uint16_t unsigned short int | #define _UINT32_T 1 | #define uint32_t unsigned int | #define _UINT8_T 1 | #define uint8_t unsigned char | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_STRFTIME 1 | #define HAVE_ALARM 1 | #define HAVE_DUP2 1 | #define HAVE_ENDPWENT 1 | #define HAVE_GETHOSTBYADDR 1 | #define HAVE_GETHOSTBYNAME 1 | #define HAVE_GETHOSTNAME 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_INET_NTOA 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_SETSID 1 | #define HAVE_SOCKET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_INET_ATON 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SNPRINTF 1 | #define HAVE_STRDUP 1 | /* end confdefs.h. */ | /* Define strlcat to an innocuous variant, in case declares strlcat. | For example, HP-UX 11i declares gettimeofday. */ | #define strlcat innocuous_strlcat | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char strlcat (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef strlcat | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char strlcat (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined __stub_strlcat || defined __stub___strlcat | choke me | #endif | | int | main () | { | return strlcat (); | ; | return 0; | } configure:6153: result: no configure:6153: checking for strlcpy configure:6153: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:100: warning: function declaration isn't a prototype conftest.c:110: warning: function declaration isn't a prototype /tmp/cca081271.o: In function `main': /mnt/ngircd-23/conftest.c:111: undefined reference to `strlcpy' configure:6153: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_VARARGS_H 1 | #define uint16_t unsigned short int | #define _UINT32_T 1 | #define uint32_t unsigned int | #define _UINT8_T 1 | #define uint8_t unsigned char | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_STRFTIME 1 | #define HAVE_ALARM 1 | #define HAVE_DUP2 1 | #define HAVE_ENDPWENT 1 | #define HAVE_GETHOSTBYADDR 1 | #define HAVE_GETHOSTBYNAME 1 | #define HAVE_GETHOSTNAME 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_INET_NTOA 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_SETSID 1 | #define HAVE_SOCKET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_INET_ATON 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SNPRINTF 1 | #define HAVE_STRDUP 1 | /* end confdefs.h. */ | /* Define strlcpy to an innocuous variant, in case declares strlcpy. | For example, HP-UX 11i declares gettimeofday. */ | #define strlcpy innocuous_strlcpy | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char strlcpy (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef strlcpy | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char strlcpy (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined __stub_strlcpy || defined __stub___strlcpy | choke me | #endif | | int | main () | { | return strlcpy (); | ; | return 0; | } configure:6153: result: no configure:6153: checking for strndup configure:6153: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:100: warning: function declaration isn't a prototype conftest.c:110: warning: function declaration isn't a prototype /tmp/cca081511.o: In function `main': /mnt/ngircd-23/conftest.c:111: undefined reference to `strndup' configure:6153: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_VARARGS_H 1 | #define uint16_t unsigned short int | #define _UINT32_T 1 | #define uint32_t unsigned int | #define _UINT8_T 1 | #define uint8_t unsigned char | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_STRFTIME 1 | #define HAVE_ALARM 1 | #define HAVE_DUP2 1 | #define HAVE_ENDPWENT 1 | #define HAVE_GETHOSTBYADDR 1 | #define HAVE_GETHOSTBYNAME 1 | #define HAVE_GETHOSTNAME 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_INET_NTOA 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_SETSID 1 | #define HAVE_SOCKET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_INET_ATON 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SNPRINTF 1 | #define HAVE_STRDUP 1 | /* end confdefs.h. */ | /* Define strndup to an innocuous variant, in case declares strndup. | For example, HP-UX 11i declares gettimeofday. */ | #define strndup innocuous_strndup | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char strndup (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef strndup | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char strndup (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined __stub_strndup || defined __stub___strndup | choke me | #endif | | int | main () | { | return strndup (); | ; | return 0; | } configure:6153: result: no configure:6153: checking for strtok_r configure:6153: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:100: warning: function declaration isn't a prototype conftest.c:110: warning: function declaration isn't a prototype /tmp/cca081751.o: In function `main': /mnt/ngircd-23/conftest.c:111: undefined reference to `strtok_r' configure:6153: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_VARARGS_H 1 | #define uint16_t unsigned short int | #define _UINT32_T 1 | #define uint32_t unsigned int | #define _UINT8_T 1 | #define uint8_t unsigned char | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_STRFTIME 1 | #define HAVE_ALARM 1 | #define HAVE_DUP2 1 | #define HAVE_ENDPWENT 1 | #define HAVE_GETHOSTBYADDR 1 | #define HAVE_GETHOSTBYNAME 1 | #define HAVE_GETHOSTNAME 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_INET_NTOA 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_SETSID 1 | #define HAVE_SOCKET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_INET_ATON 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SNPRINTF 1 | #define HAVE_STRDUP 1 | /* end confdefs.h. */ | /* Define strtok_r to an innocuous variant, in case declares strtok_r. | For example, HP-UX 11i declares gettimeofday. */ | #define strtok_r innocuous_strtok_r | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char strtok_r (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef strtok_r | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char strtok_r (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined __stub_strtok_r || defined __stub___strtok_r | choke me | #endif | | int | main () | { | return strtok_r (); | ; | return 0; | } configure:6153: result: no configure:6153: checking for unsetenv configure:6153: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:100: warning: function declaration isn't a prototype conftest.c:110: warning: function declaration isn't a prototype configure:6153: $? = 0 configure:6153: result: yes configure:6153: checking for vsnprintf configure:6153: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:101: warning: function declaration isn't a prototype conftest.c:111: warning: function declaration isn't a prototype configure:6153: $? = 0 configure:6153: result: yes configure:6153: checking for waitpid configure:6153: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:102: warning: function declaration isn't a prototype conftest.c:112: warning: function declaration isn't a prototype configure:6153: $? = 0 configure:6153: result: yes configure:6201: checking for getaddrinfo configure:6201: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:103: warning: function declaration isn't a prototype conftest.c:113: warning: function declaration isn't a prototype /tmp/cca082741.o: In function `main': /mnt/ngircd-23/conftest.c:114: undefined reference to `getaddrinfo' configure:6201: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_VARARGS_H 1 | #define uint16_t unsigned short int | #define _UINT32_T 1 | #define uint32_t unsigned int | #define _UINT8_T 1 | #define uint8_t unsigned char | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_STRFTIME 1 | #define HAVE_ALARM 1 | #define HAVE_DUP2 1 | #define HAVE_ENDPWENT 1 | #define HAVE_GETHOSTBYADDR 1 | #define HAVE_GETHOSTBYNAME 1 | #define HAVE_GETHOSTNAME 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_INET_NTOA 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_SETSID 1 | #define HAVE_SOCKET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_INET_ATON 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SNPRINTF 1 | #define HAVE_STRDUP 1 | #define HAVE_UNSETENV 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | /* end confdefs.h. */ | /* Define getaddrinfo to an innocuous variant, in case declares getaddrinfo. | For example, HP-UX 11i declares gettimeofday. */ | #define getaddrinfo innocuous_getaddrinfo | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char getaddrinfo (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef getaddrinfo | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char getaddrinfo (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined __stub_getaddrinfo || defined __stub___getaddrinfo | choke me | #endif | | int | main () | { | return getaddrinfo (); | ; | return 0; | } configure:6201: result: no configure:6337: checking for library containing syslog configure:6368: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:87: warning: function declaration isn't a prototype conftest.c:90: warning: function declaration isn't a prototype configure:6368: $? = 0 configure:6385: result: none required configure:6402: checking syslog.h usability configure:6402: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 configure:6402: $? = 0 configure:6402: result: yes configure:6402: checking syslog.h presence configure:6402: gcc -E conftest.c configure:6402: $? = 0 configure:6402: result: yes configure:6402: checking for syslog.h configure:6402: result: yes configure:6490: checking for deflate in -lz configure:6515: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c -lz >&5 conftest.c:89: warning: function declaration isn't a prototype conftest.c:92: warning: function declaration isn't a prototype configure:6515: $? = 0 configure:6524: result: yes configure:6537: checking for deflate configure:6537: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c -lz >&5 conftest.c:106: warning: function declaration isn't a prototype conftest.c:116: warning: function declaration isn't a prototype configure:6537: $? = 0 configure:6537: result: yes configure:6555: checking zlib.h usability configure:6555: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 configure:6555: $? = 0 configure:6555: result: yes configure:6555: checking zlib.h presence configure:6555: gcc -E conftest.c configure:6555: $? = 0 configure:6555: result: yes configure:6555: checking for zlib.h configure:6555: result: yes configure:6602: checking for select configure:6602: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c -lz >&5 conftest.c:109: warning: function declaration isn't a prototype conftest.c:119: warning: function declaration isn't a prototype configure:6602: $? = 0 configure:6602: result: yes configure:6662: checking for poll configure:6662: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c -lz >&5 conftest.c:110: warning: function declaration isn't a prototype conftest.c:120: warning: function declaration isn't a prototype configure:6662: $? = 0 configure:6662: result: yes configure:6670: checking poll.h usability configure:6670: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:121: poll.h: No such file or directory configure:6670: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_VARARGS_H 1 | #define uint16_t unsigned short int | #define _UINT32_T 1 | #define uint32_t unsigned int | #define _UINT8_T 1 | #define uint8_t unsigned char | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_STRFTIME 1 | #define HAVE_ALARM 1 | #define HAVE_DUP2 1 | #define HAVE_ENDPWENT 1 | #define HAVE_GETHOSTBYADDR 1 | #define HAVE_GETHOSTBYNAME 1 | #define HAVE_GETHOSTNAME 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_INET_NTOA 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_SETSID 1 | #define HAVE_SOCKET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_INET_ATON 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SNPRINTF 1 | #define HAVE_STRDUP 1 | #define HAVE_UNSETENV 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define SYSLOG 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_LIBZ 1 | #define HAVE_DEFLATE 1 | #define ZLIB 1 | #define HAVE_ZLIB_H 1 | #define HAVE_SELECT 1 | #define HAVE_POLL 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | #include configure:6670: result: no configure:6670: checking poll.h presence configure:6670: gcc -E conftest.c conftest.c:88: poll.h: No such file or directory configure:6670: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_VARARGS_H 1 | #define uint16_t unsigned short int | #define _UINT32_T 1 | #define uint32_t unsigned int | #define _UINT8_T 1 | #define uint8_t unsigned char | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_STRFTIME 1 | #define HAVE_ALARM 1 | #define HAVE_DUP2 1 | #define HAVE_ENDPWENT 1 | #define HAVE_GETHOSTBYADDR 1 | #define HAVE_GETHOSTBYNAME 1 | #define HAVE_GETHOSTNAME 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_INET_NTOA 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_SETSID 1 | #define HAVE_SOCKET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_INET_ATON 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SNPRINTF 1 | #define HAVE_STRDUP 1 | #define HAVE_UNSETENV 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define SYSLOG 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_LIBZ 1 | #define HAVE_DEFLATE 1 | #define ZLIB 1 | #define HAVE_ZLIB_H 1 | #define HAVE_SELECT 1 | #define HAVE_POLL 1 | /* end confdefs.h. */ | #include configure:6670: result: no configure:6670: checking for poll.h configure:6670: result: no configure:6719: checking sys/devpoll.h usability configure:6719: gcc -c -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c >&5 conftest.c:121: sys/devpoll.h: No such file or directory configure:6719: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_VARARGS_H 1 | #define uint16_t unsigned short int | #define _UINT32_T 1 | #define uint32_t unsigned int | #define _UINT8_T 1 | #define uint8_t unsigned char | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_STRFTIME 1 | #define HAVE_ALARM 1 | #define HAVE_DUP2 1 | #define HAVE_ENDPWENT 1 | #define HAVE_GETHOSTBYADDR 1 | #define HAVE_GETHOSTBYNAME 1 | #define HAVE_GETHOSTNAME 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_INET_NTOA 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_SETSID 1 | #define HAVE_SOCKET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_INET_ATON 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SNPRINTF 1 | #define HAVE_STRDUP 1 | #define HAVE_UNSETENV 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define SYSLOG 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_LIBZ 1 | #define HAVE_DEFLATE 1 | #define ZLIB 1 | #define HAVE_ZLIB_H 1 | #define HAVE_SELECT 1 | #define HAVE_POLL 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | #include configure:6719: result: no configure:6719: checking sys/devpoll.h presence configure:6719: gcc -E conftest.c conftest.c:88: sys/devpoll.h: No such file or directory configure:6719: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_VARARGS_H 1 | #define uint16_t unsigned short int | #define _UINT32_T 1 | #define uint32_t unsigned int | #define _UINT8_T 1 | #define uint8_t unsigned char | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_STRFTIME 1 | #define HAVE_ALARM 1 | #define HAVE_DUP2 1 | #define HAVE_ENDPWENT 1 | #define HAVE_GETHOSTBYADDR 1 | #define HAVE_GETHOSTBYNAME 1 | #define HAVE_GETHOSTNAME 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_INET_NTOA 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_SETSID 1 | #define HAVE_SOCKET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_INET_ATON 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SNPRINTF 1 | #define HAVE_STRDUP 1 | #define HAVE_UNSETENV 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define SYSLOG 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_LIBZ 1 | #define HAVE_DEFLATE 1 | #define ZLIB 1 | #define HAVE_ZLIB_H 1 | #define HAVE_SELECT 1 | #define HAVE_POLL 1 | /* end confdefs.h. */ | #include configure:6719: result: no configure:6719: checking for sys/devpoll.h configure:6719: result: no configure:6763: checking for epoll_create configure:6763: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c -lz >&5 conftest.c:111: warning: function declaration isn't a prototype conftest.c:121: warning: function declaration isn't a prototype /tmp/cca085351.o: In function `main': /mnt/ngircd-23/conftest.c:122: undefined reference to `epoll_create' configure:6763: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_VARARGS_H 1 | #define uint16_t unsigned short int | #define _UINT32_T 1 | #define uint32_t unsigned int | #define _UINT8_T 1 | #define uint8_t unsigned char | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_STRFTIME 1 | #define HAVE_ALARM 1 | #define HAVE_DUP2 1 | #define HAVE_ENDPWENT 1 | #define HAVE_GETHOSTBYADDR 1 | #define HAVE_GETHOSTBYNAME 1 | #define HAVE_GETHOSTNAME 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_INET_NTOA 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_SETSID 1 | #define HAVE_SOCKET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_INET_ATON 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SNPRINTF 1 | #define HAVE_STRDUP 1 | #define HAVE_UNSETENV 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define SYSLOG 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_LIBZ 1 | #define HAVE_DEFLATE 1 | #define ZLIB 1 | #define HAVE_ZLIB_H 1 | #define HAVE_SELECT 1 | #define HAVE_POLL 1 | /* end confdefs.h. */ | /* Define epoll_create to an innocuous variant, in case declares epoll_create. | For example, HP-UX 11i declares gettimeofday. */ | #define epoll_create innocuous_epoll_create | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char epoll_create (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef epoll_create | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char epoll_create (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined __stub_epoll_create || defined __stub___epoll_create | choke me | #endif | | int | main () | { | return epoll_create (); | ; | return 0; | } configure:6763: result: no configure:6806: checking for kqueue configure:6806: gcc -o conftest -g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='"$(sysconfdir)"' -DDOCDIR='"$(docdir)"' conftest.c -lz >&5 conftest.c:111: warning: function declaration isn't a prototype conftest.c:121: warning: function declaration isn't a prototype /tmp/cca085561.o: In function `main': /mnt/ngircd-23/conftest.c:122: undefined reference to `kqueue' configure:6806: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "ngIRCd" | #define PACKAGE_TARNAME "ngircd" | #define PACKAGE_VERSION "23" | #define PACKAGE_STRING "ngIRCd 23" | #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" | #define PACKAGE_URL "http://ngircd.barton.de/" | #define PACKAGE "ngircd" | #define VERSION "23" | #define PROTOTYPES 1 | #define __PROTOTYPES 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_FCNTL_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETINET_IN_SYSTM_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_VARARGS_H 1 | #define uint16_t unsigned short int | #define _UINT32_T 1 | #define uint32_t unsigned int | #define _UINT8_T 1 | #define uint8_t unsigned char | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_STRFTIME 1 | #define HAVE_ALARM 1 | #define HAVE_DUP2 1 | #define HAVE_ENDPWENT 1 | #define HAVE_GETHOSTBYADDR 1 | #define HAVE_GETHOSTBYNAME 1 | #define HAVE_GETHOSTNAME 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_INET_NTOA 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_SETSID 1 | #define HAVE_SOCKET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_INET_ATON 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SNPRINTF 1 | #define HAVE_STRDUP 1 | #define HAVE_UNSETENV 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define SYSLOG 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_LIBZ 1 | #define HAVE_DEFLATE 1 | #define ZLIB 1 | #define HAVE_ZLIB_H 1 | #define HAVE_SELECT 1 | #define HAVE_POLL 1 | /* end confdefs.h. */ | /* Define kqueue to an innocuous variant, in case declares kqueue. | For example, HP-UX 11i declares gettimeofday. */ | #define kqueue innocuous_kqueue | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char kqueue (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef kqueue | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char kqueue (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined __stub_kqueue || defined __stub___kqueue | choke me | #endif | | int | main () | { | return kqueue (); | ; | return 0; | } configure:6806: result: no configure:7639: updating cache config.cache configure:7703: creating ./config.status ## ---------------------- ## ## Running config.status. ## ## ---------------------- ## This file was extended by ngIRCd config.status 23, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = CONFIG_HEADERS = CONFIG_LINKS = CONFIG_COMMANDS = $ ./config.status on susi52 config.status:952: creating Makefile config.status:952: creating contrib/Debian/Makefile config.status:952: creating contrib/MacOSX/Makefile config.status:952: creating contrib/MacOSX/ngIRCd.pmdoc/Makefile config.status:952: creating contrib/MacOSX/ngIRCd.xcodeproj/Makefile config.status:952: creating contrib/Makefile config.status:952: creating doc/Makefile config.status:952: creating doc/src/Makefile config.status:952: creating man/Makefile config.status:952: creating src/ipaddr/Makefile config.status:952: creating src/Makefile config.status:952: creating src/ngircd/Makefile config.status:952: creating src/portab/Makefile config.status:952: creating src/testsuite/Makefile config.status:952: creating src/tool/Makefile config.status:952: creating src/config.h config.status:1133: src/config.h is unchanged config.status:1181: executing depfiles commands ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_build=i686-pc-linux-gnu ac_cv_c_compiler_gnu=yes ac_cv_c_const=yes ac_cv_c_inline=inline ac_cv_c_uint16_t='unsigned short int' ac_cv_c_uint32_t='unsigned int' ac_cv_c_uint8_t='unsigned char' ac_cv_env_CC_set= ac_cv_env_CC_value= ac_cv_env_CFLAGS_set= ac_cv_env_CFLAGS_value= ac_cv_env_CPPFLAGS_set= ac_cv_env_CPPFLAGS_value= ac_cv_env_CPP_set= ac_cv_env_CPP_value= ac_cv_env_LDFLAGS_set= ac_cv_env_LDFLAGS_value= ac_cv_env_LIBS_set= ac_cv_env_LIBS_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_alarm=yes ac_cv_func_arc4random=no ac_cv_func_arc4random_stir=no ac_cv_func_deflate=yes ac_cv_func_dup2=yes ac_cv_func_endpwent=yes ac_cv_func_epoll_create=no ac_cv_func_fork=yes ac_cv_func_fork_works=yes ac_cv_func_gai_strerror=no ac_cv_func_getaddrinfo=no ac_cv_func_gethostbyaddr=yes ac_cv_func_gethostbyname=yes ac_cv_func_gethostname=yes ac_cv_func_getnameinfo=no ac_cv_func_gettimeofday=yes ac_cv_func_inet_aton=yes ac_cv_func_inet_ntoa=yes ac_cv_func_kqueue=no ac_cv_func_memmove=yes ac_cv_func_memset=yes ac_cv_func_poll=yes ac_cv_func_select=yes ac_cv_func_setgroups=yes ac_cv_func_setsid=yes ac_cv_func_sigaction=yes ac_cv_func_sigprocmask=yes ac_cv_func_snprintf=yes ac_cv_func_socket=yes ac_cv_func_strcasecmp=yes ac_cv_func_strchr=yes ac_cv_func_strcspn=yes ac_cv_func_strdup=yes ac_cv_func_strerror=yes ac_cv_func_strftime=yes ac_cv_func_strlcat=no ac_cv_func_strlcpy=no ac_cv_func_strncasecmp=yes ac_cv_func_strndup=no ac_cv_func_strrchr=yes ac_cv_func_strspn=yes ac_cv_func_strstr=yes ac_cv_func_strtok_r=no ac_cv_func_unsetenv=yes ac_cv_func_vfork=yes ac_cv_func_vfork_works=yes ac_cv_func_vsnprintf=yes ac_cv_func_waitpid=yes ac_cv_header_arpa_inet_h=yes ac_cv_header_fcntl_h=yes ac_cv_header_inttypes_h=no ac_cv_header_malloc_h=yes ac_cv_header_memory_h=yes ac_cv_header_netdb_h=yes ac_cv_header_netinet_in_h=yes ac_cv_header_netinet_in_systm_h=yes ac_cv_header_netinet_ip_h=yes ac_cv_header_poll_h=no ac_cv_header_stdbool_h=no ac_cv_header_stdc=yes ac_cv_header_stddef_h=yes ac_cv_header_stdint_h=no ac_cv_header_stdlib_h=yes ac_cv_header_string_h=yes ac_cv_header_strings_h=yes ac_cv_header_sys_devpoll_h=no 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_sys_wait_h=yes ac_cv_header_syslog_h=yes ac_cv_header_time=yes ac_cv_header_unistd_h=yes ac_cv_header_varargs_h=yes ac_cv_header_vfork_h=no ac_cv_header_zlib_h=yes ac_cv_host=i686-pc-linux-gnu ac_cv_lib_z_deflate=yes ac_cv_member_struct_sockaddr_in_sin_len=no ac_cv_objext=o ac_cv_path_EGREP='/usr/bin/grep -E' ac_cv_path_GREP=/usr/bin/grep ac_cv_path_install='/usr/bin/install -c' ac_cv_prog_AWK=gawk ac_cv_prog_CPP='gcc -E' ac_cv_prog_ac_ct_AR=ar ac_cv_prog_ac_ct_CC=gcc ac_cv_prog_ac_ct_RANLIB=ranlib ac_cv_prog_cc_c89= ac_cv_prog_cc_c99=no ac_cv_prog_cc_g=yes ac_cv_prog_cc_stdc= ac_cv_prog_make_make_set=yes ac_cv_search_bind='none required' ac_cv_search_gethostbyname='none required' ac_cv_search_memmove='none required' ac_cv_search_syslog='none required' ac_cv_type_pid_t=yes ac_cv_type_size_t=yes ac_cv_type_ssize_t=yes ac_cv_type_uid_t=yes am_cv_CC_dependencies_compiler_type=gcc am_cv_ar_interface=ar am_cv_make_support_nested_variables=yes ## ----------------- ## ## Output variables. ## ## ----------------- ## ACLOCAL='${SHELL} /mnt/ngircd-23/missing --run aclocal-1.11' AMDEPBACKSLASH='\' AMDEP_FALSE='#' AMDEP_TRUE='' AMTAR='$${TAR-tar}' AM_BACKSLASH='\' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' AM_DEFAULT_VERBOSITY='0' AM_V='$(V)' ANSI2KNR='' AR='ar' AUTOCONF='${SHELL} /mnt/ngircd-23/missing --run autoconf' AUTOHEADER='${SHELL} /mnt/ngircd-23/missing --run autoheader' AUTOMAKE='${SHELL} /mnt/ngircd-23/missing --run automake-1.11' AWK='gawk' CC='gcc' CCDEPMODE='depmode=gcc' CFLAGS='-g -O2 -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes -DSYSCONFDIR='\''"$(sysconfdir)"'\'' -DDOCDIR='\''"$(docdir)"'\''' CPP='gcc -E' CPPFLAGS='' CYGPATH_W='echo' DEFS='-DHAVE_CONFIG_H' DEPDIR='.deps' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='/usr/bin/grep -E' EXEEXT='' GREP='/usr/bin/grep' INSTALL_DATA='${INSTALL} -m 644' INSTALL_PROGRAM='${INSTALL}' INSTALL_SCRIPT='${INSTALL}' INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' LDFLAGS='' LIBOBJS='' LIBS='-lz ' LN_S='ln -s' LTLIBOBJS='' MAKEINFO='${SHELL} /mnt/ngircd-23/missing --run makeinfo' MKDIR_P='./install-sh -c -d' OBJEXT='o' PACKAGE='ngircd' PACKAGE_BUGREPORT='ngircd-ml@ngircd.barton.de' PACKAGE_NAME='ngIRCd' PACKAGE_STRING='ngIRCd 23' PACKAGE_TARNAME='ngircd' PACKAGE_URL='http://ngircd.barton.de/' PACKAGE_VERSION='23' PATH_SEPARATOR=':' RANLIB='ranlib' SET_MAKE='' SHELL='/bin/sh' STRIP='' U='' VERSION='23' ac_ct_AR='ar' ac_ct_CC='gcc' am__EXEEXT_FALSE='' am__EXEEXT_TRUE='#' am__fastdepCC_FALSE='' am__fastdepCC_TRUE='#' am__include='include' am__isrc='' am__leading_dot='.' am__nodep='_no' am__quote='' am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' bindir='${exec_prefix}/bin' build='i686-pc-linux-gnu' build_alias='' build_cpu='i686' build_os='linux-gnu' build_vendor='pc' datadir='${datarootdir}' datarootdir='${prefix}/share' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' dvidir='${docdir}' exec_prefix='${prefix}' host='i686-pc-linux-gnu' host_alias='' host_cpu='i686' host_os='linux-gnu' host_vendor='pc' htmldir='${docdir}' includedir='${prefix}/include' infodir='${datarootdir}/info' install_sh='${SHELL} /mnt/ngircd-23/install-sh' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' localedir='${datarootdir}/locale' localstatedir='${prefix}/var' mandir='${datarootdir}/man' mkdir_p='$(top_builddir)/./install-sh -c -d' oldincludedir='/usr/include' pdfdir='${docdir}' prefix='/usr/local' program_transform_name='s,x,x,' psdir='${docdir}' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' sysconfdir='${prefix}/etc' target_alias='' ## ----------- ## ## confdefs.h. ## ## ----------- ## /* confdefs.h */ #define PACKAGE_NAME "ngIRCd" #define PACKAGE_TARNAME "ngircd" #define PACKAGE_VERSION "23" #define PACKAGE_STRING "ngIRCd 23" #define PACKAGE_BUGREPORT "ngircd-ml@ngircd.barton.de" #define PACKAGE_URL "http://ngircd.barton.de/" #define PACKAGE "ngircd" #define VERSION "23" #define PROTOTYPES 1 #define __PROTOTYPES 1 #define STDC_HEADERS 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_SYS_STAT_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STRING_H 1 #define HAVE_MEMORY_H 1 #define HAVE_STRINGS_H 1 #define HAVE_UNISTD_H 1 #define HAVE_STRING_H 1 #define STDC_HEADERS 1 #define HAVE_SYS_WAIT_H 1 #define TIME_WITH_SYS_TIME 1 #define HAVE_FCNTL_H 1 #define HAVE_NETDB_H 1 #define HAVE_NETINET_IN_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STRING_H 1 #define HAVE_STRINGS_H 1 #define HAVE_SYS_SOCKET_H 1 #define HAVE_SYS_TIME_H 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_UNISTD_H 1 #define HAVE_ARPA_INET_H 1 #define HAVE_MALLOC_H 1 #define HAVE_NETINET_IN_SYSTM_H 1 #define HAVE_NETINET_IP_H 1 #define HAVE_STDDEF_H 1 #define HAVE_VARARGS_H 1 #define uint16_t unsigned short int #define _UINT32_T 1 #define uint32_t unsigned int #define _UINT8_T 1 #define uint8_t unsigned char #define HAVE_FORK 1 #define HAVE_VFORK 1 #define HAVE_WORKING_VFORK 1 #define HAVE_WORKING_FORK 1 #define HAVE_STRFTIME 1 #define HAVE_ALARM 1 #define HAVE_DUP2 1 #define HAVE_ENDPWENT 1 #define HAVE_GETHOSTBYADDR 1 #define HAVE_GETHOSTBYNAME 1 #define HAVE_GETHOSTNAME 1 #define HAVE_GETTIMEOFDAY 1 #define HAVE_INET_NTOA 1 #define HAVE_MEMMOVE 1 #define HAVE_MEMSET 1 #define HAVE_SETSID 1 #define HAVE_SOCKET 1 #define HAVE_STRCASECMP 1 #define HAVE_STRCHR 1 #define HAVE_STRCSPN 1 #define HAVE_STRERROR 1 #define HAVE_STRNCASECMP 1 #define HAVE_STRRCHR 1 #define HAVE_STRSPN 1 #define HAVE_STRSTR 1 #define HAVE_INET_ATON 1 #define HAVE_SETGROUPS 1 #define HAVE_SIGACTION 1 #define HAVE_SIGPROCMASK 1 #define HAVE_SNPRINTF 1 #define HAVE_STRDUP 1 #define HAVE_UNSETENV 1 #define HAVE_VSNPRINTF 1 #define HAVE_WAITPID 1 #define SYSLOG 1 #define HAVE_SYSLOG_H 1 #define HAVE_LIBZ 1 #define HAVE_DEFLATE 1 #define ZLIB 1 #define HAVE_ZLIB_H 1 #define HAVE_SELECT 1 #define HAVE_POLL 1 #define IRCPLUS 1 #define HOST_CPU "i686" #define HOST_VENDOR "pc" #define HOST_OS "linux-gnu" configure: exit 0