This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by configure, which was generated by GNU Autoconf 2.69. Invocation command line was $ ./configure ## --------- ## ## Platform. ## ## --------- ## hostname = IrisDCIPIQlab uname -m = i86pc uname -r = 5.10 uname -s = SunOS uname -v = Generic_150401-05 /usr/bin/uname -p = i386 /bin/uname -X = System = SunOS Node = IrisDCIPIQlab Release = 5.10 KernelID = Generic_150401-05 Machine = i86pc BusType = Serial = Users = OEM# = 0 Origin# = 1 NumCPU = 40 /bin/arch = i86pc /usr/bin/arch -k = i86pc /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /usr/sbin PATH: /usr/bin PATH: /usr/sfw/bin PATH: /usr/ccs/bin PATH: /opt/csw/bin ## ----------- ## ## Core tests. ## ## ----------- ## configure:3155: checking for ruby configure:3173: found /opt/csw/bin/ruby configure:3186: result: /opt/csw/bin/ruby configure:3272: checking build system type configure:3286: result: i386-pc-solaris2.10 configure:3306: checking host system type configure:3319: result: i386-pc-solaris2.10 configure:3339: checking target system type configure:3352: result: i386-pc-solaris2.10 configure:3592: checking for cl.exe configure:3622: result: no configure:3592: checking for clang configure:3622: result: no configure:3592: checking for cc configure:3608: found /usr/bin/cc configure:3619: result: cc configure:3713: checking for cl.exe configure:3743: result: no configure:3713: checking for CC configure:3729: found /usr/bin/CC configure:3740: result: CC configure:5217: checking for ld configure:5236: found /usr/ccs/bin/ld configure:5248: result: /usr/ccs/bin/ld configure:5439: checking for gcc configure:5466: result: cc configure:5695: checking for C compiler version configure:5704: cc --version >&5 cc: Warning: Option --version passed to ld, if ld is invoked, ignored otherwise usage: cc [ options ] files. Use 'cc -flags' for details configure:5715: $? = 1 configure:5704: cc -v >&5 usage: cc [ options ] files. Use 'cc -flags' for details configure:5715: $? = 1 configure:5704: cc -V >&5 cc: Sun C 5.12 SunOS_i386 2011/11/16 configure:5715: $? = 0 configure:5704: cc -qversion >&5 cc: Warning: Option -qversion passed to ld, if ld is invoked, ignored otherwise usage: cc [ options ] files. Use 'cc -flags' for details configure:5715: $? = 1 configure:5735: checking whether the C compiler works configure:5757: cc conftest.c >&5 configure:5761: $? = 0 configure:5809: result: yes configure:5812: checking for C compiler default output file name configure:5814: result: a.out configure:5820: checking for suffix of executables configure:5827: cc -o conftest conftest.c >&5 configure:5831: $? = 0 configure:5853: result: configure:5875: checking whether we are cross compiling configure:5883: cc -o conftest conftest.c >&5 "conftest.c", line 17: warning: statement not reached configure:5887: $? = 0 configure:5894: ./conftest configure:5898: $? = 0 configure:5913: result: no configure:5918: checking for suffix of object files configure:5940: cc -c conftest.c >&5 configure:5944: $? = 0 configure:5965: result: o configure:5969: checking whether we are using the GNU C compiler configure:5988: cc -c conftest.c >&5 "conftest.c", line 14: undefined symbol: choke "conftest.c", line 14: syntax error before or at: me cc: acomp failed for conftest.c configure:5988: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | /* end confdefs.h. */ | | int | main () | { | #ifndef __GNUC__ | choke me | #endif | | ; | return 0; | } configure:5997: result: no configure:6006: checking whether cc accepts -g configure:6026: cc -c -g conftest.c >&5 configure:6026: $? = 0 configure:6067: result: yes configure:6084: checking for cc option to accept ISO C89 configure:6147: cc -c -g conftest.c >&5 "conftest.c", line 56: warning: statement not reached configure:6147: $? = 0 configure:6160: result: none needed configure:6180: checking for cc option to accept ISO C99 configure:6329: cc -c -g conftest.c >&5 "/usr/include/stdbool.h", line 42: #error: "Use of is valid only in a c99 compilation environment." cc: acomp failed for conftest.c configure:6329: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | /* 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:6329: cc -std=gnu99 -c -g conftest.c >&5 cc: Warning: Option -d=gnu99 passed to ld, if ld is invoked, ignored otherwise "/usr/include/stdbool.h", line 42: #error: "Use of is valid only in a c99 compilation environment." cc: acomp failed for conftest.c configure:6329: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | /* 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:6329: cc -std=c99 -c -g conftest.c >&5 cc: Warning: Option -d=c99 passed to ld, if ld is invoked, ignored otherwise "/usr/include/stdbool.h", line 42: #error: "Use of is valid only in a c99 compilation environment." cc: acomp failed for conftest.c configure:6329: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | /* 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:6329: cc -c99 -c -g conftest.c >&5 cc: Warning: Option -99 passed to ld, if ld is invoked, ignored otherwise "/usr/include/stdbool.h", line 42: #error: "Use of is valid only in a c99 compilation environment." cc: acomp failed for conftest.c configure:6329: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | /* 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:6329: cc -AC99 -c -g conftest.c >&5 "/usr/include/stdbool.h", line 42: #error: "Use of is valid only in a c99 compilation environment." cc: acomp failed for conftest.c configure:6329: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | /* 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:6329: cc -D_STDC_C99= -c -g conftest.c >&5 "conftest.c", line 143: warning: statement not reached configure:6329: $? = 0 configure:6349: result: -D_STDC_C99= configure:6470: checking for C++ compiler version configure:6479: CC --version >&5 CC: Warning: Option --version passed to ld, if ld is invoked, ignored otherwise usage: CC [ options ] files. Use 'CC -flags' for details configure:6490: $? = 1 configure:6479: CC -v >&5 ### CC: Note: NLSPATH = /opt/solarisstudio12.3/prod/bin/../lib/locale/%L/LC_MESSAGES/%N.cat:/opt/solarisstudio12.3/prod/bin/../../lib/locale/%L/LC_MESSAGES/%N.cat ### command line files and options (expanded): ### -v usage: CC [ options ] files. Use 'CC -flags' for details configure:6490: $? = 1 configure:6479: CC -V >&5 CC: Sun C++ 5.12 SunOS_i386 2011/11/16 configure:6490: $? = 0 configure:6479: CC -qversion >&5 CC: Warning: Option -qversion passed to ld, if ld is invoked, ignored otherwise usage: CC [ options ] files. Use 'CC -flags' for details configure:6490: $? = 1 configure:6494: checking whether we are using the GNU C++ compiler configure:6513: CC -c conftest.cpp >&5 "conftest.cpp", line 14: Error: choke is not defined. 1 Error(s) detected. configure:6513: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | /* end confdefs.h. */ | | int | main () | { | #ifndef __GNUC__ | choke me | #endif | | ; | return 0; | } configure:6522: result: no configure:6531: checking whether CC accepts -g configure:6551: CC -c -g conftest.cpp >&5 configure:6551: $? = 0 configure:6592: result: yes configure:6620: checking how to run the C preprocessor configure:6651: cc -D_STDC_C99= -E conftest.c configure:6651: $? = 0 configure:6665: cc -D_STDC_C99= -E conftest.c "conftest.c", line 9: cannot find include file: cc: acomp failed for conftest.c configure:6665: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | /* end confdefs.h. */ | #include configure:6690: result: cc -D_STDC_C99= -E configure:6710: cc -D_STDC_C99= -E conftest.c configure:6710: $? = 0 configure:6724: cc -D_STDC_C99= -E conftest.c "conftest.c", line 9: cannot find include file: cc: acomp failed for conftest.c configure:6724: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | /* end confdefs.h. */ | #include configure:6795: checking for ranlib configure:6811: found /usr/ccs/bin/ranlib configure:6822: result: ranlib configure:6893: checking for gar configure:6909: found /usr/sfw/bin/gar configure:6920: result: gar configure:6993: checking for gas configure:7009: found /usr/sfw/bin/gas configure:7020: result: gas configure:7193: checking for gnm configure:7209: found /usr/sfw/bin/gnm configure:7220: result: gnm configure:7293: checking for gobjcopy configure:7309: found /usr/sfw/bin/gobjcopy configure:7320: result: gobjcopy configure:7393: checking for gobjdump configure:7409: found /usr/sfw/bin/gobjdump configure:7420: result: gobjdump configure:7493: checking for gstrip configure:7509: found /usr/sfw/bin/gstrip configure:7520: result: gstrip configure:7635: checking for grep that handles long lines and -e configure:7693: result: /usr/sfw/bin/ggrep configure:7698: checking for egrep configure:7760: result: /usr/sfw/bin/ggrep -E configure:7765: checking for ANSI C header files configure:7785: cc -D_STDC_C99= -c conftest.c >&5 configure:7785: $? = 0 configure:7858: cc -D_STDC_C99= -o conftest conftest.c >&5 configure:7858: $? = 0 configure:7858: ./conftest configure:7858: $? = 0 configure:7869: result: yes configure:7882: checking for sys/types.h configure:7882: cc -D_STDC_C99= -c conftest.c >&5 configure:7882: $? = 0 configure:7882: result: yes configure:7882: checking for sys/stat.h configure:7882: cc -D_STDC_C99= -c conftest.c >&5 configure:7882: $? = 0 configure:7882: result: yes configure:7882: checking for stdlib.h configure:7882: cc -D_STDC_C99= -c conftest.c >&5 configure:7882: $? = 0 configure:7882: result: yes configure:7882: checking for string.h configure:7882: cc -D_STDC_C99= -c conftest.c >&5 configure:7882: $? = 0 configure:7882: result: yes configure:7882: checking for memory.h configure:7882: cc -D_STDC_C99= -c conftest.c >&5 configure:7882: $? = 0 configure:7882: result: yes configure:7882: checking for strings.h configure:7882: cc -D_STDC_C99= -c conftest.c >&5 configure:7882: $? = 0 configure:7882: result: yes configure:7882: checking for inttypes.h configure:7882: cc -D_STDC_C99= -c conftest.c >&5 configure:7882: $? = 0 configure:7882: result: yes configure:7882: checking for stdint.h configure:7882: cc -D_STDC_C99= -c conftest.c >&5 configure:7882: $? = 0 configure:7882: result: yes configure:7882: checking for unistd.h configure:7882: cc -D_STDC_C99= -c conftest.c >&5 configure:7882: $? = 0 configure:7882: result: yes configure:7895: checking minix/config.h usability configure:7895: cc -D_STDC_C99= -c conftest.c >&5 "conftest.c", line 52: cannot find include file: cc: acomp failed for conftest.c configure:7895: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | /* 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:7895: result: no configure:7895: checking minix/config.h presence configure:7895: cc -D_STDC_C99= -E conftest.c "conftest.c", line 19: cannot find include file: cc: acomp failed for conftest.c configure:7895: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | /* end confdefs.h. */ | #include configure:7895: result: no configure:7895: checking for minix/config.h configure:7895: result: no configure:7916: checking whether it is safe to define __EXTENSIONS__ configure:7934: cc -D_STDC_C99= -c conftest.c >&5 configure:7934: $? = 0 configure:7941: result: yes configure:8114: checking whether the linker is GNU ld configure:8129: result: no configure:8133: checking whether cc -D_STDC_C99= -E accepts -o configure:8145: cc -D_STDC_C99= -E -o conftest-1.i conftest.c configure:8145: $? = 0 configure:8152: result: yes configure:8181: checking for cc configure:8199: found /usr/bin/cc configure:8211: result: /usr/bin/cc configure:8461: checking for gar flags configure:8474: result: rcu configure:8736: checking whether ln -s works configure:8740: result: yes configure:8747: checking whether make sets $(MAKE) configure:8769: result: yes configure:8792: checking for a BSD-compatible install configure:8860: result: /opt/csw/bin/ginstall -c configure:8871: checking for a thread-safe mkdir -p configure:8910: result: /opt/csw/bin/gmkdir -p configure:8932: checking for dtrace configure:8948: found /usr/sbin/dtrace configure:8959: result: dtrace configure:9013: checking for dot configure:9043: result: no configure:9055: checking for doxygen configure:9085: result: no configure:9097: checking for pkg-config configure:9118: found /usr/bin/pkg-config configure:9141: result: pkg-config configure:9152: checking whether it is Android configure:9169: cc -D_STDC_C99= -c conftest.c >&5 configure:9169: $? = 0 configure:9170: result: no configure:9215: checking for cd using physical directory configure:9234: result: PWD= cd configure:9253: checking whether CFLAGS is valid configure:9266: cc -D_STDC_C99= -c conftest.c >&5 configure:9266: $? = 0 configure:9267: result: yes configure:9279: checking whether LDFLAGS is valid configure:9299: cc -D_STDC_C99= -o conftest conftest.c >&5 configure:9299: $? = 0 configure:9300: result: yes configure:9355: checking whether -R. is accepted as LDFLAGS configure:9381: cc -D_STDC_C99= -o conftest -R. conftest.c >&5 configure:9381: $? = 0 configure:9383: result: yes configure:9355: checking whether -rpath . is accepted as LDFLAGS configure:9381: cc -D_STDC_C99= -o conftest -rpath . conftest.c >&5 ld: fatal: soname option (-h, --soname) is incompatible with building a static object (-dn, -r, --relocatable) ld: fatal: -a and relocatable object option (-r, --relocatable) are incompatible ld: fatal: flags processing errors configure:9381: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | /* end confdefs.h. */ | | int | main () | { | | ; | return 0; | } configure:9387: result: no configure:9420: checking whether -fdeclspec is accepted as CFLAGS configure:9447: cc -D_STDC_C99= -c -fdeclspec conftest.c >&5 cc: Warning: Option -fdeclspec passed to ld, if ld is invoked, ignored otherwise configure:9447: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | /* end confdefs.h. */ | | int | main () | { | | ; | return 0; | } configure:9476: result: no configure:9497: checking whether -fdeclspec is accepted as CXXFLAGS configure:9529: CC -o conftest -fdeclspec conftest.cpp >&5 CC: Warning: Option -fdeclspec passed to ld, if ld is invoked, ignored otherwise ld: fatal: auxiliary filter option (-f, --auxiliary) is only available when building a shared object ld: fatal: flags processing errors configure:9529: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | /* end confdefs.h. */ | | int | main () | { | | ; | return 0; | } configure:9545: result: no configure:9842: checking whether -Qunused-arguments is accepted as CFLAGS configure:9869: cc -D_STDC_C99= -c -Qunused-arguments conftest.c >&5 cc: Warning: Option -Qunused-arguments passed to ld, if ld is invoked, ignored otherwise configure:9869: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | /* end confdefs.h. */ | | int | main () | { | | ; | return 0; | } configure:9885: result: no configure:9917: cc -D_STDC_C99= -c conftest.c >&5 configure:9917: $? = 0 configure:9926: checking whether -erroff=E_STATEMENT_NOT_REACHED is accepted as CFLAGS configure:9953: cc -D_STDC_C99= -c -erroff=E_STATEMENT_NOT_REACHED conftest.c >&5 configure:9953: $? = 0 configure:9967: result: yes configure:9926: checking whether -erroff=E_INIT_SIGN_EXTEND is accepted as CFLAGS configure:9953: cc -D_STDC_C99= -c -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND conftest.c >&5 configure:9953: $? = 0 configure:9967: result: yes configure:9926: checking whether -erroff=E_INIT_DOES_NOT_FIT is accepted as CFLAGS configure:9953: cc -D_STDC_C99= -c -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT conftest.c >&5 configure:9953: $? = 0 configure:9967: result: yes configure:9926: checking whether -erroff=E_INITIALIZATION_TYPE_MISMATCH is accepted as CFLAGS configure:9953: cc -D_STDC_C99= -c -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH conftest.c >&5 configure:9953: $? = 0 configure:9967: result: yes configure:11197: checking for __sync_val_compare_and_swap configure:11214: cc -D_STDC_C99= -o conftest conftest.c >&5 "conftest.c", line 28: warning: implicit function declaration: __sync_val_compare_and_swap Undefined first referenced symbol in file __sync_val_compare_and_swap conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:11214: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | /* end confdefs.h. */ | unsigned long atomic_var; | int | main () | { | __sync_val_compare_and_swap(&atomic_var, 0, 1); | ; | return 0; | } configure:11230: cc -D_STDC_C99= -o conftest -march=i486 conftest.c >&5 cc: Warning: Option -march=i486 passed to ld, if ld is invoked, ignored otherwise "conftest.c", line 28: warning: implicit function declaration: __sync_val_compare_and_swap ld: fatal: -c option is incompatible with building a static object (-dn, -r, --relocatable) ld: fatal: -a and relocatable object option (-r, --relocatable) are incompatible ld: fatal: flags processing errors configure:11230: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | /* end confdefs.h. */ | unsigned long atomic_var; | int | main () | { | __sync_val_compare_and_swap(&atomic_var, 0, 1); | ; | return 0; | } configure:11244: result: no configure:11274: checking whether compiler has statement and declarations in expressions configure:11290: cc -D_STDC_C99= -c -g conftest.c >&5 "conftest.c", line 28: warning: implicit function declaration: __extension__ "conftest.c", line 28: syntax error before or at: { "conftest.c", line 28: undefined symbol: a "conftest.c", line 28: syntax error before or at: ) "conftest.c", line 28: warning: syntax error: empty declaration "conftest.c", line 29: warning: syntax error: empty declaration "conftest.c", line 30: warning: syntax error: empty declaration cc: acomp failed for conftest.c configure:11290: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | /* end confdefs.h. */ | | int | main () | { | __extension__ ({ int a = 0; a; }); | ; | return 0; | } configure:11297: result: no configure:11695: checking whether _XOPEN_SOURCE is already given configure:11712: cc -D_STDC_C99= -c -g conftest.c >&5 "conftest.c", line 26: #error: _XOPEN_SOURCE is not defined cc: acomp failed for conftest.c configure:11712: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | /* end confdefs.h. */ | #include | #ifndef _XOPEN_SOURCE | #error _XOPEN_SOURCE is not defined | #endif | | int | main () | { | | ; | return 0; | } configure:11718: result: no configure:11722: checking appropriate _XOPEN_SOURCE value to define configure:11760: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH conftest.c >&5 "/usr/include/sys/feature_tests.h", line 337: #error: "Compiler or options invalid for pre-UNIX 03 X/Open applications and pre-2001 POSIX applications" cc: acomp failed for conftest.c configure:11760: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | /* end confdefs.h. */ | | #define _XOPEN_SOURCE 700 | #include | #ifndef _XPG7 | #error _XPG7 should be defined by _XOPEN_SOURCE=700 | #endif | | int | main () | { | | ; | return 0; | } configure:11760: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH conftest.c >&5 configure:11760: $? = 0 configure:11782: result: 600 configure:12014: checking whether CXXFLAGS is valid configure:12033: CC -c -U_XOPEN_SOURCE -D_XOPEN_SOURCE=600 conftest.cpp >&5 configure:12033: $? = 0 configure:12034: result: yes configure:12068: checking for crypt in -lcrypt configure:12093: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lcrypt -lm >&5 "conftest.c", line 37: warning: statement not reached configure:12093: $? = 0 configure:12102: result: yes configure:12113: checking for dlopen in -ldl configure:12138: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -ldl -lcrypt -lm >&5 "conftest.c", line 38: warning: statement not reached configure:12138: $? = 0 configure:12147: result: yes configure:12158: checking for shl_load in -ldld configure:12183: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -ldld -ldl -lcrypt -lm >&5 "conftest.c", line 39: warning: statement not reached ld: fatal: library -ldld: not found ld: fatal: file processing errors. No output written to conftest configure:12183: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char shl_load (); | int | main () | { | return shl_load (); | ; | return 0; | } configure:12192: result: no configure:12203: checking for shutdown in -lsocket configure:12228: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 39: warning: statement not reached configure:12228: $? = 0 configure:12237: result: yes configure:12252: checking for dirent.h that defines DIR configure:12271: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:12271: $? = 0 configure:12279: result: yes configure:12292: checking for library containing opendir configure:12323: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 41: warning: statement not reached configure:12323: $? = 0 configure:12340: result: none required configure:12407: checking for stdbool.h that conforms to C99 configure:12474: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 77: warning: improper pointer/integer combination: op "=" "conftest.c", line 85: warning: statement not reached configure:12474: $? = 0 configure:12481: result: yes configure:12483: checking for _Bool configure:12483: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:12483: $? = 0 configure:12483: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 64: syntax error before or at: ) cc: acomp failed for conftest.c configure:12483: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((_Bool))) | return 0; | ; | return 0; | } configure:12483: result: yes configure:12500: checking for sys/wait.h that is POSIX.1 compatible configure:12526: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:12526: $? = 0 configure:12533: result: yes configure:12544: checking a.out.h usability configure:12544: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 64: cannot find include file: cc: acomp failed for conftest.c configure:12544: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_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:12544: result: no configure:12544: checking a.out.h presence configure:12544: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c "conftest.c", line 31: cannot find include file: cc: acomp failed for conftest.c configure:12544: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | /* end confdefs.h. */ | #include configure:12544: result: no configure:12544: checking for a.out.h configure:12544: result: no configure:12556: checking atomic.h usability configure:12556: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:12556: $? = 0 configure:12556: result: yes configure:12556: checking atomic.h presence configure:12556: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c configure:12556: $? = 0 configure:12556: result: yes configure:12556: checking for atomic.h configure:12556: result: yes configure:12568: checking copyfile.h usability configure:12568: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 65: cannot find include file: cc: acomp failed for conftest.c configure:12568: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_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:12568: result: no configure:12568: checking copyfile.h presence configure:12568: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c "conftest.c", line 32: cannot find include file: cc: acomp failed for conftest.c configure:12568: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | /* end confdefs.h. */ | #include configure:12568: result: no configure:12568: checking for copyfile.h configure:12568: result: no configure:12580: checking direct.h usability configure:12580: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 65: cannot find include file: cc: acomp failed for conftest.c configure:12580: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_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:12580: result: no configure:12580: checking direct.h presence configure:12580: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c "conftest.c", line 32: cannot find include file: cc: acomp failed for conftest.c configure:12580: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | /* end confdefs.h. */ | #include configure:12580: result: no configure:12580: checking for direct.h configure:12580: result: no configure:12592: checking grp.h usability configure:12592: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:12592: $? = 0 configure:12592: result: yes configure:12592: checking grp.h presence configure:12592: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c configure:12592: $? = 0 configure:12592: result: yes configure:12592: checking for grp.h configure:12592: result: yes configure:12604: checking fcntl.h usability configure:12604: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:12604: $? = 0 configure:12604: result: yes configure:12604: checking fcntl.h presence configure:12604: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c configure:12604: $? = 0 configure:12604: result: yes configure:12604: checking for fcntl.h configure:12604: result: yes configure:12616: checking float.h usability configure:12616: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:12616: $? = 0 configure:12616: result: yes configure:12616: checking float.h presence configure:12616: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c configure:12616: $? = 0 configure:12616: result: yes configure:12616: checking for float.h configure:12616: result: yes configure:12628: checking ieeefp.h usability configure:12628: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:12628: $? = 0 configure:12628: result: yes configure:12628: checking ieeefp.h presence configure:12628: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c configure:12628: $? = 0 configure:12628: result: yes configure:12628: checking for ieeefp.h configure:12628: result: yes configure:12640: checking intrinsics.h usability configure:12640: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 69: cannot find include file: cc: acomp failed for conftest.c configure:12640: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_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:12640: result: no configure:12640: checking intrinsics.h presence configure:12640: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c "conftest.c", line 36: cannot find include file: cc: acomp failed for conftest.c configure:12640: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | /* end confdefs.h. */ | #include configure:12640: result: no configure:12640: checking for intrinsics.h configure:12640: result: no configure:12652: checking langinfo.h usability configure:12652: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:12652: $? = 0 configure:12652: result: yes configure:12652: checking langinfo.h presence configure:12652: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c configure:12652: $? = 0 configure:12652: result: yes configure:12652: checking for langinfo.h configure:12652: result: yes configure:12664: checking limits.h usability configure:12664: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:12664: $? = 0 configure:12664: result: yes configure:12664: checking limits.h presence configure:12664: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c configure:12664: $? = 0 configure:12664: result: yes configure:12664: checking for limits.h configure:12664: result: yes configure:12676: checking locale.h usability configure:12676: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:12676: $? = 0 configure:12676: result: yes configure:12676: checking locale.h presence configure:12676: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c configure:12676: $? = 0 configure:12676: result: yes configure:12676: checking for locale.h configure:12676: result: yes configure:12688: checking malloc.h usability configure:12688: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:12688: $? = 0 configure:12688: result: yes configure:12688: checking malloc.h presence configure:12688: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c configure:12688: $? = 0 configure:12688: result: yes configure:12688: checking for malloc.h configure:12688: result: yes configure:12700: checking malloc/malloc.h usability configure:12700: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 73: cannot find include file: cc: acomp failed for conftest.c configure:12700: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_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:12700: result: no configure:12700: checking malloc/malloc.h presence configure:12700: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c "conftest.c", line 40: cannot find include file: cc: acomp failed for conftest.c configure:12700: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | /* end confdefs.h. */ | #include configure:12700: result: no configure:12700: checking for malloc/malloc.h configure:12700: result: no configure:12712: checking malloc_np.h usability configure:12712: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 73: cannot find include file: cc: acomp failed for conftest.c configure:12712: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_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:12712: result: no configure:12712: checking malloc_np.h presence configure:12712: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c "conftest.c", line 40: cannot find include file: cc: acomp failed for conftest.c configure:12712: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | /* end confdefs.h. */ | #include configure:12712: result: no configure:12712: checking for malloc_np.h configure:12712: result: no configure:12724: checking net/socket.h usability configure:12724: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 73: cannot find include file: cc: acomp failed for conftest.c configure:12724: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_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:12724: result: no configure:12724: checking net/socket.h presence configure:12724: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c "conftest.c", line 40: cannot find include file: cc: acomp failed for conftest.c configure:12724: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | /* end confdefs.h. */ | #include configure:12724: result: no configure:12724: checking for net/socket.h configure:12724: result: no configure:12736: checking process.h usability configure:12736: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 73: cannot find include file: cc: acomp failed for conftest.c configure:12736: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_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:12736: result: no configure:12736: checking process.h presence configure:12736: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c "conftest.c", line 40: cannot find include file: cc: acomp failed for conftest.c configure:12736: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | /* end confdefs.h. */ | #include configure:12736: result: no configure:12736: checking for process.h configure:12736: result: no configure:12748: checking pwd.h usability configure:12748: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:12748: $? = 0 configure:12748: result: yes configure:12748: checking pwd.h presence configure:12748: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c configure:12748: $? = 0 configure:12748: result: yes configure:12748: checking for pwd.h configure:12748: result: yes configure:12760: checking sanitizer/asan_interface.h usability configure:12760: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 74: cannot find include file: cc: acomp failed for conftest.c configure:12760: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_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:12760: result: no configure:12760: checking sanitizer/asan_interface.h presence configure:12760: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c "conftest.c", line 41: cannot find include file: cc: acomp failed for conftest.c configure:12760: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | /* end confdefs.h. */ | #include configure:12760: result: no configure:12760: checking for sanitizer/asan_interface.h configure:12760: result: no configure:12772: checking sanitizer/msan_interface.h usability configure:12772: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 74: cannot find include file: cc: acomp failed for conftest.c configure:12772: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_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:12772: result: no configure:12772: checking sanitizer/msan_interface.h presence configure:12772: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c "conftest.c", line 41: cannot find include file: cc: acomp failed for conftest.c configure:12772: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | /* end confdefs.h. */ | #include configure:12772: result: no configure:12772: checking for sanitizer/msan_interface.h configure:12772: result: no configure:12784: checking setjmpex.h usability configure:12784: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 74: cannot find include file: cc: acomp failed for conftest.c configure:12784: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_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:12784: result: no configure:12784: checking setjmpex.h presence configure:12784: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c "conftest.c", line 41: cannot find include file: cc: acomp failed for conftest.c configure:12784: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | /* end confdefs.h. */ | #include configure:12784: result: no configure:12784: checking for setjmpex.h configure:12784: result: no configure:12796: checking stdalign.h usability configure:12796: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 74: cannot find include file: cc: acomp failed for conftest.c configure:12796: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_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:12796: result: no configure:12796: checking stdalign.h presence configure:12796: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c "conftest.c", line 41: cannot find include file: cc: acomp failed for conftest.c configure:12796: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | /* end confdefs.h. */ | #include configure:12796: result: no configure:12796: checking for stdalign.h configure:12796: result: no configure:12808: checking sys/attr.h usability configure:12808: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 74: cannot find include file: cc: acomp failed for conftest.c configure:12808: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_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:12808: result: no configure:12808: checking sys/attr.h presence configure:12808: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c "conftest.c", line 41: cannot find include file: cc: acomp failed for conftest.c configure:12808: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | /* end confdefs.h. */ | #include configure:12808: result: no configure:12808: checking for sys/attr.h configure:12808: result: no configure:12820: checking sys/eventfd.h usability configure:12820: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 74: cannot find include file: cc: acomp failed for conftest.c configure:12820: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_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:12820: result: no configure:12820: checking sys/eventfd.h presence configure:12820: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c "conftest.c", line 41: cannot find include file: cc: acomp failed for conftest.c configure:12820: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | /* end confdefs.h. */ | #include configure:12820: result: no configure:12820: checking for sys/eventfd.h configure:12820: result: no configure:12832: checking sys/fcntl.h usability configure:12832: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:12832: $? = 0 configure:12832: result: yes configure:12832: checking sys/fcntl.h presence configure:12832: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c configure:12832: $? = 0 configure:12832: result: yes configure:12832: checking for sys/fcntl.h configure:12832: result: yes configure:12844: checking sys/file.h usability configure:12844: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:12844: $? = 0 configure:12844: result: yes configure:12844: checking sys/file.h presence configure:12844: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c configure:12844: $? = 0 configure:12844: result: yes configure:12844: checking for sys/file.h configure:12844: result: yes configure:12856: checking sys/id.h usability configure:12856: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 76: cannot find include file: cc: acomp failed for conftest.c configure:12856: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_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:12856: result: no configure:12856: checking sys/id.h presence configure:12856: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c "conftest.c", line 43: cannot find include file: cc: acomp failed for conftest.c configure:12856: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | /* end confdefs.h. */ | #include configure:12856: result: no configure:12856: checking for sys/id.h configure:12856: result: no configure:12868: checking sys/ioctl.h usability configure:12868: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:12868: $? = 0 configure:12868: result: yes configure:12868: checking sys/ioctl.h presence configure:12868: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c configure:12868: $? = 0 configure:12868: result: yes configure:12868: checking for sys/ioctl.h configure:12868: result: yes configure:12880: checking sys/mkdev.h usability configure:12880: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:12880: $? = 0 configure:12880: result: yes configure:12880: checking sys/mkdev.h presence configure:12880: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c configure:12880: $? = 0 configure:12880: result: yes configure:12880: checking for sys/mkdev.h configure:12880: result: yes configure:12892: checking sys/param.h usability configure:12892: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:12892: $? = 0 configure:12892: result: yes configure:12892: checking sys/param.h presence configure:12892: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c configure:12892: $? = 0 configure:12892: result: yes configure:12892: checking for sys/param.h configure:12892: result: yes configure:12904: checking sys/prctl.h usability configure:12904: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 79: cannot find include file: cc: acomp failed for conftest.c configure:12904: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_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:12904: result: no configure:12904: checking sys/prctl.h presence configure:12904: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c "conftest.c", line 46: cannot find include file: cc: acomp failed for conftest.c configure:12904: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | /* end confdefs.h. */ | #include configure:12904: result: no configure:12904: checking for sys/prctl.h configure:12904: result: no configure:12916: checking sys/resource.h usability configure:12916: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:12916: $? = 0 configure:12916: result: yes configure:12916: checking sys/resource.h presence configure:12916: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c configure:12916: $? = 0 configure:12916: result: yes configure:12916: checking for sys/resource.h configure:12916: result: yes configure:12928: checking sys/select.h usability configure:12928: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:12928: $? = 0 configure:12928: result: yes configure:12928: checking sys/select.h presence configure:12928: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c configure:12928: $? = 0 configure:12928: result: yes configure:12928: checking for sys/select.h configure:12928: result: yes configure:12940: checking sys/sendfile.h usability configure:12940: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:12940: $? = 0 configure:12940: result: yes configure:12940: checking sys/sendfile.h presence configure:12940: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c configure:12940: $? = 0 configure:12940: result: yes configure:12940: checking for sys/sendfile.h configure:12940: result: yes configure:12952: checking sys/socket.h usability configure:12952: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:12952: $? = 0 configure:12952: result: yes configure:12952: checking sys/socket.h presence configure:12952: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c configure:12952: $? = 0 configure:12952: result: yes configure:12952: checking for sys/socket.h configure:12952: result: yes configure:12964: checking sys/syscall.h usability configure:12964: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:12964: $? = 0 configure:12964: result: yes configure:12964: checking sys/syscall.h presence configure:12964: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c configure:12964: $? = 0 configure:12964: result: yes configure:12964: checking for sys/syscall.h configure:12964: result: yes configure:12976: checking sys/sysmacros.h usability configure:12976: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:12976: $? = 0 configure:12976: result: yes configure:12976: checking sys/sysmacros.h presence configure:12976: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c configure:12976: $? = 0 configure:12976: result: yes configure:12976: checking for sys/sysmacros.h configure:12976: result: yes configure:12988: checking sys/time.h usability configure:12988: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:12988: $? = 0 configure:12988: result: yes configure:12988: checking sys/time.h presence configure:12988: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c configure:12988: $? = 0 configure:12988: result: yes configure:12988: checking for sys/time.h configure:12988: result: yes configure:13000: checking sys/times.h usability configure:13000: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:13000: $? = 0 configure:13000: result: yes configure:13000: checking sys/times.h presence configure:13000: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c configure:13000: $? = 0 configure:13000: result: yes configure:13000: checking for sys/times.h configure:13000: result: yes configure:13012: checking sys/uio.h usability configure:13012: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:13012: $? = 0 configure:13012: result: yes configure:13012: checking sys/uio.h presence configure:13012: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c configure:13012: $? = 0 configure:13012: result: yes configure:13012: checking for sys/uio.h configure:13012: result: yes configure:13024: checking sys/utime.h usability configure:13024: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:13024: $? = 0 configure:13024: result: yes configure:13024: checking sys/utime.h presence configure:13024: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c configure:13024: $? = 0 configure:13024: result: yes configure:13024: checking for sys/utime.h configure:13024: result: yes configure:13036: checking syscall.h usability configure:13036: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 89: cannot find include file: cc: acomp failed for conftest.c configure:13036: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_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:13036: result: no configure:13036: checking syscall.h presence configure:13036: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c "conftest.c", line 56: cannot find include file: cc: acomp failed for conftest.c configure:13036: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | /* end confdefs.h. */ | #include configure:13036: result: no configure:13036: checking for syscall.h configure:13036: result: no configure:13048: checking time.h usability configure:13048: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:13048: $? = 0 configure:13048: result: yes configure:13048: checking time.h presence configure:13048: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c configure:13048: $? = 0 configure:13048: result: yes configure:13048: checking for time.h configure:13048: result: yes configure:13060: checking ucontext.h usability configure:13060: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:13060: $? = 0 configure:13060: result: yes configure:13060: checking ucontext.h presence configure:13060: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c configure:13060: $? = 0 configure:13060: result: yes configure:13060: checking for ucontext.h configure:13060: result: yes configure:13072: checking utime.h usability configure:13072: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:13072: $? = 0 configure:13072: result: yes configure:13072: checking utime.h presence configure:13072: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c configure:13072: $? = 0 configure:13072: result: yes configure:13072: checking for utime.h configure:13072: result: yes configure:13113: checking gmp.h usability configure:13113: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 92: cannot find include file: cc: acomp failed for conftest.c configure:13113: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_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:13113: result: no configure:13113: checking gmp.h presence configure:13113: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c "conftest.c", line 59: cannot find include file: cc: acomp failed for conftest.c configure:13113: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | /* end confdefs.h. */ | #include configure:13113: result: no configure:13113: checking for gmp.h configure:13113: result: no configure:13335: checking for special C compiler options needed for large files configure:13365: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 8: warning: integer overflow detected: op "<<" "conftest.c", line 8: warning: integer overflow detected: op "<<" "conftest.c", line 8: warning: integer overflow detected: op "<<" "conftest.c", line 8: warning: integer overflow detected: op "<<" "conftest.c", line 10: zero or negative subscript cc: acomp failed for conftest.c configure:13365: $? = 2 configure: failed program was: | /* end confdefs.h. */ | #include | /* Check that off_t can represent 2**63 - 1 correctly. | We can't simply define LARGE_OFF_T to be 9223372036854775807, | since some C++ compilers masquerading as C compilers | incorrectly reject 9223372036854775807. */ | #define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) | int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 | && LARGE_OFF_T % 2147483647 == 1) | ? 1 : -1]; | int | main () | { | | ; | return 0; | } configure:13370: cc -D_STDC_C99= -n32 -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 cc: Warning: Option -n32 passed to ld, if ld is invoked, ignored otherwise "conftest.c", line 8: warning: integer overflow detected: op "<<" "conftest.c", line 8: warning: integer overflow detected: op "<<" "conftest.c", line 8: warning: integer overflow detected: op "<<" "conftest.c", line 8: warning: integer overflow detected: op "<<" "conftest.c", line 10: zero or negative subscript cc: acomp failed for conftest.c configure:13370: $? = 2 configure: failed program was: | /* end confdefs.h. */ | #include | /* Check that off_t can represent 2**63 - 1 correctly. | We can't simply define LARGE_OFF_T to be 9223372036854775807, | since some C++ compilers masquerading as C compilers | incorrectly reject 9223372036854775807. */ | #define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) | int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 | && LARGE_OFF_T % 2147483647 == 1) | ? 1 : -1]; | int | main () | { | | ; | return 0; | } configure:13380: result: no configure:13386: checking for _FILE_OFFSET_BITS value needed for large files configure:13411: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 8: warning: integer overflow detected: op "<<" "conftest.c", line 8: warning: integer overflow detected: op "<<" "conftest.c", line 8: warning: integer overflow detected: op "<<" "conftest.c", line 8: warning: integer overflow detected: op "<<" "conftest.c", line 10: zero or negative subscript cc: acomp failed for conftest.c configure:13411: $? = 2 configure: failed program was: | /* end confdefs.h. */ | #include | /* Check that off_t can represent 2**63 - 1 correctly. | We can't simply define LARGE_OFF_T to be 9223372036854775807, | since some C++ compilers masquerading as C compilers | incorrectly reject 9223372036854775807. */ | #define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) | int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 | && LARGE_OFF_T % 2147483647 == 1) | ? 1 : -1]; | int | main () | { | | ; | return 0; | } configure:13435: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:13435: $? = 0 configure:13443: result: 64 configure:13535: checking wheather _LARGEFILE_SOURCE should be defined configure:13548: result: yes configure:13585: checking whether byte ordering is bigendian configure:13600: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 62: warning: old-style declaration or incorrect type for: not "conftest.c", line 62: syntax error before or at: a "conftest.c", line 62: warning: old-style declaration or incorrect type for: a "conftest.c", line 62: warning: old-style declaration or incorrect type for: universal "conftest.c", line 62: warning: old-style declaration or incorrect type for: capable "conftest.c", line 62: warning: old-style declaration or incorrect type for: compiler cc: acomp failed for conftest.c configure:13600: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | /* end confdefs.h. */ | #ifndef __APPLE_CC__ | not a universal capable compiler | #endif | typedef int dummy; | configure:13645: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 68: undefined symbol: bogus "conftest.c", line 68: syntax error before or at: endian cc: acomp failed for conftest.c configure:13645: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | /* end confdefs.h. */ | #include | #include | | int | main () | { | #if ! (defined BYTE_ORDER && defined BIG_ENDIAN && defined LITTLE_ENDIAN && BYTE_ORDER && BIG_ENDIAN && LITTLE_ENDIAN) | bogus endian macros | #endif | | ; | return 0; | } configure:13689: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:13689: $? = 0 configure:13706: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 67: undefined symbol: not "conftest.c", line 67: syntax error before or at: big cc: acomp failed for conftest.c configure:13706: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | /* end confdefs.h. */ | #include | | int | main () | { | #ifndef _BIG_ENDIAN | not big endian | #endif | | ; | return 0; | } configure:13791: result: no configure:13809: checking for an ANSI C-conforming const configure:13875: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 117: warning: statement not reached configure:13875: $? = 0 configure:13882: result: yes configure:13890: checking whether char is unsigned configure:13909: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 102: warning: statement not reached configure:13909: $? = 0 configure:13916: result: no configure:13923: checking for inline configure:13939: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:13939: $? = 0 configure:13947: result: inline configure:13965: checking for working volatile configure:13984: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 70: warning: statement not reached configure:13984: $? = 0 configure:13991: result: yes configure:14000: checking for typeof syntax and keyword spelling configure:14031: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 79: warning: statement not reached configure:14031: $? = 0 configure:14038: result: typeof configure:14053: checking for C/C++ restrict keyword configure:14078: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 63: syntax error before or at: ip "conftest.c", line 63: warning: undefined or missing type for: ip "conftest.c", line 64: undefined symbol: ip "conftest.c", line 64: cannot dereference non-pointer type "conftest.c", line 70: syntax error before or at: t "conftest.c", line 71: undefined symbol: t "conftest.c", line 71: cannot dereference non-pointer type "conftest.c", line 74: warning: statement not reached cc: acomp failed for conftest.c configure:14078: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | /* end confdefs.h. */ | typedef int * int_ptr; | int foo (int_ptr __restrict ip) { | return ip[0]; | } | int | main () | { | int s[1]; | int * __restrict t = s; | t[0] = 0; | return foo(t) | ; | return 0; | } configure:14078: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 74: warning: statement not reached configure:14078: $? = 0 configure:14086: result: __restrict__ configure:14107: checking for long long configure:14107: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:14107: $? = 0 configure:14107: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 99: syntax error before or at: ) cc: acomp failed for conftest.c configure:14107: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | /* 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 ((long long))) | return 0; | ; | return 0; | } configure:14107: result: yes configure:14116: checking for off_t configure:14116: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:14116: $? = 0 configure:14116: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 100: syntax error before or at: ) cc: acomp failed for conftest.c configure:14116: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 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 ((off_t))) | return 0; | ; | return 0; | } configure:14116: result: yes configure:14127: checking char bit configure:14133: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 97: warning: statement not reached configure:14133: $? = 0 configure:14133: ./conftest configure:14133: $? = 0 configure:14142: result: 8 configure:14306: checking size of int configure:14311: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 128: warning: statement not reached configure:14311: $? = 0 configure:14311: ./conftest configure:14311: $? = 0 configure:14325: result: 4 configure:14422: checking size of short configure:14427: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 129: warning: statement not reached configure:14427: $? = 0 configure:14427: ./conftest configure:14427: $? = 0 configure:14441: result: 2 configure:14631: checking size of long configure:14636: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 130: warning: statement not reached configure:14636: $? = 0 configure:14636: ./conftest configure:14636: $? = 0 configure:14650: result: 4 configure:14747: checking size of long long configure:14752: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 131: warning: statement not reached configure:14752: $? = 0 configure:14752: ./conftest configure:14752: $? = 0 configure:14766: result: 8 configure:14956: checking size of __int64 configure:14961: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 102: undefined symbol: __int64 "conftest.c", line 103: undefined symbol: __int64 "conftest.c", line 113: undefined symbol: __int64 "conftest.c", line 132: warning: statement not reached cc: acomp failed for conftest.c configure:14961: $? = 2 configure: program exited with status 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | /* 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 | static long int longval () { return (long int) (sizeof (__int64)); } | static unsigned long int ulongval () { return (long int) (sizeof (__int64)); } | #include | #include | int | main () | { | | FILE *f = fopen ("conftest.val", "w"); | if (! f) | return 1; | if (((long int) (sizeof (__int64))) < 0) | { | long int i = longval (); | if (i != ((long int) (sizeof (__int64)))) | return 1; | fprintf (f, "%ld", i); | } | else | { | unsigned long int i = ulongval (); | if (i != ((long int) (sizeof (__int64)))) | return 1; | fprintf (f, "%lu", i); | } | /* Do not output a trailing newline, as this causes \r\n confusion | on some platforms. */ | return ferror (f) || fclose (f) != 0; | | ; | return 0; | } configure:14975: result: 0 configure:15165: checking size of __int128 configure:15170: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 103: undefined symbol: __int128 "conftest.c", line 104: undefined symbol: __int128 "conftest.c", line 114: undefined symbol: __int128 "conftest.c", line 133: warning: statement not reached cc: acomp failed for conftest.c configure:15170: $? = 2 configure: program exited with status 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | /* 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 | static long int longval () { return (long int) (sizeof (__int128)); } | static unsigned long int ulongval () { return (long int) (sizeof (__int128)); } | #include | #include | int | main () | { | | FILE *f = fopen ("conftest.val", "w"); | if (! f) | return 1; | if (((long int) (sizeof (__int128))) < 0) | { | long int i = longval (); | if (i != ((long int) (sizeof (__int128)))) | return 1; | fprintf (f, "%ld", i); | } | else | { | unsigned long int i = ulongval (); | if (i != ((long int) (sizeof (__int128)))) | return 1; | fprintf (f, "%lu", i); | } | /* Do not output a trailing newline, as this causes \r\n confusion | on some platforms. */ | return ferror (f) || fclose (f) != 0; | | ; | return 0; | } configure:15184: result: 0 configure:15281: checking size of off_t configure:15286: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 134: warning: statement not reached configure:15286: $? = 0 configure:15286: ./conftest configure:15286: $? = 0 configure:15300: result: 8 configure:15490: checking size of void* configure:15495: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 135: warning: statement not reached configure:15495: $? = 0 configure:15495: ./conftest configure:15495: $? = 0 configure:15509: result: 4 configure:15606: checking size of float configure:15611: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 136: warning: statement not reached configure:15611: $? = 0 configure:15611: ./conftest configure:15611: $? = 0 configure:15625: result: 4 configure:15722: checking size of double configure:15727: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 137: warning: statement not reached configure:15727: $? = 0 configure:15727: ./conftest configure:15727: $? = 0 configure:15741: result: 8 configure:15856: checking size of time_t configure:15861: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 107: warning: statement not reached configure:15861: $? = 0 configure:15861: ./conftest configure:15861: $? = 0 configure:15876: result: 4 configure:15975: checking size of clock_t configure:15980: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 108: warning: statement not reached configure:15980: $? = 0 configure:15980: ./conftest configure:15980: $? = 0 configure:15995: result: 4 configure:16008: checking packed struct attribute configure:16030: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 78: syntax error before or at: ( "conftest.c", line 78: warning: old-style declaration or incorrect type for: __pragma "conftest.c", line 78: syntax error before or at: ( "conftest.c", line 78: identifier redefined: __pragma current : function() returning struct {int a} previous: function() returning int : "conftest.c", line 78 "conftest.c", line 78: warning: syntax error: empty declaration cc: acomp failed for conftest.c configure:16030: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | /* end confdefs.h. */ | #define PACKED_STRUCT(x) __pragma(pack(push, 1)) x __pragma(pack(pop)) | PACKED_STRUCT(struct { int a; }); | int | main () | { | | ; | return 0; | } configure:16030: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 78: warning: useless declaration configure:16030: $? = 0 configure:16036: result: x __attribute__((packed)) configure:16045: checking whether -Wno-address-of-packed-member is accepted as CFLAGS configure:16072: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -Wno-address-of-packed-member -D_XOPEN_SOURCE=600 conftest.c >&5 cc: -W option with unknown program no-address-of-packed-member configure:16072: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | /* end confdefs.h. */ | | int | main () | { | | ; | return 0; | } configure:16079: result: no configure:16109: checking for printf prefix for long long configure:16165: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 configure:16165: $? = 0 configure:16182: result: ll configure:16284: checking for pid_t configure:16284: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:16284: $? = 0 configure:16284: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 115: syntax error before or at: ) cc: acomp failed for conftest.c configure:16284: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | /* 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:16284: result: yes configure:16296: checking for convertible type of pid_t configure:16324: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 116: zero or negative subscript "conftest.c", line 121: warning: statement not reached cc: acomp failed for conftest.c configure:16324: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 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 * !((pid_t)-1 > 0)]; | test_array [0] = 0; | return test_array [0]; | | ; | return 0; | } configure:16354: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 116: identifier redeclared: rbcv_conftest_var current : long long previous: long : "conftest.c", line 115 "conftest.c", line 118: identifier redeclared: rbcv_conftest_func current : function(void) returning long long previous: function(void) returning long : "conftest.c", line 117 "conftest.c", line 123: zero or negative subscript "conftest.c", line 128: warning: statement not reached cc: acomp failed for conftest.c configure:16354: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 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 | typedef pid_t rbcv_conftest_target_type; | typedef long long rbcv_conftest_replace_type; | extern rbcv_conftest_target_type rbcv_conftest_var; | extern rbcv_conftest_replace_type rbcv_conftest_var; | extern rbcv_conftest_target_type rbcv_conftest_func(void); | extern rbcv_conftest_replace_type rbcv_conftest_func(void); | | int | main () | { | static int test_array [1 - 2 * !(sizeof(rbcv_conftest_target_type) == sizeof(rbcv_conftest_replace_type))]; | test_array [0] = 0; | return test_array [0]; | | ; | return 0; | } configure:16354: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 128: warning: statement not reached configure:16354: $? = 0 configure:16377: result: LONG configure:16430: checking for uid_t configure:16430: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:16430: $? = 0 configure:16430: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 121: syntax error before or at: ) cc: acomp failed for conftest.c configure:16430: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | /* 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 ((uid_t))) | return 0; | ; | return 0; | } configure:16430: result: yes configure:16442: checking for convertible type of uid_t configure:16470: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 122: zero or negative subscript "conftest.c", line 127: warning: statement not reached cc: acomp failed for conftest.c configure:16470: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 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 * !((uid_t)-1 > 0)]; | test_array [0] = 0; | return test_array [0]; | | ; | return 0; | } configure:16500: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 122: identifier redeclared: rbcv_conftest_var current : long long previous: long : "conftest.c", line 121 "conftest.c", line 124: identifier redeclared: rbcv_conftest_func current : function(void) returning long long previous: function(void) returning long : "conftest.c", line 123 "conftest.c", line 129: zero or negative subscript "conftest.c", line 134: warning: statement not reached cc: acomp failed for conftest.c configure:16500: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 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 | typedef uid_t rbcv_conftest_target_type; | typedef long long rbcv_conftest_replace_type; | extern rbcv_conftest_target_type rbcv_conftest_var; | extern rbcv_conftest_replace_type rbcv_conftest_var; | extern rbcv_conftest_target_type rbcv_conftest_func(void); | extern rbcv_conftest_replace_type rbcv_conftest_func(void); | | int | main () | { | static int test_array [1 - 2 * !(sizeof(rbcv_conftest_target_type) == sizeof(rbcv_conftest_replace_type))]; | test_array [0] = 0; | return test_array [0]; | | ; | return 0; | } configure:16500: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 134: warning: statement not reached configure:16500: $? = 0 configure:16523: result: LONG configure:16576: checking for gid_t configure:16576: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:16576: $? = 0 configure:16576: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 127: syntax error before or at: ) cc: acomp failed for conftest.c configure:16576: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | /* 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 ((gid_t))) | return 0; | ; | return 0; | } configure:16576: result: yes configure:16588: checking for convertible type of gid_t configure:16616: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 128: zero or negative subscript "conftest.c", line 133: warning: statement not reached cc: acomp failed for conftest.c configure:16616: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 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 * !((gid_t)-1 > 0)]; | test_array [0] = 0; | return test_array [0]; | | ; | return 0; | } configure:16646: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 128: identifier redeclared: rbcv_conftest_var current : long long previous: long : "conftest.c", line 127 "conftest.c", line 130: identifier redeclared: rbcv_conftest_func current : function(void) returning long long previous: function(void) returning long : "conftest.c", line 129 "conftest.c", line 135: zero or negative subscript "conftest.c", line 140: warning: statement not reached cc: acomp failed for conftest.c configure:16646: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 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 | typedef gid_t rbcv_conftest_target_type; | typedef long long rbcv_conftest_replace_type; | extern rbcv_conftest_target_type rbcv_conftest_var; | extern rbcv_conftest_replace_type rbcv_conftest_var; | extern rbcv_conftest_target_type rbcv_conftest_func(void); | extern rbcv_conftest_replace_type rbcv_conftest_func(void); | | int | main () | { | static int test_array [1 - 2 * !(sizeof(rbcv_conftest_target_type) == sizeof(rbcv_conftest_replace_type))]; | test_array [0] = 0; | return test_array [0]; | | ; | return 0; | } configure:16646: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 140: warning: statement not reached configure:16646: $? = 0 configure:16669: result: LONG configure:16722: checking for time_t configure:16722: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:16722: $? = 0 configure:16722: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 102: syntax error before or at: ) cc: acomp failed for conftest.c configure:16722: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | /* end confdefs.h. */ | #include | | int | main () | { | if (sizeof ((time_t))) | return 0; | ; | return 0; | } configure:16722: result: yes configure:16735: checking for convertible type of time_t configure:16764: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 103: zero or negative subscript "conftest.c", line 108: warning: statement not reached cc: acomp failed for conftest.c configure:16764: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | /* end confdefs.h. */ | #include | | int | main () | { | static int test_array [1 - 2 * !((time_t)-1 > 0)]; | test_array [0] = 0; | return test_array [0]; | | ; | return 0; | } configure:16795: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 103: identifier redeclared: rbcv_conftest_var current : long long previous: long : "conftest.c", line 102 "conftest.c", line 105: identifier redeclared: rbcv_conftest_func current : function(void) returning long long previous: function(void) returning long : "conftest.c", line 104 "conftest.c", line 110: zero or negative subscript "conftest.c", line 115: warning: statement not reached cc: acomp failed for conftest.c configure:16795: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | /* end confdefs.h. */ | #include | | typedef time_t rbcv_conftest_target_type; | typedef long long rbcv_conftest_replace_type; | extern rbcv_conftest_target_type rbcv_conftest_var; | extern rbcv_conftest_replace_type rbcv_conftest_var; | extern rbcv_conftest_target_type rbcv_conftest_func(void); | extern rbcv_conftest_replace_type rbcv_conftest_func(void); | | int | main () | { | static int test_array [1 - 2 * !(sizeof(rbcv_conftest_target_type) == sizeof(rbcv_conftest_replace_type))]; | test_array [0] = 0; | return test_array [0]; | | ; | return 0; | } configure:16795: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 115: warning: statement not reached configure:16795: $? = 0 configure:16818: result: LONG configure:16871: checking for dev_t configure:16871: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:16871: $? = 0 configure:16871: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 139: syntax error before or at: ) cc: acomp failed for conftest.c configure:16871: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | /* 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 ((dev_t))) | return 0; | ; | return 0; | } configure:16871: result: yes configure:16883: checking for convertible type of dev_t configure:16911: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 145: warning: statement not reached configure:16911: $? = 0 configure:16941: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 140: identifier redeclared: rbcv_conftest_var current : unsigned long long previous: unsigned long : "conftest.c", line 139 "conftest.c", line 142: identifier redeclared: rbcv_conftest_func current : function(void) returning unsigned long long previous: function(void) returning unsigned long : "conftest.c", line 141 "conftest.c", line 147: zero or negative subscript "conftest.c", line 152: warning: statement not reached cc: acomp failed for conftest.c configure:16941: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 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 | typedef dev_t rbcv_conftest_target_type; | typedef unsigned long long rbcv_conftest_replace_type; | extern rbcv_conftest_target_type rbcv_conftest_var; | extern rbcv_conftest_replace_type rbcv_conftest_var; | extern rbcv_conftest_target_type rbcv_conftest_func(void); | extern rbcv_conftest_replace_type rbcv_conftest_func(void); | | int | main () | { | static int test_array [1 - 2 * !(sizeof(rbcv_conftest_target_type) == sizeof(rbcv_conftest_replace_type))]; | test_array [0] = 0; | return test_array [0]; | | ; | return 0; | } configure:16941: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 152: warning: statement not reached configure:16941: $? = 0 configure:16964: result: ULONG configure:17017: checking for mode_t configure:17017: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:17017: $? = 0 configure:17017: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 114: syntax error before or at: ) cc: acomp failed for conftest.c configure:17017: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | /* end confdefs.h. */ | #include | | int | main () | { | if (sizeof ((mode_t))) | return 0; | ; | return 0; | } configure:17017: result: yes configure:17030: checking for convertible type of mode_t configure:17059: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 120: warning: statement not reached configure:17059: $? = 0 configure:17090: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 115: identifier redeclared: rbcv_conftest_var current : unsigned long long previous: unsigned long : "conftest.c", line 114 "conftest.c", line 117: identifier redeclared: rbcv_conftest_func current : function(void) returning unsigned long long previous: function(void) returning unsigned long : "conftest.c", line 116 "conftest.c", line 122: zero or negative subscript "conftest.c", line 127: warning: statement not reached cc: acomp failed for conftest.c configure:17090: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | /* end confdefs.h. */ | #include | | typedef mode_t rbcv_conftest_target_type; | typedef unsigned long long rbcv_conftest_replace_type; | extern rbcv_conftest_target_type rbcv_conftest_var; | extern rbcv_conftest_replace_type rbcv_conftest_var; | extern rbcv_conftest_target_type rbcv_conftest_func(void); | extern rbcv_conftest_replace_type rbcv_conftest_func(void); | | int | main () | { | static int test_array [1 - 2 * !(sizeof(rbcv_conftest_target_type) == sizeof(rbcv_conftest_replace_type))]; | test_array [0] = 0; | return test_array [0]; | | ; | return 0; | } configure:17090: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 127: warning: statement not reached configure:17090: $? = 0 configure:17113: result: ULONG configure:17166: checking for rlim_t configure:17166: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:17166: $? = 0 configure:17166: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 128: syntax error before or at: ) cc: acomp failed for conftest.c configure:17166: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | /* end confdefs.h. */ | | #ifdef HAVE_SYS_TYPES_H | #include | #endif | #ifdef HAVE_SYS_TYPES_H | #include | #endif | #include | | | int | main () | { | if (sizeof ((rlim_t))) | return 0; | ; | return 0; | } configure:17166: result: yes configure:17187: checking for convertible type of rlim_t configure:17224: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 134: warning: statement not reached configure:17224: $? = 0 configure:17263: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 141: warning: statement not reached configure:17263: $? = 0 configure:17286: result: ULL configure:17339: checking for off_t configure:17339: result: yes configure:17351: checking for convertible type of off_t configure:17379: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 158: zero or negative subscript "conftest.c", line 163: warning: statement not reached cc: acomp failed for conftest.c configure:17379: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 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 * !((off_t)-1 > 0)]; | test_array [0] = 0; | return test_array [0]; | | ; | return 0; | } configure:17409: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 170: warning: statement not reached configure:17409: $? = 0 configure:17432: result: LL configure:17485: checking for clockid_t configure:17485: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:17485: $? = 0 configure:17485: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 137: syntax error before or at: ) cc: acomp failed for conftest.c configure:17485: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | /* end confdefs.h. */ | #ifdef HAVE_TIME_H | # include | #endif | #ifdef HAVE_SYS_TIME_H | # include | #endif | | int | main () | { | if (sizeof ((clockid_t))) | return 0; | ; | return 0; | } configure:17485: result: yes configure:17503: checking for convertible type of clockid_t configure:17537: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 138: zero or negative subscript "conftest.c", line 143: warning: statement not reached cc: acomp failed for conftest.c configure:17537: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | /* end confdefs.h. */ | #ifdef HAVE_TIME_H | # include | #endif | #ifdef HAVE_SYS_TIME_H | # include | #endif | | int | main () | { | static int test_array [1 - 2 * !((clockid_t)-1 > 0)]; | test_array [0] = 0; | return test_array [0]; | | ; | return 0; | } configure:17573: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 138: identifier redeclared: rbcv_conftest_var current : long long previous: int : "conftest.c", line 137 "conftest.c", line 140: identifier redeclared: rbcv_conftest_func current : function(void) returning long long previous: function(void) returning int : "conftest.c", line 139 "conftest.c", line 145: zero or negative subscript "conftest.c", line 150: warning: statement not reached cc: acomp failed for conftest.c configure:17573: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | /* end confdefs.h. */ | #ifdef HAVE_TIME_H | # include | #endif | #ifdef HAVE_SYS_TIME_H | # include | #endif | | typedef clockid_t rbcv_conftest_target_type; | typedef long long rbcv_conftest_replace_type; | extern rbcv_conftest_target_type rbcv_conftest_var; | extern rbcv_conftest_replace_type rbcv_conftest_var; | extern rbcv_conftest_target_type rbcv_conftest_func(void); | extern rbcv_conftest_replace_type rbcv_conftest_func(void); | | int | main () | { | static int test_array [1 - 2 * !(sizeof(rbcv_conftest_target_type) == sizeof(rbcv_conftest_replace_type))]; | test_array [0] = 0; | return test_array [0]; | | ; | return 0; | } configure:17573: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 138: identifier redeclared: rbcv_conftest_var current : long previous: int : "conftest.c", line 137 "conftest.c", line 140: identifier redeclared: rbcv_conftest_func current : function(void) returning long previous: function(void) returning int : "conftest.c", line 139 "conftest.c", line 150: warning: statement not reached cc: acomp failed for conftest.c configure:17573: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | /* end confdefs.h. */ | #ifdef HAVE_TIME_H | # include | #endif | #ifdef HAVE_SYS_TIME_H | # include | #endif | | typedef clockid_t rbcv_conftest_target_type; | typedef long rbcv_conftest_replace_type; | extern rbcv_conftest_target_type rbcv_conftest_var; | extern rbcv_conftest_replace_type rbcv_conftest_var; | extern rbcv_conftest_target_type rbcv_conftest_func(void); | extern rbcv_conftest_replace_type rbcv_conftest_func(void); | | int | main () | { | static int test_array [1 - 2 * !(sizeof(rbcv_conftest_target_type) == sizeof(rbcv_conftest_replace_type))]; | test_array [0] = 0; | return test_array [0]; | | ; | return 0; | } configure:17573: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 150: warning: statement not reached configure:17573: $? = 0 configure:17596: result: INT configure:17653: checking for variable length macro configure:17672: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:17672: $? = 0 configure:17679: result: yes configure:17696: checking if _Alignof() works configure:17747: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 154: warning: implicit function declaration: _Alignof "conftest.c", line 154: syntax error before or at: double "conftest.c", line 157: undefined symbol: conftest_ary "conftest.c", line 157: cannot dereference non-pointer type "conftest.c", line 161: cannot recover from previous errors cc: acomp failed for conftest.c configure:17747: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | /* end confdefs.h. */ | | #ifdef HAVE_STDALIGN_H | #include | #endif | #ifdef STDC_HEADERS | #include | #endif | #ifndef __GNUC__ | #define __extension__ | #endif | | int | main () | { | | typedef struct conftest_tag { | char _; | double d; | } T; | static int conftest_ary[ | offsetof(T, d) == __extension__ _Alignof(double) | ? 1 : -1 | ]; | return conftest_ary[0]; | | ; | return 0; | } configure:17767: result: no configure:17777: checking for CONSTFUNC function attribute configure:17821: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 configure:17821: $? = 0 configure:17839: result: __attribute__ ((__const__)) x configure:17852: checking for PUREFUNC function attribute configure:17896: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 configure:17896: $? = 0 configure:17914: result: __attribute__ ((__pure__)) x configure:17927: checking for NORETURN function attribute configure:17971: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 configure:17971: $? = 0 configure:17989: result: __attribute__ ((__noreturn__)) x configure:18002: checking for DEPRECATED function attribute configure:18046: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 145: warning: attribute "__deprecated__" is unknown, ignored configure:18046: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | /* end confdefs.h. */ | | | #define DEPRECATED(x) __attribute__ ((__deprecated__)) x | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | DEPRECATED(x); | int | main () | { | | ; | return 0; | } configure:18046: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 145: warning: attribute "__deprecated__" is unknown, ignored configure:18046: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | /* end confdefs.h. */ | | | #define DEPRECATED(x) x __attribute__ ((__deprecated__)) | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | DEPRECATED(x); | int | main () | { | | ; | return 0; | } configure:18046: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 145: warning: old-style declaration or incorrect type for: __declspec "conftest.c", line 145: parameter not in identifier list: conftest_attribute_check "conftest.c", line 147: parameter not in identifier list: main "conftest.c", line 148: syntax error before or at: { cc: acomp failed for conftest.c configure:18046: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | /* end confdefs.h. */ | | | #define DEPRECATED(x) __declspec(__deprecated__) x | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | DEPRECATED(x); | int | main () | { | | ; | return 0; | } configure:18046: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 configure:18046: $? = 0 configure:18064: result: x configure:18077: checking for DEPRECATED_BY function attribute configure:18121: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 145: warning: attribute "__deprecated__" is unknown, ignored configure:18121: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | /* end confdefs.h. */ | | | #define DEPRECATED_BY(n,x) __attribute__ ((__deprecated__("by "#n))) x | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | DEPRECATED_BY(n,x); | int | main () | { | | ; | return 0; | } configure:18121: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 145: warning: attribute "__deprecated__" is unknown, ignored configure:18121: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | /* end confdefs.h. */ | | | #define DEPRECATED_BY(n,x) x __attribute__ ((__deprecated__("by "#n))) | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | DEPRECATED_BY(n,x); | int | main () | { | | ; | return 0; | } configure:18121: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 145: syntax error before or at: ( "conftest.c", line 145: warning: old-style declaration or incorrect type for: __declspec cc: acomp failed for conftest.c configure:18121: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | /* end confdefs.h. */ | | | #define DEPRECATED_BY(n,x) __declspec(__deprecated__("by "#n)) x | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | DEPRECATED_BY(n,x); | int | main () | { | | ; | return 0; | } configure:18121: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 configure:18121: $? = 0 configure:18139: result: x configure:18152: checking for NOINLINE function attribute configure:18196: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 configure:18196: $? = 0 configure:18214: result: __attribute__ ((__noinline__)) x configure:18227: checking for ALWAYS_INLINE function attribute configure:18271: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 configure:18271: $? = 0 configure:18289: result: __attribute__ ((__always_inline__)) x configure:18302: checking for NO_SANITIZE function attribute configure:18346: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 147: warning: attribute "__no_sanitize__" is unknown, ignored configure:18346: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | /* end confdefs.h. */ | | | #define NO_SANITIZE(san, x) __attribute__ ((__no_sanitize__(san))) x | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | NO_SANITIZE(san, x); | int | main () | { | | ; | return 0; | } configure:18346: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 147: warning: attribute "__no_sanitize__" is unknown, ignored configure:18346: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | /* end confdefs.h. */ | | | #define NO_SANITIZE(san, x) x __attribute__ ((__no_sanitize__(san))) | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | NO_SANITIZE(san, x); | int | main () | { | | ; | return 0; | } configure:18346: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 147: syntax error before or at: ( "conftest.c", line 147: warning: old-style declaration or incorrect type for: __declspec cc: acomp failed for conftest.c configure:18346: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | /* end confdefs.h. */ | | | #define NO_SANITIZE(san, x) __declspec(__no_sanitize__(san)) x | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | NO_SANITIZE(san, x); | int | main () | { | | ; | return 0; | } configure:18346: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 configure:18346: $? = 0 configure:18364: result: x configure:18377: checking for NO_SANITIZE_ADDRESS function attribute configure:18421: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 147: warning: attribute "__no_sanitize_address__" is unknown, ignored configure:18421: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | /* end confdefs.h. */ | | | #define NO_SANITIZE_ADDRESS(x) __attribute__ ((__no_sanitize_address__)) x | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | NO_SANITIZE_ADDRESS(x); | int | main () | { | | ; | return 0; | } configure:18421: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 147: warning: attribute "__no_sanitize_address__" is unknown, ignored configure:18421: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | /* end confdefs.h. */ | | | #define NO_SANITIZE_ADDRESS(x) x __attribute__ ((__no_sanitize_address__)) | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | NO_SANITIZE_ADDRESS(x); | int | main () | { | | ; | return 0; | } configure:18421: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 147: warning: old-style declaration or incorrect type for: __declspec "conftest.c", line 147: parameter not in identifier list: conftest_attribute_check "conftest.c", line 149: parameter not in identifier list: main "conftest.c", line 150: syntax error before or at: { cc: acomp failed for conftest.c configure:18421: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | /* end confdefs.h. */ | | | #define NO_SANITIZE_ADDRESS(x) __declspec(__no_sanitize_address__) x | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | NO_SANITIZE_ADDRESS(x); | int | main () | { | | ; | return 0; | } configure:18421: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 configure:18421: $? = 0 configure:18439: result: x configure:18452: checking for NO_ADDRESS_SAFETY_ANALYSIS function attribute configure:18496: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 147: warning: attribute "__no_address_safety_analysis__" is unknown, ignored configure:18496: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | /* end confdefs.h. */ | | | #define NO_ADDRESS_SAFETY_ANALYSIS(x) __attribute__ ((__no_address_safety_analysis__)) x | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | NO_ADDRESS_SAFETY_ANALYSIS(x); | int | main () | { | | ; | return 0; | } configure:18496: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 147: warning: attribute "__no_address_safety_analysis__" is unknown, ignored configure:18496: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | /* end confdefs.h. */ | | | #define NO_ADDRESS_SAFETY_ANALYSIS(x) x __attribute__ ((__no_address_safety_analysis__)) | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | NO_ADDRESS_SAFETY_ANALYSIS(x); | int | main () | { | | ; | return 0; | } configure:18496: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 147: warning: old-style declaration or incorrect type for: __declspec "conftest.c", line 147: parameter not in identifier list: conftest_attribute_check "conftest.c", line 149: parameter not in identifier list: main "conftest.c", line 150: syntax error before or at: { cc: acomp failed for conftest.c configure:18496: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | /* end confdefs.h. */ | | | #define NO_ADDRESS_SAFETY_ANALYSIS(x) __declspec(__no_address_safety_analysis__) x | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | NO_ADDRESS_SAFETY_ANALYSIS(x); | int | main () | { | | ; | return 0; | } configure:18496: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 configure:18496: $? = 0 configure:18514: result: x configure:18527: checking for WARN_UNUSED_RESULT function attribute configure:18571: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 147: warning: attribute "__warn_unused_result__" is unknown, ignored configure:18571: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | /* end confdefs.h. */ | | | #define WARN_UNUSED_RESULT(x) __attribute__ ((__warn_unused_result__)) x | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | WARN_UNUSED_RESULT(x); | int | main () | { | | ; | return 0; | } configure:18571: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 147: warning: attribute "__warn_unused_result__" is unknown, ignored configure:18571: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | /* end confdefs.h. */ | | | #define WARN_UNUSED_RESULT(x) x __attribute__ ((__warn_unused_result__)) | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | WARN_UNUSED_RESULT(x); | int | main () | { | | ; | return 0; | } configure:18571: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 147: warning: old-style declaration or incorrect type for: __declspec "conftest.c", line 147: parameter not in identifier list: conftest_attribute_check "conftest.c", line 149: parameter not in identifier list: main "conftest.c", line 150: syntax error before or at: { cc: acomp failed for conftest.c configure:18571: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | /* end confdefs.h. */ | | | #define WARN_UNUSED_RESULT(x) __declspec(__warn_unused_result__) x | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | WARN_UNUSED_RESULT(x); | int | main () | { | | ; | return 0; | } configure:18571: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 configure:18571: $? = 0 configure:18589: result: x configure:18602: checking for MAYBE_UNUSED function attribute configure:18646: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 147: warning: attribute "__unused__" is unknown, ignored configure:18646: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | /* end confdefs.h. */ | | | #define MAYBE_UNUSED(x) __attribute__ ((__unused__)) x | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | MAYBE_UNUSED(x); | int | main () | { | | ; | return 0; | } configure:18646: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 147: warning: attribute "__unused__" is unknown, ignored configure:18646: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | /* end confdefs.h. */ | | | #define MAYBE_UNUSED(x) x __attribute__ ((__unused__)) | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | MAYBE_UNUSED(x); | int | main () | { | | ; | return 0; | } configure:18646: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 147: warning: old-style declaration or incorrect type for: __declspec "conftest.c", line 147: parameter not in identifier list: conftest_attribute_check "conftest.c", line 149: parameter not in identifier list: main "conftest.c", line 150: syntax error before or at: { cc: acomp failed for conftest.c configure:18646: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | /* end confdefs.h. */ | | | #define MAYBE_UNUSED(x) __declspec(__unused__) x | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | MAYBE_UNUSED(x); | int | main () | { | | ; | return 0; | } configure:18646: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 configure:18646: $? = 0 configure:18664: result: x configure:18677: checking for ERRORFUNC function attribute configure:18721: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 147: warning: attribute "__error__" is unknown, ignored configure:18721: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | /* end confdefs.h. */ | | | #define ERRORFUNC(mesg,x) __attribute__ ((__error__ mesg)) x | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | ERRORFUNC(mesg,x); | int | main () | { | | ; | return 0; | } configure:18721: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 147: warning: attribute "__error__" is unknown, ignored configure:18721: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | /* end confdefs.h. */ | | | #define ERRORFUNC(mesg,x) x __attribute__ ((__error__ mesg)) | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | ERRORFUNC(mesg,x); | int | main () | { | | ; | return 0; | } configure:18721: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 147: syntax error before or at: ( "conftest.c", line 147: warning: old-style declaration or incorrect type for: __declspec cc: acomp failed for conftest.c configure:18721: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | /* end confdefs.h. */ | | | #define ERRORFUNC(mesg,x) __declspec(__error__ mesg) x | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | ERRORFUNC(mesg,x); | int | main () | { | | ; | return 0; | } configure:18721: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 configure:18721: $? = 0 configure:18739: result: x configure:18752: checking for WARNINGFUNC function attribute configure:18796: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 147: warning: attribute "__warning__" is unknown, ignored configure:18796: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | /* end confdefs.h. */ | | | #define WARNINGFUNC(mesg,x) __attribute__ ((__warning__ mesg)) x | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | WARNINGFUNC(mesg,x); | int | main () | { | | ; | return 0; | } configure:18796: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 147: warning: attribute "__warning__" is unknown, ignored configure:18796: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | /* end confdefs.h. */ | | | #define WARNINGFUNC(mesg,x) x __attribute__ ((__warning__ mesg)) | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | WARNINGFUNC(mesg,x); | int | main () | { | | ; | return 0; | } configure:18796: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 147: syntax error before or at: ( "conftest.c", line 147: warning: old-style declaration or incorrect type for: __declspec cc: acomp failed for conftest.c configure:18796: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | /* end confdefs.h. */ | | | #define WARNINGFUNC(mesg,x) __declspec(__warning__ mesg) x | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | WARNINGFUNC(mesg,x); | int | main () | { | | ; | return 0; | } configure:18796: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 configure:18796: $? = 0 configure:18814: result: x configure:18827: checking for WEAK function attribute configure:18871: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 configure:18871: $? = 0 configure:18889: result: __attribute__ ((__weak__)) x configure:18908: checking for __attribute__((__depreacted__(msg))) in C++ configure:18943: CC -c -U_XOPEN_SOURCE -D_XOPEN_SOURCE=600 conftest.cpp >&5 "conftest.cpp", line 145: Warning: attribute __deprecated__ is unsupported and will be skipped.. 1 Warning(s) detected. configure:18943: $? = 0 configure:18967: result: yes configure:18975: checking for std::nullptr_t configure:18998: CC -c -U_XOPEN_SOURCE -D_XOPEN_SOURCE=600 conftest.cpp >&5 "conftest.cpp", line 146: Error: nullptr_t is not a member of std. "conftest.cpp", line 146: Error: nullptr is not defined. 2 Error(s) detected. configure:18998: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | /* end confdefs.h. */ | #include | int | main () | { | static std::nullptr_t const *const conftest = nullptr; | ; | return 0; | } configure:19011: result: no configure:19020: checking for FUNC_STDCALL function attribute configure:19066: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 152: warning: attribute "__stdcall__" is unknown, ignored configure:19066: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | /* end confdefs.h. */ | | | #define FUNC_STDCALL(x) __attribute__ ((__stdcall__)) x | | | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | FUNC_STDCALL(x); | int | main () | { | | ; | return 0; | } configure:19066: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 152: warning: attribute "__stdcall__" is unknown, ignored configure:19066: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | /* end confdefs.h. */ | | | #define FUNC_STDCALL(x) x __attribute__ ((__stdcall__)) | | | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | FUNC_STDCALL(x); | int | main () | { | | ; | return 0; | } configure:19066: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 152: warning: old-style declaration or incorrect type for: __declspec "conftest.c", line 152: parameter not in identifier list: conftest_attribute_check "conftest.c", line 154: parameter not in identifier list: main "conftest.c", line 155: syntax error before or at: { cc: acomp failed for conftest.c configure:19066: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | /* end confdefs.h. */ | | | #define FUNC_STDCALL(x) __declspec(__stdcall__) x | | | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | FUNC_STDCALL(x); | int | main () | { | | ; | return 0; | } configure:19066: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 configure:19066: $? = 0 configure:19084: result: x configure:19103: checking for FUNC_CDECL function attribute configure:19149: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 152: warning: attribute "__cdecl__" is unknown, ignored configure:19149: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | /* end confdefs.h. */ | | | #define FUNC_CDECL(x) __attribute__ ((__cdecl__)) x | | | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | FUNC_CDECL(x); | int | main () | { | | ; | return 0; | } configure:19149: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 152: warning: attribute "__cdecl__" is unknown, ignored configure:19149: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | /* end confdefs.h. */ | | | #define FUNC_CDECL(x) x __attribute__ ((__cdecl__)) | | | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | FUNC_CDECL(x); | int | main () | { | | ; | return 0; | } configure:19149: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 152: warning: old-style declaration or incorrect type for: __declspec "conftest.c", line 152: parameter not in identifier list: conftest_attribute_check "conftest.c", line 154: parameter not in identifier list: main "conftest.c", line 155: syntax error before or at: { cc: acomp failed for conftest.c configure:19149: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | /* end confdefs.h. */ | | | #define FUNC_CDECL(x) __declspec(__cdecl__) x | | | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | FUNC_CDECL(x); | int | main () | { | | ; | return 0; | } configure:19149: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 configure:19149: $? = 0 configure:19167: result: x configure:19186: checking for FUNC_FASTCALL function attribute configure:19232: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 152: warning: attribute "__fastcall__" is unknown, ignored configure:19232: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | /* end confdefs.h. */ | | | #define FUNC_FASTCALL(x) __attribute__ ((__fastcall__)) x | | | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | FUNC_FASTCALL(x); | int | main () | { | | ; | return 0; | } configure:19232: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 152: warning: attribute "__fastcall__" is unknown, ignored configure:19232: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | /* end confdefs.h. */ | | | #define FUNC_FASTCALL(x) x __attribute__ ((__fastcall__)) | | | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | FUNC_FASTCALL(x); | int | main () | { | | ; | return 0; | } configure:19232: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 152: warning: old-style declaration or incorrect type for: __declspec "conftest.c", line 152: parameter not in identifier list: conftest_attribute_check "conftest.c", line 154: parameter not in identifier list: main "conftest.c", line 155: syntax error before or at: { cc: acomp failed for conftest.c configure:19232: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | /* end confdefs.h. */ | | | #define FUNC_FASTCALL(x) __declspec(__fastcall__) x | | | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | FUNC_FASTCALL(x); | int | main () | { | | ; | return 0; | } configure:19232: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 configure:19232: $? = 0 configure:19250: result: x configure:19269: checking for FUNC_UNOPTIMIZED function attribute configure:19313: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 150: warning: attribute "__optimize__" is unknown, ignored configure:19313: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | /* end confdefs.h. */ | | | #define FUNC_UNOPTIMIZED(x) __attribute__ ((__optimize__("O0"))) x | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | FUNC_UNOPTIMIZED(x); | int | main () | { | | ; | return 0; | } configure:19313: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 150: warning: attribute "__optimize__" is unknown, ignored configure:19313: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | /* end confdefs.h. */ | | | #define FUNC_UNOPTIMIZED(x) x __attribute__ ((__optimize__("O0"))) | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | FUNC_UNOPTIMIZED(x); | int | main () | { | | ; | return 0; | } configure:19313: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 150: syntax error before or at: ( "conftest.c", line 150: warning: old-style declaration or incorrect type for: __declspec cc: acomp failed for conftest.c configure:19313: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | /* end confdefs.h. */ | | | #define FUNC_UNOPTIMIZED(x) __declspec(__optimize__("O0")) x | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | FUNC_UNOPTIMIZED(x); | int | main () | { | | ; | return 0; | } configure:19313: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 configure:19313: $? = 0 configure:19331: result: x configure:19344: checking for FUNC_MINIMIZED function attribute configure:19388: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 150: warning: attribute "__optimize__" is unknown, ignored configure:19388: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | /* end confdefs.h. */ | | | #define FUNC_MINIMIZED(x) __attribute__ ((__optimize__("-Os","-fomit-frame-pointer"))) x | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | FUNC_MINIMIZED(x); | int | main () | { | | ; | return 0; | } configure:19388: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 150: warning: attribute "__optimize__" is unknown, ignored configure:19388: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | /* end confdefs.h. */ | | | #define FUNC_MINIMIZED(x) x __attribute__ ((__optimize__("-Os","-fomit-frame-pointer"))) | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | FUNC_MINIMIZED(x); | int | main () | { | | ; | return 0; | } configure:19388: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 150: syntax error before or at: ( "conftest.c", line 150: warning: old-style declaration or incorrect type for: __declspec cc: acomp failed for conftest.c configure:19388: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | /* end confdefs.h. */ | | | #define FUNC_MINIMIZED(x) __declspec(__optimize__("-Os","-fomit-frame-pointer")) x | | #define x int conftest_attribute_check(void) | | #define mesg ("") | #define san "address" | FUNC_MINIMIZED(x); | int | main () | { | | ; | return 0; | } configure:19388: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 configure:19388: $? = 0 configure:19406: result: x configure:19547: checking for __builtin_unreachable configure:19575: cc -D_STDC_C99= -o conftest -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 146: warning: implicit function declaration: __builtin_unreachable Undefined first referenced symbol in file __builtin_unreachable conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:19575: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | /* end confdefs.h. */ | volatile int zero; | int | main () | { | if (zero) __builtin_unreachable(); | ; | return 0; | } configure:19596: result: no configure:19607: checking for exported function attribute configure:19640: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 configure:19640: $? = 0 configure:19658: result: __attribute__ ((__visibility__("default"))) configure:19669: checking for RUBY_FUNC_NONNULL function attribute configure:19715: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 153: warning: attribute "__nonnull__" is unknown, ignored configure:19715: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | /* end confdefs.h. */ | | | #define RUBY_FUNC_NONNULL(n,x) __attribute__ ((__nonnull__(n))) x | | | #define x int conftest_attribute_check(void *p) | #define n 1 | | #define mesg ("") | #define san "address" | RUBY_FUNC_NONNULL(n,x); | int | main () | { | | ; | return 0; | } configure:19715: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 153: warning: attribute "__nonnull__" is unknown, ignored configure:19715: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | /* end confdefs.h. */ | | | #define RUBY_FUNC_NONNULL(n,x) x __attribute__ ((__nonnull__(n))) | | | #define x int conftest_attribute_check(void *p) | #define n 1 | | #define mesg ("") | #define san "address" | RUBY_FUNC_NONNULL(n,x); | int | main () | { | | ; | return 0; | } configure:19715: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 153: syntax error before or at: ( "conftest.c", line 153: warning: old-style declaration or incorrect type for: __declspec cc: acomp failed for conftest.c configure:19715: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | /* end confdefs.h. */ | | | #define RUBY_FUNC_NONNULL(n,x) __declspec(__nonnull__(n)) x | | | #define x int conftest_attribute_check(void *p) | #define n 1 | | #define mesg ("") | #define san "address" | RUBY_FUNC_NONNULL(n,x); | int | main () | { | | ; | return 0; | } configure:19715: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 configure:19715: $? = 0 configure:19733: result: x configure:19761: checking for function name string predefined identifier configure:19799: cc -D_STDC_C99= -o conftest -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 configure:19799: $? = 0 configure:19821: result: __func__ configure:19832: checking if enum over int is allowed configure:19883: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 152: zero or negative subscript cc: acomp failed for conftest.c configure:19883: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | /* end confdefs.h. */ | | | #include | enum {conftest_max = ULLONG_MAX}; | | int | main () | { | static int test_array [1 - 2 * !( | (conftest_max == ULLONG_MAX) && | (sizeof(conftest_max) == sizeof(unsigned long long)) | | )]; | test_array [0] = 0; | return test_array [0]; | | ; | return 0; | } configure:19904: result: no configure:19913: checking whether sys_nerr is declared configure:19913: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 186: undefined symbol: sys_nerr cc: acomp failed for conftest.c configure:19913: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | /* 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 | | int | main () | { | #ifndef sys_nerr | #ifdef __cplusplus | (void) sys_nerr; | #else | (void) sys_nerr; | #endif | #endif | | ; | return 0; | } configure:19913: result: no configure:19927: checking whether getenv is declared configure:19927: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:19927: $? = 0 configure:19927: result: yes configure:19974: checking for size_t configure:19974: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:19974: $? = 0 configure:19974: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 182: syntax error before or at: ) cc: acomp failed for conftest.c configure:19974: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 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:19974: result: yes configure:20000: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 156: warning: statement not reached configure:20000: $? = 0 configure:20109: checking size of size_t configure:20114: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 178: warning: statement not reached configure:20114: $? = 0 configure:20114: ./conftest configure:20114: $? = 0 configure:20129: result: 4 configure:20244: checking size of ptrdiff_t configure:20249: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 179: warning: statement not reached configure:20249: $? = 0 configure:20249: ./conftest configure:20249: $? = 0 configure:20264: result: 4 configure:20277: checking for printf prefix for size_t configure:20333: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 configure:20333: $? = 0 configure:20350: result: z configure:20362: checking for printf prefix for ptrdiff_t configure:20418: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 configure:20418: $? = 0 configure:20435: result: t configure:20446: checking for struct stat.st_blksize configure:20446: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:20446: $? = 0 configure:20446: result: yes configure:20456: checking for struct stat.st_blocks configure:20456: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:20456: $? = 0 configure:20456: result: yes configure:20466: checking for struct stat.st_rdev configure:20466: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:20466: $? = 0 configure:20466: result: yes configure:20478: checking size of struct stat.st_size configure:20508: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 168: warning: statement not reached configure:20508: $? = 0 configure:20545: result: SIZEOF_OFF_T configure:20580: checking size of struct stat.st_blocks configure:20610: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 169: warning: statement not reached configure:20610: $? = 0 configure:20647: result: SIZEOF_OFF_T configure:20682: checking size of struct stat.st_ino configure:20712: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 165: zero or negative subscript "conftest.c", line 170: warning: statement not reached cc: acomp failed for conftest.c configure:20712: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | /* end confdefs.h. */ | #include | | typedef struct stat ac__type_sizeof_; | static ac__type_sizeof_ *rbcv_ptr; | #define SIZEOF_STRUCT_STAT_ST_INO sizeof((*rbcv_ptr).st_ino) | | | int | main () | { | static int test_array [1 - 2 * !(SIZEOF_STRUCT_STAT_ST_INO == sizeof(long))]; | test_array [0] = 0; | return test_array [0]; | | ; | return 0; | } configure:20712: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 170: warning: statement not reached configure:20712: $? = 0 configure:20749: result: SIZEOF_LONG_LONG configure:20780: checking for struct stat.st_atim configure:20780: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 193: controlling expressions must have scalar type cc: acomp failed for conftest.c configure:20780: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | /* 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 struct stat ac_aggr; | if (ac_aggr.st_atim) | return 0; | ; | return 0; | } configure:20780: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:20780: $? = 0 configure:20780: result: yes configure:20790: checking for struct stat.st_atimespec configure:20790: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 194: undefined struct/union member: st_atimespec cc: acomp failed for conftest.c configure:20790: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 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 struct stat ac_aggr; | if (ac_aggr.st_atimespec) | return 0; | ; | return 0; | } configure:20790: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 194: undefined struct/union member: st_atimespec cc: acomp failed for conftest.c configure:20790: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 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 struct stat ac_aggr; | if (sizeof ac_aggr.st_atimespec) | return 0; | ; | return 0; | } configure:20790: result: no configure:20800: checking for struct stat.st_atimensec configure:20800: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 194: undefined struct/union member: st_atimensec cc: acomp failed for conftest.c configure:20800: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 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 struct stat ac_aggr; | if (ac_aggr.st_atimensec) | return 0; | ; | return 0; | } configure:20800: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 194: undefined struct/union member: st_atimensec cc: acomp failed for conftest.c configure:20800: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 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 struct stat ac_aggr; | if (sizeof ac_aggr.st_atimensec) | return 0; | ; | return 0; | } configure:20800: result: no configure:20810: checking for struct stat.st_mtim configure:20810: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 194: controlling expressions must have scalar type cc: acomp failed for conftest.c configure:20810: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 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 struct stat ac_aggr; | if (ac_aggr.st_mtim) | return 0; | ; | return 0; | } configure:20810: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:20810: $? = 0 configure:20810: result: yes configure:20820: checking for struct stat.st_mtimespec configure:20820: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 195: undefined struct/union member: st_mtimespec cc: acomp failed for conftest.c configure:20820: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 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 struct stat ac_aggr; | if (ac_aggr.st_mtimespec) | return 0; | ; | return 0; | } configure:20820: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 195: undefined struct/union member: st_mtimespec cc: acomp failed for conftest.c configure:20820: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 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 struct stat ac_aggr; | if (sizeof ac_aggr.st_mtimespec) | return 0; | ; | return 0; | } configure:20820: result: no configure:20830: checking for struct stat.st_mtimensec configure:20830: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 195: undefined struct/union member: st_mtimensec cc: acomp failed for conftest.c configure:20830: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 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 struct stat ac_aggr; | if (ac_aggr.st_mtimensec) | return 0; | ; | return 0; | } configure:20830: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 195: undefined struct/union member: st_mtimensec cc: acomp failed for conftest.c configure:20830: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 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 struct stat ac_aggr; | if (sizeof ac_aggr.st_mtimensec) | return 0; | ; | return 0; | } configure:20830: result: no configure:20840: checking for struct stat.st_ctim configure:20840: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 195: controlling expressions must have scalar type cc: acomp failed for conftest.c configure:20840: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 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 struct stat ac_aggr; | if (ac_aggr.st_ctim) | return 0; | ; | return 0; | } configure:20840: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:20840: $? = 0 configure:20840: result: yes configure:20850: checking for struct stat.st_ctimespec configure:20850: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 196: undefined struct/union member: st_ctimespec cc: acomp failed for conftest.c configure:20850: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 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 struct stat ac_aggr; | if (ac_aggr.st_ctimespec) | return 0; | ; | return 0; | } configure:20850: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 196: undefined struct/union member: st_ctimespec cc: acomp failed for conftest.c configure:20850: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 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 struct stat ac_aggr; | if (sizeof ac_aggr.st_ctimespec) | return 0; | ; | return 0; | } configure:20850: result: no configure:20860: checking for struct stat.st_ctimensec configure:20860: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 196: undefined struct/union member: st_ctimensec cc: acomp failed for conftest.c configure:20860: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 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 struct stat ac_aggr; | if (ac_aggr.st_ctimensec) | return 0; | ; | return 0; | } configure:20860: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 196: undefined struct/union member: st_ctimensec cc: acomp failed for conftest.c configure:20860: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 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 struct stat ac_aggr; | if (sizeof ac_aggr.st_ctimensec) | return 0; | ; | return 0; | } configure:20860: result: no configure:20870: checking for struct stat.st_birthtimespec configure:20870: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 196: undefined struct/union member: st_birthtimespec cc: acomp failed for conftest.c configure:20870: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 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 struct stat ac_aggr; | if (ac_aggr.st_birthtimespec) | return 0; | ; | return 0; | } configure:20870: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 196: undefined struct/union member: st_birthtimespec cc: acomp failed for conftest.c configure:20870: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 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 struct stat ac_aggr; | if (sizeof ac_aggr.st_birthtimespec) | return 0; | ; | return 0; | } configure:20870: result: no configure:20881: checking for struct statx.stx_btime configure:20881: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 195: incomplete struct/union/enum statx: ac_aggr "conftest.c", line 196: undefined struct/union member: stx_btime cc: acomp failed for conftest.c configure:20881: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 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 struct statx ac_aggr; | if (ac_aggr.stx_btime) | return 0; | ; | return 0; | } configure:20881: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 195: incomplete struct/union/enum statx: ac_aggr "conftest.c", line 196: undefined struct/union member: stx_btime cc: acomp failed for conftest.c configure:20881: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 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 struct statx ac_aggr; | if (sizeof ac_aggr.stx_btime) | return 0; | ; | return 0; | } configure:20881: result: no configure:20893: checking for struct timeval configure:20893: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:20893: $? = 0 configure:20893: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 169: syntax error before or at: ) cc: acomp failed for conftest.c configure:20893: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | /* end confdefs.h. */ | #ifdef HAVE_TIME_H | #include | #endif | #ifdef HAVE_SYS_TIME_H | #include | #endif | | int | main () | { | if (sizeof ((struct timeval))) | return 0; | ; | return 0; | } configure:20893: result: yes configure:20914: checking size of struct timeval.tv_sec configure:20949: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 180: warning: statement not reached configure:20949: $? = 0 configure:20991: result: SIZEOF_TIME_T configure:21043: checking for struct timespec configure:21043: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:21043: $? = 0 configure:21043: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 171: syntax error before or at: ) cc: acomp failed for conftest.c configure:21043: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | /* end confdefs.h. */ | #ifdef HAVE_TIME_H | #include | #endif | #ifdef HAVE_SYS_TIME_H | #include | #endif | | int | main () | { | if (sizeof ((struct timespec))) | return 0; | ; | return 0; | } configure:21043: result: yes configure:21060: checking for struct timezone configure:21060: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:21060: $? = 0 configure:21060: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 172: syntax error before or at: ) cc: acomp failed for conftest.c configure:21060: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | /* end confdefs.h. */ | #ifdef HAVE_TIME_H | # include | #endif | #ifdef HAVE_SYS_TIME_H | # include | #endif | | int | main () | { | if (sizeof ((struct timezone))) | return 0; | ; | return 0; | } configure:21060: result: yes configure:21080: checking for fd_mask configure:21080: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:21080: $? = 0 configure:21080: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 203: syntax error before or at: ) cc: acomp failed for conftest.c configure:21080: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 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 | #ifdef HAVE_SYS_SELECT_H | # include | #endif | | int | main () | { | if (sizeof ((fd_mask))) | return 0; | ; | return 0; | } configure:21080: result: yes configure:21100: checking for int8_t configure:21117: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:21117: $? = 0 configure:21141: result: yes configure:21170: checking size of int8_t configure:21175: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 229: warning: statement not reached configure:21175: $? = 0 configure:21175: ./conftest configure:21175: $? = 0 configure:21190: result: 1 configure:21217: checking for uint8_t configure:21234: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:21234: $? = 0 configure:21258: result: yes configure:21287: checking size of uint8_t configure:21292: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 231: warning: statement not reached configure:21292: $? = 0 configure:21292: ./conftest configure:21292: $? = 0 configure:21307: result: 1 configure:21334: checking for int16_t configure:21351: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:21351: $? = 0 configure:21375: result: yes configure:21404: checking size of int16_t configure:21409: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 233: warning: statement not reached configure:21409: $? = 0 configure:21409: ./conftest configure:21409: $? = 0 configure:21424: result: 2 configure:21451: checking for uint16_t configure:21468: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:21468: $? = 0 configure:21492: result: yes configure:21521: checking size of uint16_t configure:21526: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 235: warning: statement not reached configure:21526: $? = 0 configure:21526: ./conftest configure:21526: $? = 0 configure:21541: result: 2 configure:21568: checking for int32_t configure:21585: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:21585: $? = 0 configure:21609: result: yes configure:21638: checking size of int32_t configure:21643: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 237: warning: statement not reached configure:21643: $? = 0 configure:21643: ./conftest configure:21643: $? = 0 configure:21658: result: 4 configure:21685: checking for uint32_t configure:21702: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:21702: $? = 0 configure:21726: result: yes configure:21755: checking size of uint32_t configure:21760: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 239: warning: statement not reached configure:21760: $? = 0 configure:21760: ./conftest configure:21760: $? = 0 configure:21775: result: 4 configure:21802: checking for int64_t configure:21819: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:21819: $? = 0 configure:21843: result: yes configure:21872: checking size of int64_t configure:21877: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 241: warning: statement not reached configure:21877: $? = 0 configure:21877: ./conftest configure:21877: $? = 0 configure:21892: result: 8 configure:21919: checking for uint64_t configure:21936: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:21936: $? = 0 configure:21960: result: yes configure:21989: checking size of uint64_t configure:21994: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 243: warning: statement not reached configure:21994: $? = 0 configure:21994: ./conftest configure:21994: $? = 0 configure:22009: result: 8 configure:22036: checking for int128_t configure:22053: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 213: warning: no explicit type given "conftest.c", line 213: syntax error before or at: t "conftest.c", line 213: warning: old-style declaration or incorrect type for: t cc: acomp failed for conftest.c configure:22053: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | /* 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 | typedef int128_t t; int s = sizeof(t) == 42; | int | main () | { | | ; | return 0; | } configure:22077: result: no configure:22153: checking for uint128_t configure:22170: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 213: warning: no explicit type given "conftest.c", line 213: syntax error before or at: t "conftest.c", line 213: warning: old-style declaration or incorrect type for: t cc: acomp failed for conftest.c configure:22170: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | /* 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 | typedef uint128_t t; int s = sizeof(t) == 42; | int | main () | { | | ; | return 0; | } configure:22194: result: no configure:22270: checking for intptr_t configure:22287: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:22287: $? = 0 configure:22311: result: yes configure:22439: checking size of intptr_t configure:22444: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 245: warning: statement not reached configure:22444: $? = 0 configure:22444: ./conftest configure:22444: $? = 0 configure:22459: result: 4 configure:22488: checking for uintptr_t configure:22505: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:22505: $? = 0 configure:22529: result: yes configure:22657: checking size of uintptr_t configure:22662: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 247: warning: statement not reached configure:22662: $? = 0 configure:22662: ./conftest configure:22662: $? = 0 configure:22677: result: 4 configure:22709: checking for printf prefix for intptr_t configure:22765: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 199: undefined symbol: intptr_t "conftest.c", line 199: syntax error before or at: 42 "conftest.c", line 200: syntax error before or at: 42 cc: acomp failed for conftest.c configure:22765: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | /* end confdefs.h. */ | #include | #include | #ifdef __GNUC__ | #if defined __MINGW_PRINTF_FORMAT | #define PRINTF_ARGS(decl, string_index, first_to_check) decl __attribute__((format(__MINGW_PRINTF_FORMAT, string_index, first_to_check))) | #else | #define PRINTF_ARGS(decl, string_index, first_to_check) decl __attribute__((format(printf, string_index, first_to_check))) | #endif | #else | #define PRINTF_ARGS(decl, string_index, first_to_check) decl | #endif | PRINTF_ARGS(void test_sprintf(const char*, ...), 1, 2); | int | main () | { | printf("%d", (intptr_t)42); | test_sprintf("%d", (intptr_t)42); | ; | return 0; | } configure:22765: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 199: undefined symbol: intptr_t "conftest.c", line 199: syntax error before or at: 42 "conftest.c", line 200: syntax error before or at: 42 cc: acomp failed for conftest.c configure:22765: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | /* end confdefs.h. */ | #include | #include | #ifdef __GNUC__ | #if defined __MINGW_PRINTF_FORMAT | #define PRINTF_ARGS(decl, string_index, first_to_check) decl __attribute__((format(__MINGW_PRINTF_FORMAT, string_index, first_to_check))) | #else | #define PRINTF_ARGS(decl, string_index, first_to_check) decl __attribute__((format(printf, string_index, first_to_check))) | #endif | #else | #define PRINTF_ARGS(decl, string_index, first_to_check) decl | #endif | PRINTF_ARGS(void test_sprintf(const char*, ...), 1, 2); | int | main () | { | printf("%lld", (intptr_t)42); | test_sprintf("%lld", (intptr_t)42); | ; | return 0; | } configure:22765: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 199: undefined symbol: intptr_t "conftest.c", line 199: syntax error before or at: 42 "conftest.c", line 200: syntax error before or at: 42 cc: acomp failed for conftest.c configure:22765: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | /* end confdefs.h. */ | #include | #include | #ifdef __GNUC__ | #if defined __MINGW_PRINTF_FORMAT | #define PRINTF_ARGS(decl, string_index, first_to_check) decl __attribute__((format(__MINGW_PRINTF_FORMAT, string_index, first_to_check))) | #else | #define PRINTF_ARGS(decl, string_index, first_to_check) decl __attribute__((format(printf, string_index, first_to_check))) | #endif | #else | #define PRINTF_ARGS(decl, string_index, first_to_check) decl | #endif | PRINTF_ARGS(void test_sprintf(const char*, ...), 1, 2); | int | main () | { | printf("%I64d", (intptr_t)42); | test_sprintf("%I64d", (intptr_t)42); | ; | return 0; | } configure:22765: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 199: undefined symbol: intptr_t "conftest.c", line 199: syntax error before or at: 42 "conftest.c", line 200: syntax error before or at: 42 cc: acomp failed for conftest.c configure:22765: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | /* end confdefs.h. */ | #include | #include | #ifdef __GNUC__ | #if defined __MINGW_PRINTF_FORMAT | #define PRINTF_ARGS(decl, string_index, first_to_check) decl __attribute__((format(__MINGW_PRINTF_FORMAT, string_index, first_to_check))) | #else | #define PRINTF_ARGS(decl, string_index, first_to_check) decl __attribute__((format(printf, string_index, first_to_check))) | #endif | #else | #define PRINTF_ARGS(decl, string_index, first_to_check) decl | #endif | PRINTF_ARGS(void test_sprintf(const char*, ...), 1, 2); | int | main () | { | printf("%ld", (intptr_t)42); | test_sprintf("%ld", (intptr_t)42); | ; | return 0; | } configure:22782: result: NONE configure:22795: checking for ssize_t configure:22813: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:22813: $? = 0 configure:22837: result: yes configure:22967: checking size of ssize_t configure:22972: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 218: warning: statement not reached configure:22972: $? = 0 configure:22972: ./conftest configure:22972: $? = 0 configure:22988: result: 4 configure:23019: checking for printf prefix for int64_t configure:23075: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 201: undefined symbol: int64_t "conftest.c", line 201: syntax error before or at: 42 "conftest.c", line 202: syntax error before or at: 42 cc: acomp failed for conftest.c configure:23075: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | /* end confdefs.h. */ | #include | #include | #ifdef __GNUC__ | #if defined __MINGW_PRINTF_FORMAT | #define PRINTF_ARGS(decl, string_index, first_to_check) decl __attribute__((format(__MINGW_PRINTF_FORMAT, string_index, first_to_check))) | #else | #define PRINTF_ARGS(decl, string_index, first_to_check) decl __attribute__((format(printf, string_index, first_to_check))) | #endif | #else | #define PRINTF_ARGS(decl, string_index, first_to_check) decl | #endif | PRINTF_ARGS(void test_sprintf(const char*, ...), 1, 2); | int | main () | { | printf("%lld", (int64_t)42); | test_sprintf("%lld", (int64_t)42); | ; | return 0; | } configure:23075: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 201: undefined symbol: int64_t "conftest.c", line 201: syntax error before or at: 42 "conftest.c", line 202: syntax error before or at: 42 cc: acomp failed for conftest.c configure:23075: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | /* end confdefs.h. */ | #include | #include | #ifdef __GNUC__ | #if defined __MINGW_PRINTF_FORMAT | #define PRINTF_ARGS(decl, string_index, first_to_check) decl __attribute__((format(__MINGW_PRINTF_FORMAT, string_index, first_to_check))) | #else | #define PRINTF_ARGS(decl, string_index, first_to_check) decl __attribute__((format(printf, string_index, first_to_check))) | #endif | #else | #define PRINTF_ARGS(decl, string_index, first_to_check) decl | #endif | PRINTF_ARGS(void test_sprintf(const char*, ...), 1, 2); | int | main () | { | printf("%I64d", (int64_t)42); | test_sprintf("%I64d", (int64_t)42); | ; | return 0; | } configure:23075: cc -D_STDC_C99= -c -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 201: undefined symbol: int64_t "conftest.c", line 201: syntax error before or at: 42 "conftest.c", line 202: syntax error before or at: 42 cc: acomp failed for conftest.c configure:23075: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | /* end confdefs.h. */ | #include | #include | #ifdef __GNUC__ | #if defined __MINGW_PRINTF_FORMAT | #define PRINTF_ARGS(decl, string_index, first_to_check) decl __attribute__((format(__MINGW_PRINTF_FORMAT, string_index, first_to_check))) | #else | #define PRINTF_ARGS(decl, string_index, first_to_check) decl __attribute__((format(printf, string_index, first_to_check))) | #endif | #else | #define PRINTF_ARGS(decl, string_index, first_to_check) decl | #endif | PRINTF_ARGS(void test_sprintf(const char*, ...), 1, 2); | int | main () | { | printf("%ld", (int64_t)42); | test_sprintf("%ld", (int64_t)42); | ; | return 0; | } configure:23092: result: NONE configure:23106: checking for stack end address configure:23123: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 Undefined first referenced symbol in file __libc_stack_end conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:23123: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | /* end confdefs.h. */ | extern void *__libc_stack_end; | int | main () | { | if (!__libc_stack_end) return 1; | ; | return 0; | } configure:23130: result: no configure:23141: checking for uid_t in sys/types.h configure:23160: result: yes configure:23171: checking type of array argument to getgroups configure:23205: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 configure:23205: $? = 0 configure:23205: ./conftest configure:23205: $? = 0 configure:23230: result: gid_t configure:23281: checking for working alloca.h configure:23298: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 configure:23298: $? = 0 configure:23306: result: yes configure:23314: checking for alloca configure:23351: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 configure:23351: $? = 0 configure:23359: result: yes configure:23469: checking for dynamic size alloca configure:23493: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 configure:23493: $? = 0 configure:23500: result: ok configure:23521: checking for working memcmp configure:23564: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 251: warning: statement not reached configure:23564: $? = 0 configure:23564: ./conftest configure:23564: $? = 0 configure:23574: result: yes configure:23608: checking for acosh configure:23608: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 225: warning: statement not reached configure:23608: $? = 0 configure:23608: result: yes configure:23622: checking for cbrt configure:23622: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 226: warning: statement not reached configure:23622: $? = 0 configure:23622: result: yes configure:23636: checking for crypt configure:23636: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 227: warning: statement not reached configure:23636: $? = 0 configure:23636: result: yes configure:23650: checking for dup2 configure:23650: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 228: warning: statement not reached configure:23650: $? = 0 configure:23650: result: yes configure:23664: checking for erf configure:23664: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 229: warning: statement not reached configure:23664: $? = 0 configure:23664: result: yes configure:23678: checking for explicit_bzero configure:23678: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 230: warning: statement not reached Undefined first referenced symbol in file explicit_bzero conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:23678: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | /* end confdefs.h. */ | /* Define explicit_bzero to an innocuous variant, in case declares explicit_bzero. | For example, HP-UX 11i declares gettimeofday. */ | #define explicit_bzero innocuous_explicit_bzero | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char explicit_bzero (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef explicit_bzero | | /* 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 explicit_bzero (); | /* 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_explicit_bzero || defined __stub___explicit_bzero | choke me | #endif | | int | main () | { | return explicit_bzero (); | ; | return 0; | } configure:23678: result: no configure:23692: checking for ffs configure:23692: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 230: warning: statement not reached configure:23692: $? = 0 configure:23692: result: yes configure:23706: checking for flock configure:23706: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 231: warning: statement not reached Undefined first referenced symbol in file flock conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:23706: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | /* end confdefs.h. */ | /* Define flock to an innocuous variant, in case declares flock. | For example, HP-UX 11i declares gettimeofday. */ | #define flock innocuous_flock | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char flock (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef flock | | /* 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 flock (); | /* 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_flock || defined __stub___flock | choke me | #endif | | int | main () | { | return flock (); | ; | return 0; | } configure:23706: result: no configure:23720: checking for hypot configure:23720: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 231: warning: statement not reached configure:23720: $? = 0 configure:23720: result: yes configure:23734: checking for lgamma_r configure:23734: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 232: warning: statement not reached configure:23734: $? = 0 configure:23734: result: yes configure:23748: checking for memmove configure:23748: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 233: warning: statement not reached configure:23748: $? = 0 configure:23748: result: yes configure:23762: checking for nan configure:23762: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 234: warning: statement not reached configure:23762: $? = 0 configure:23762: result: yes configure:23776: checking for nextafter configure:23776: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 235: warning: statement not reached configure:23776: $? = 0 configure:23776: result: yes configure:23790: checking for setproctitle configure:23790: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 236: warning: statement not reached Undefined first referenced symbol in file setproctitle conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:23790: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | /* end confdefs.h. */ | /* Define setproctitle to an innocuous variant, in case declares setproctitle. | For example, HP-UX 11i declares gettimeofday. */ | #define setproctitle innocuous_setproctitle | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char setproctitle (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef setproctitle | | /* 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 setproctitle (); | /* 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_setproctitle || defined __stub___setproctitle | choke me | #endif | | int | main () | { | return setproctitle (); | ; | return 0; | } configure:23790: result: no configure:23804: checking for strchr configure:23804: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 236: warning: statement not reached configure:23804: $? = 0 configure:23804: result: yes configure:23818: checking for strerror configure:23818: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 237: warning: statement not reached configure:23818: $? = 0 configure:23818: result: yes configure:23832: checking for strlcat configure:23832: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 238: warning: statement not reached configure:23832: $? = 0 configure:23832: result: yes configure:23846: checking for strlcpy configure:23846: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 239: warning: statement not reached configure:23846: $? = 0 configure:23846: result: yes configure:23860: checking for strstr configure:23860: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 240: warning: statement not reached configure:23860: $? = 0 configure:23860: result: yes configure:23874: checking for tgamma configure:23874: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 241: warning: statement not reached configure:23874: $? = 0 configure:23874: result: yes configure:23889: checking whether finite is declared configure:23889: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 215: undefined symbol: finite cc: acomp failed for conftest.c configure:23889: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | /* end confdefs.h. */ | #include | | int | main () | { | #ifndef finite | #ifdef __cplusplus | (void) finite; | #else | (void) finite; | #endif | #endif | | ; | return 0; | } configure:23889: result: no configure:23895: checking for finite configure:23895: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 242: warning: statement not reached configure:23895: $? = 0 configure:23895: result: yes configure:23911: checking whether isinf is declared configure:23911: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:23911: $? = 0 configure:23911: result: yes configure:23933: checking whether isnan is declared configure:23933: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:23933: $? = 0 configure:23933: result: yes configure:23969: checking sys/pstat.h usability configure:23969: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 242: cannot find include file: cc: acomp failed for conftest.c configure:23969: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 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:23969: result: no configure:23969: checking sys/pstat.h presence configure:23969: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c "conftest.c", line 209: cannot find include file: cc: acomp failed for conftest.c configure:23969: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | /* end confdefs.h. */ | #include configure:23969: result: no configure:23969: checking for sys/pstat.h configure:23969: result: no configure:23981: checking for signbit configure:23999: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 configure:23999: $? = 0 configure:24007: result: yes configure:24025: checking for pid_t configure:24025: result: yes configure:24038: checking vfork.h usability configure:24038: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 243: cannot find include file: cc: acomp failed for conftest.c configure:24038: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 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:24038: result: no configure:24038: checking vfork.h presence configure:24038: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c "conftest.c", line 210: cannot find include file: cc: acomp failed for conftest.c configure:24038: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | /* end confdefs.h. */ | #include configure:24038: result: no configure:24038: checking for vfork.h configure:24038: result: no configure:24051: checking for fork configure:24051: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 246: warning: statement not reached configure:24051: $? = 0 configure:24051: result: yes configure:24051: checking for vfork configure:24051: result: no configure:24061: checking for working fork configure:24083: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 252: warning: statement not reached configure:24083: $? = 0 configure:24083: ./conftest configure:24083: $? = 0 configure:24093: result: yes configure:24252: checking for __syscall configure:24252: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 249: warning: statement not reached Undefined first referenced symbol in file __syscall conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:24252: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | /* end confdefs.h. */ | /* Define __syscall to an innocuous variant, in case declares __syscall. | For example, HP-UX 11i declares gettimeofday. */ | #define __syscall innocuous___syscall | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char __syscall (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef __syscall | | /* 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 __syscall (); | /* 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___syscall || defined __stub_____syscall | choke me | #endif | | int | main () | { | return __syscall (); | ; | return 0; | } configure:24252: result: no configure:24263: checking for _longjmp configure:24263: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 249: warning: statement not reached configure:24263: $? = 0 configure:24263: result: yes configure:24276: checking for arc4random_buf configure:24276: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 250: warning: statement not reached Undefined first referenced symbol in file arc4random_buf conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:24276: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | /* end confdefs.h. */ | /* Define arc4random_buf to an innocuous variant, in case declares arc4random_buf. | For example, HP-UX 11i declares gettimeofday. */ | #define arc4random_buf innocuous_arc4random_buf | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char arc4random_buf (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef arc4random_buf | | /* 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_buf (); | /* 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_buf || defined __stub___arc4random_buf | choke me | #endif | | int | main () | { | return arc4random_buf (); | ; | return 0; | } configure:24276: result: no configure:24288: checking for atan2l configure:24288: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 250: warning: statement not reached configure:24288: $? = 0 configure:24288: result: yes configure:24288: checking for atan2f configure:24288: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 251: warning: statement not reached configure:24288: $? = 0 configure:24288: result: yes configure:24299: checking for chroot configure:24299: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 252: warning: statement not reached configure:24299: $? = 0 configure:24299: result: yes configure:24310: checking for chsize configure:24310: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 253: warning: statement not reached Undefined first referenced symbol in file chsize conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:24310: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | /* end confdefs.h. */ | /* Define chsize to an innocuous variant, in case declares chsize. | For example, HP-UX 11i declares gettimeofday. */ | #define chsize innocuous_chsize | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char chsize (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef chsize | | /* 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 chsize (); | /* 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_chsize || defined __stub___chsize | choke me | #endif | | int | main () | { | return chsize (); | ; | return 0; | } configure:24310: result: no configure:24321: checking for clock_gettime configure:24321: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 253: warning: statement not reached Undefined first referenced symbol in file clock_gettime conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:24321: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | /* end confdefs.h. */ | /* Define clock_gettime to an innocuous variant, in case declares clock_gettime. | For example, HP-UX 11i declares gettimeofday. */ | #define clock_gettime innocuous_clock_gettime | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char clock_gettime (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef clock_gettime | | /* 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 clock_gettime (); | /* 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_clock_gettime || defined __stub___clock_gettime | choke me | #endif | | int | main () | { | return clock_gettime (); | ; | return 0; | } configure:24321: result: no configure:24332: checking for copy_file_range configure:24332: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 253: warning: statement not reached Undefined first referenced symbol in file copy_file_range conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:24332: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | /* end confdefs.h. */ | /* Define copy_file_range to an innocuous variant, in case declares copy_file_range. | For example, HP-UX 11i declares gettimeofday. */ | #define copy_file_range innocuous_copy_file_range | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char copy_file_range (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef copy_file_range | | /* 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 copy_file_range (); | /* 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_copy_file_range || defined __stub___copy_file_range | choke me | #endif | | int | main () | { | return copy_file_range (); | ; | return 0; | } configure:24332: result: no configure:24343: checking for cosh configure:24343: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 253: warning: statement not reached configure:24343: $? = 0 configure:24343: result: yes configure:24354: checking for crypt_r configure:24354: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 254: warning: statement not reached Undefined first referenced symbol in file crypt_r conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:24354: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | /* end confdefs.h. */ | /* Define crypt_r to an innocuous variant, in case declares crypt_r. | For example, HP-UX 11i declares gettimeofday. */ | #define crypt_r innocuous_crypt_r | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char crypt_r (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef crypt_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 crypt_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_crypt_r || defined __stub___crypt_r | choke me | #endif | | int | main () | { | return crypt_r (); | ; | return 0; | } configure:24354: result: no configure:24365: checking for daemon configure:24365: result: no configure:24376: checking for dirfd configure:24376: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 254: warning: statement not reached Undefined first referenced symbol in file dirfd conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:24376: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | /* end confdefs.h. */ | /* Define dirfd to an innocuous variant, in case declares dirfd. | For example, HP-UX 11i declares gettimeofday. */ | #define dirfd innocuous_dirfd | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char dirfd (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef dirfd | | /* 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 dirfd (); | /* 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_dirfd || defined __stub___dirfd | choke me | #endif | | int | main () | { | return dirfd (); | ; | return 0; | } configure:24376: result: no configure:24387: checking for dl_iterate_phdr configure:24387: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 254: warning: statement not reached configure:24387: $? = 0 configure:24387: result: yes configure:24398: checking for dlopen configure:24398: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 255: warning: statement not reached configure:24398: $? = 0 configure:24398: result: yes configure:24409: checking for dladdr configure:24409: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 256: warning: statement not reached configure:24409: $? = 0 configure:24409: result: yes configure:24420: checking for dup configure:24420: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 257: warning: statement not reached configure:24420: $? = 0 configure:24420: result: yes configure:24431: checking for dup3 configure:24431: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 258: warning: statement not reached Undefined first referenced symbol in file dup3 conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:24431: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | /* end confdefs.h. */ | /* Define dup3 to an innocuous variant, in case declares dup3. | For example, HP-UX 11i declares gettimeofday. */ | #define dup3 innocuous_dup3 | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char dup3 (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef dup3 | | /* 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 dup3 (); | /* 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_dup3 || defined __stub___dup3 | choke me | #endif | | int | main () | { | return dup3 (); | ; | return 0; | } configure:24431: result: no configure:24442: checking for eaccess configure:24442: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 258: warning: statement not reached Undefined first referenced symbol in file eaccess conftest.o (symbol belongs to implicit dependency /lib/libgen.so.1) ld: fatal: symbol referencing errors. No output written to conftest configure:24442: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | /* end confdefs.h. */ | /* Define eaccess to an innocuous variant, in case declares eaccess. | For example, HP-UX 11i declares gettimeofday. */ | #define eaccess innocuous_eaccess | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char eaccess (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef eaccess | | /* 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 eaccess (); | /* 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_eaccess || defined __stub___eaccess | choke me | #endif | | int | main () | { | return eaccess (); | ; | return 0; | } configure:24442: result: no configure:24453: checking for endgrent configure:24453: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 258: warning: statement not reached configure:24453: $? = 0 configure:24453: result: yes configure:24464: checking for eventfd configure:24464: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 259: warning: statement not reached Undefined first referenced symbol in file eventfd conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:24464: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | /* end confdefs.h. */ | /* Define eventfd to an innocuous variant, in case declares eventfd. | For example, HP-UX 11i declares gettimeofday. */ | #define eventfd innocuous_eventfd | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char eventfd (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef eventfd | | /* 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 eventfd (); | /* 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_eventfd || defined __stub___eventfd | choke me | #endif | | int | main () | { | return eventfd (); | ; | return 0; | } configure:24464: result: no configure:24475: checking for explicit_memset configure:24475: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 259: warning: statement not reached Undefined first referenced symbol in file explicit_memset conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:24475: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | /* end confdefs.h. */ | /* Define explicit_memset to an innocuous variant, in case declares explicit_memset. | For example, HP-UX 11i declares gettimeofday. */ | #define explicit_memset innocuous_explicit_memset | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char explicit_memset (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef explicit_memset | | /* 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 explicit_memset (); | /* 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_explicit_memset || defined __stub___explicit_memset | choke me | #endif | | int | main () | { | return explicit_memset (); | ; | return 0; | } configure:24475: result: no configure:24486: checking for fcopyfile configure:24486: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 259: warning: statement not reached Undefined first referenced symbol in file fcopyfile conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:24486: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | /* end confdefs.h. */ | /* Define fcopyfile to an innocuous variant, in case declares fcopyfile. | For example, HP-UX 11i declares gettimeofday. */ | #define fcopyfile innocuous_fcopyfile | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char fcopyfile (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef fcopyfile | | /* 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 fcopyfile (); | /* 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_fcopyfile || defined __stub___fcopyfile | choke me | #endif | | int | main () | { | return fcopyfile (); | ; | return 0; | } configure:24486: result: no configure:24497: checking for fchmod configure:24497: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 259: warning: statement not reached configure:24497: $? = 0 configure:24497: result: yes configure:24508: checking for fchown configure:24508: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 260: warning: statement not reached configure:24508: $? = 0 configure:24508: result: yes configure:24519: checking for fcntl configure:24519: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 261: warning: statement not reached configure:24519: $? = 0 configure:24519: result: yes configure:24530: checking for fdatasync configure:24530: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 262: warning: statement not reached configure:24530: $? = 0 configure:24530: result: yes configure:24541: checking for fdopendir configure:24541: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 263: warning: statement not reached configure:24541: $? = 0 configure:24541: result: yes configure:24552: checking for fgetattrlist configure:24552: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 264: warning: statement not reached Undefined first referenced symbol in file fgetattrlist conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:24552: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | /* end confdefs.h. */ | /* Define fgetattrlist to an innocuous variant, in case declares fgetattrlist. | For example, HP-UX 11i declares gettimeofday. */ | #define fgetattrlist innocuous_fgetattrlist | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char fgetattrlist (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef fgetattrlist | | /* 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 fgetattrlist (); | /* 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_fgetattrlist || defined __stub___fgetattrlist | choke me | #endif | | int | main () | { | return fgetattrlist (); | ; | return 0; | } configure:24552: result: no configure:24563: checking for fmod configure:24563: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 264: warning: statement not reached configure:24563: $? = 0 configure:24563: result: yes configure:24574: checking for fstatat configure:24574: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 265: warning: statement not reached configure:24574: $? = 0 configure:24574: result: yes configure:24585: checking for fsync configure:24585: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 266: warning: statement not reached configure:24585: $? = 0 configure:24585: result: yes configure:24596: checking for ftruncate configure:24596: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 267: warning: statement not reached configure:24596: $? = 0 configure:24596: result: yes configure:24607: checking for ftruncate64 configure:24607: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 268: warning: statement not reached configure:24607: $? = 0 configure:24607: result: yes configure:24618: checking for getattrlist configure:24618: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 269: warning: statement not reached Undefined first referenced symbol in file getattrlist conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:24618: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | /* end confdefs.h. */ | /* Define getattrlist to an innocuous variant, in case declares getattrlist. | For example, HP-UX 11i declares gettimeofday. */ | #define getattrlist innocuous_getattrlist | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char getattrlist (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef getattrlist | | /* 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 getattrlist (); | /* 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_getattrlist || defined __stub___getattrlist | choke me | #endif | | int | main () | { | return getattrlist (); | ; | return 0; | } configure:24618: result: no configure:24629: checking for getcwd configure:24629: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 269: warning: statement not reached configure:24629: $? = 0 configure:24629: result: yes configure:24640: checking for getgidx configure:24640: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 270: warning: statement not reached Undefined first referenced symbol in file getgidx conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:24640: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | /* end confdefs.h. */ | /* Define getgidx to an innocuous variant, in case declares getgidx. | For example, HP-UX 11i declares gettimeofday. */ | #define getgidx innocuous_getgidx | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char getgidx (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef getgidx | | /* 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 getgidx (); | /* 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_getgidx || defined __stub___getgidx | choke me | #endif | | int | main () | { | return getgidx (); | ; | return 0; | } configure:24640: result: no configure:24651: checking for getgrnam configure:24651: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 270: warning: statement not reached configure:24651: $? = 0 configure:24651: result: yes configure:24662: checking for getgrnam_r configure:24662: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 271: warning: statement not reached configure:24662: $? = 0 configure:24662: result: yes configure:24673: checking for getgroups configure:24673: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 272: warning: statement not reached configure:24673: $? = 0 configure:24673: result: yes configure:24684: checking for getlogin configure:24684: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 273: warning: statement not reached configure:24684: $? = 0 configure:24684: result: yes configure:24695: checking for getlogin_r configure:24695: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 274: warning: statement not reached configure:24695: $? = 0 configure:24695: result: yes configure:24706: checking for getpgid configure:24706: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 275: warning: statement not reached configure:24706: $? = 0 configure:24706: result: yes configure:24717: checking for getpgrp configure:24717: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 276: warning: statement not reached configure:24717: $? = 0 configure:24717: result: yes configure:24728: checking for getpriority configure:24728: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 277: warning: statement not reached configure:24728: $? = 0 configure:24728: result: yes configure:24739: checking for getpwnam configure:24739: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 278: warning: statement not reached configure:24739: $? = 0 configure:24739: result: yes configure:24750: checking for getpwnam_r configure:24750: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 279: warning: statement not reached configure:24750: $? = 0 configure:24750: result: yes configure:24761: checking for getpwuid configure:24761: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 280: warning: statement not reached configure:24761: $? = 0 configure:24761: result: yes configure:24772: checking for getpwuid_r configure:24772: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 281: warning: statement not reached configure:24772: $? = 0 configure:24772: result: yes configure:24783: checking for getrandom configure:24783: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 282: warning: statement not reached Undefined first referenced symbol in file getrandom conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:24783: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | /* end confdefs.h. */ | /* Define getrandom to an innocuous variant, in case declares getrandom. | For example, HP-UX 11i declares gettimeofday. */ | #define getrandom innocuous_getrandom | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char getrandom (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef getrandom | | /* 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 getrandom (); | /* 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_getrandom || defined __stub___getrandom | choke me | #endif | | int | main () | { | return getrandom (); | ; | return 0; | } configure:24783: result: no configure:24794: checking for getresgid configure:24794: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 282: warning: statement not reached Undefined first referenced symbol in file getresgid conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:24794: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | /* end confdefs.h. */ | /* Define getresgid to an innocuous variant, in case declares getresgid. | For example, HP-UX 11i declares gettimeofday. */ | #define getresgid innocuous_getresgid | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char getresgid (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef getresgid | | /* 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 getresgid (); | /* 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_getresgid || defined __stub___getresgid | choke me | #endif | | int | main () | { | return getresgid (); | ; | return 0; | } configure:24794: result: no configure:24805: checking for getresuid configure:24805: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 282: warning: statement not reached Undefined first referenced symbol in file getresuid conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:24805: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | /* end confdefs.h. */ | /* Define getresuid to an innocuous variant, in case declares getresuid. | For example, HP-UX 11i declares gettimeofday. */ | #define getresuid innocuous_getresuid | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char getresuid (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef getresuid | | /* 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 getresuid (); | /* 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_getresuid || defined __stub___getresuid | choke me | #endif | | int | main () | { | return getresuid (); | ; | return 0; | } configure:24805: result: no configure:24816: checking for getrlimit configure:24816: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 282: warning: statement not reached configure:24816: $? = 0 configure:24816: result: yes configure:24827: checking for getsid configure:24827: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 283: warning: statement not reached configure:24827: $? = 0 configure:24827: result: yes configure:24838: checking for gettimeofday configure:24838: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 284: warning: statement not reached configure:24838: $? = 0 configure:24838: result: yes configure:24849: checking for getuidx configure:24849: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 285: warning: statement not reached Undefined first referenced symbol in file getuidx conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:24849: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | /* end confdefs.h. */ | /* Define getuidx to an innocuous variant, in case declares getuidx. | For example, HP-UX 11i declares gettimeofday. */ | #define getuidx innocuous_getuidx | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char getuidx (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef getuidx | | /* 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 getuidx (); | /* 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_getuidx || defined __stub___getuidx | choke me | #endif | | int | main () | { | return getuidx (); | ; | return 0; | } configure:24849: result: no configure:24860: checking for gmtime_r configure:24860: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 285: warning: statement not reached configure:24860: $? = 0 configure:24860: result: yes configure:24871: checking for grantpt configure:24871: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 286: warning: statement not reached configure:24871: $? = 0 configure:24871: result: yes configure:24882: checking for initgroups configure:24882: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 287: warning: statement not reached configure:24882: $? = 0 configure:24882: result: yes configure:24893: checking for ioctl configure:24893: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 288: warning: statement not reached configure:24893: $? = 0 configure:24893: result: yes configure:24904: checking for isfinite configure:24904: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 289: warning: statement not reached Undefined first referenced symbol in file isfinite conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:24904: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | /* end confdefs.h. */ | /* Define isfinite to an innocuous variant, in case declares isfinite. | For example, HP-UX 11i declares gettimeofday. */ | #define isfinite innocuous_isfinite | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char isfinite (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef isfinite | | /* 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 isfinite (); | /* 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_isfinite || defined __stub___isfinite | choke me | #endif | | int | main () | { | return isfinite (); | ; | return 0; | } configure:24904: result: no configure:24915: checking for issetugid configure:24915: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 289: warning: statement not reached configure:24915: $? = 0 configure:24915: result: yes configure:24926: checking for killpg configure:24926: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 290: warning: statement not reached configure:24926: $? = 0 configure:24926: result: yes configure:24937: checking for lchmod configure:24937: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 291: warning: statement not reached Undefined first referenced symbol in file lchmod conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:24937: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | /* end confdefs.h. */ | /* Define lchmod to an innocuous variant, in case declares lchmod. | For example, HP-UX 11i declares gettimeofday. */ | #define lchmod innocuous_lchmod | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char lchmod (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef lchmod | | /* 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 lchmod (); | /* 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_lchmod || defined __stub___lchmod | choke me | #endif | | int | main () | { | return lchmod (); | ; | return 0; | } configure:24937: result: no configure:24948: checking for lchown configure:24948: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 291: warning: statement not reached configure:24948: $? = 0 configure:24948: result: yes configure:24959: checking for link configure:24959: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 292: warning: statement not reached configure:24959: $? = 0 configure:24959: result: yes configure:24970: checking for llabs configure:24970: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 293: warning: statement not reached configure:24970: $? = 0 configure:24970: result: yes configure:24981: checking for lockf configure:24981: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 294: warning: statement not reached configure:24981: $? = 0 configure:24981: result: yes configure:24992: checking for log2 configure:24992: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 295: warning: statement not reached configure:24992: $? = 0 configure:24992: result: yes configure:25003: checking for lstat configure:25003: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 296: warning: statement not reached configure:25003: $? = 0 configure:25003: result: yes configure:25014: checking for lutimes configure:25014: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 297: warning: statement not reached Undefined first referenced symbol in file lutimes conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:25014: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | /* end confdefs.h. */ | /* Define lutimes to an innocuous variant, in case declares lutimes. | For example, HP-UX 11i declares gettimeofday. */ | #define lutimes innocuous_lutimes | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char lutimes (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef lutimes | | /* 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 lutimes (); | /* 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_lutimes || defined __stub___lutimes | choke me | #endif | | int | main () | { | return lutimes (); | ; | return 0; | } configure:25014: result: no configure:25025: checking for malloc_usable_size configure:25025: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 297: warning: statement not reached Undefined first referenced symbol in file malloc_usable_size conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:25025: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | /* end confdefs.h. */ | /* Define malloc_usable_size to an innocuous variant, in case declares malloc_usable_size. | For example, HP-UX 11i declares gettimeofday. */ | #define malloc_usable_size innocuous_malloc_usable_size | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char malloc_usable_size (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef malloc_usable_size | | /* 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 malloc_usable_size (); | /* 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_malloc_usable_size || defined __stub___malloc_usable_size | choke me | #endif | | int | main () | { | return malloc_usable_size (); | ; | return 0; | } configure:25025: result: no configure:25036: checking for malloc_size configure:25036: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 297: warning: statement not reached Undefined first referenced symbol in file malloc_size conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:25036: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | /* end confdefs.h. */ | /* Define malloc_size to an innocuous variant, in case declares malloc_size. | For example, HP-UX 11i declares gettimeofday. */ | #define malloc_size innocuous_malloc_size | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char malloc_size (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef malloc_size | | /* 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 malloc_size (); | /* 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_malloc_size || defined __stub___malloc_size | choke me | #endif | | int | main () | { | return malloc_size (); | ; | return 0; | } configure:25036: result: no configure:25047: checking for mblen configure:25047: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 297: warning: statement not reached configure:25047: $? = 0 configure:25047: result: yes configure:25058: checking for memalign configure:25058: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 298: warning: statement not reached configure:25058: $? = 0 configure:25058: result: yes configure:25069: checking for memset_s configure:25069: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 299: warning: statement not reached Undefined first referenced symbol in file memset_s conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:25069: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | /* end confdefs.h. */ | /* Define memset_s to an innocuous variant, in case declares memset_s. | For example, HP-UX 11i declares gettimeofday. */ | #define memset_s innocuous_memset_s | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char memset_s (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef memset_s | | /* 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 memset_s (); | /* 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_memset_s || defined __stub___memset_s | choke me | #endif | | int | main () | { | return memset_s (); | ; | return 0; | } configure:25069: result: no configure:25080: checking for writev configure:25080: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 299: warning: statement not reached configure:25080: $? = 0 configure:25080: result: yes configure:25091: checking for memrchr configure:25091: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 300: warning: statement not reached Undefined first referenced symbol in file memrchr conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:25091: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | /* end confdefs.h. */ | /* Define memrchr to an innocuous variant, in case declares memrchr. | For example, HP-UX 11i declares gettimeofday. */ | #define memrchr innocuous_memrchr | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char memrchr (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef memrchr | | /* 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 memrchr (); | /* 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_memrchr || defined __stub___memrchr | choke me | #endif | | int | main () | { | return memrchr (); | ; | return 0; | } configure:25091: result: no configure:25102: checking for memmem configure:25102: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 300: warning: statement not reached Undefined first referenced symbol in file memmem conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:25102: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | /* end confdefs.h. */ | /* Define memmem to an innocuous variant, in case declares memmem. | For example, HP-UX 11i declares gettimeofday. */ | #define memmem innocuous_memmem | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char memmem (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef memmem | | /* 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 memmem (); | /* 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_memmem || defined __stub___memmem | choke me | #endif | | int | main () | { | return memmem (); | ; | return 0; | } configure:25102: result: no configure:25113: checking for mkfifo configure:25113: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 300: warning: statement not reached configure:25113: $? = 0 configure:25113: result: yes configure:25124: checking for mknod configure:25124: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 301: warning: statement not reached configure:25124: $? = 0 configure:25124: result: yes configure:25135: checking for mktime configure:25135: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 302: warning: statement not reached configure:25135: $? = 0 configure:25135: result: yes configure:25146: checking for openat configure:25146: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 303: warning: statement not reached configure:25146: $? = 0 configure:25146: result: yes configure:25157: checking for pipe2 configure:25157: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 304: warning: statement not reached Undefined first referenced symbol in file pipe2 conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:25157: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | /* end confdefs.h. */ | /* Define pipe2 to an innocuous variant, in case declares pipe2. | For example, HP-UX 11i declares gettimeofday. */ | #define pipe2 innocuous_pipe2 | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char pipe2 (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef pipe2 | | /* 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 pipe2 (); | /* 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_pipe2 || defined __stub___pipe2 | choke me | #endif | | int | main () | { | return pipe2 (); | ; | return 0; | } configure:25157: result: no configure:25168: checking for poll configure:25168: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 304: warning: statement not reached configure:25168: $? = 0 configure:25168: result: yes configure:25179: checking for posix_fadvise configure:25179: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 305: warning: statement not reached Undefined first referenced symbol in file posix_fadvise conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:25179: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | /* end confdefs.h. */ | /* Define posix_fadvise to an innocuous variant, in case declares posix_fadvise. | For example, HP-UX 11i declares gettimeofday. */ | #define posix_fadvise innocuous_posix_fadvise | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char posix_fadvise (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef posix_fadvise | | /* 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 posix_fadvise (); | /* 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_posix_fadvise || defined __stub___posix_fadvise | choke me | #endif | | int | main () | { | return posix_fadvise (); | ; | return 0; | } configure:25179: result: no configure:25190: checking for posix_memalign configure:25190: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 305: warning: statement not reached Undefined first referenced symbol in file posix_memalign conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:25190: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | /* end confdefs.h. */ | /* Define posix_memalign to an innocuous variant, in case declares posix_memalign. | For example, HP-UX 11i declares gettimeofday. */ | #define posix_memalign innocuous_posix_memalign | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char posix_memalign (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef posix_memalign | | /* 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 posix_memalign (); | /* 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_posix_memalign || defined __stub___posix_memalign | choke me | #endif | | int | main () | { | return posix_memalign (); | ; | return 0; | } configure:25190: result: no configure:25201: checking for ppoll configure:25201: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 305: warning: statement not reached Undefined first referenced symbol in file ppoll conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:25201: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | /* end confdefs.h. */ | /* Define ppoll to an innocuous variant, in case declares ppoll. | For example, HP-UX 11i declares gettimeofday. */ | #define ppoll innocuous_ppoll | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char ppoll (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef ppoll | | /* 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 ppoll (); | /* 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_ppoll || defined __stub___ppoll | choke me | #endif | | int | main () | { | return ppoll (); | ; | return 0; | } configure:25201: result: no configure:25212: checking for pread configure:25212: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 305: warning: statement not reached configure:25212: $? = 0 configure:25212: result: yes configure:25223: checking for pwrite configure:25223: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 306: warning: statement not reached configure:25223: $? = 0 configure:25223: result: yes configure:25234: checking for qsort_r configure:25234: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 307: warning: statement not reached Undefined first referenced symbol in file qsort_r conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:25234: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | /* end confdefs.h. */ | /* Define qsort_r to an innocuous variant, in case declares qsort_r. | For example, HP-UX 11i declares gettimeofday. */ | #define qsort_r innocuous_qsort_r | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char qsort_r (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef qsort_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 qsort_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_qsort_r || defined __stub___qsort_r | choke me | #endif | | int | main () | { | return qsort_r (); | ; | return 0; | } configure:25234: result: no configure:25245: checking for qsort_s configure:25245: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 307: warning: statement not reached Undefined first referenced symbol in file qsort_s conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:25245: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | /* end confdefs.h. */ | /* Define qsort_s to an innocuous variant, in case declares qsort_s. | For example, HP-UX 11i declares gettimeofday. */ | #define qsort_s innocuous_qsort_s | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char qsort_s (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef qsort_s | | /* 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 qsort_s (); | /* 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_qsort_s || defined __stub___qsort_s | choke me | #endif | | int | main () | { | return qsort_s (); | ; | return 0; | } configure:25245: result: no configure:25256: checking for readlink configure:25256: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 307: warning: statement not reached configure:25256: $? = 0 configure:25256: result: yes configure:25267: checking for realpath configure:25267: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 308: warning: statement not reached configure:25267: $? = 0 configure:25267: result: yes configure:25278: checking for round configure:25278: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 309: warning: statement not reached configure:25278: $? = 0 configure:25278: result: yes configure:25289: checking for sched_getaffinity configure:25289: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 310: warning: statement not reached Undefined first referenced symbol in file sched_getaffinity conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:25289: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | /* end confdefs.h. */ | /* Define sched_getaffinity to an innocuous variant, in case declares sched_getaffinity. | For example, HP-UX 11i declares gettimeofday. */ | #define sched_getaffinity innocuous_sched_getaffinity | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char sched_getaffinity (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef sched_getaffinity | | /* 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 sched_getaffinity (); | /* 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_sched_getaffinity || defined __stub___sched_getaffinity | choke me | #endif | | int | main () | { | return sched_getaffinity (); | ; | return 0; | } configure:25289: result: no configure:25300: checking for seekdir configure:25300: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 310: warning: statement not reached configure:25300: $? = 0 configure:25300: result: yes configure:25311: checking for select_large_fdset configure:25311: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 311: warning: statement not reached configure:25311: $? = 0 configure:25311: result: yes configure:25322: checking for sendfile configure:25322: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 312: warning: statement not reached Undefined first referenced symbol in file sendfile conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:25322: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | /* end confdefs.h. */ | /* Define sendfile to an innocuous variant, in case declares sendfile. | For example, HP-UX 11i declares gettimeofday. */ | #define sendfile innocuous_sendfile | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char sendfile (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef sendfile | | /* 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 sendfile (); | /* 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_sendfile || defined __stub___sendfile | choke me | #endif | | int | main () | { | return sendfile (); | ; | return 0; | } configure:25322: result: no configure:25333: checking for setegid configure:25333: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 312: warning: statement not reached configure:25333: $? = 0 configure:25333: result: yes configure:25344: checking for setenv configure:25344: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 313: warning: statement not reached configure:25344: $? = 0 configure:25344: result: yes configure:25355: checking for seteuid configure:25355: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 314: warning: statement not reached configure:25355: $? = 0 configure:25355: result: yes configure:25366: checking for setgid configure:25366: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 315: warning: statement not reached configure:25366: $? = 0 configure:25366: result: yes configure:25377: checking for setgroups configure:25377: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 316: warning: statement not reached configure:25377: $? = 0 configure:25377: result: yes configure:25388: checking for setpgid configure:25388: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 317: warning: statement not reached configure:25388: $? = 0 configure:25388: result: yes configure:25399: checking for setpgrp configure:25399: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 318: warning: statement not reached configure:25399: $? = 0 configure:25399: result: yes configure:25410: checking for setregid configure:25410: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 319: warning: statement not reached configure:25410: $? = 0 configure:25410: result: yes configure:25421: checking for setresgid configure:25421: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 320: warning: statement not reached Undefined first referenced symbol in file setresgid conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:25421: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | /* end confdefs.h. */ | /* Define setresgid to an innocuous variant, in case declares setresgid. | For example, HP-UX 11i declares gettimeofday. */ | #define setresgid innocuous_setresgid | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char setresgid (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef setresgid | | /* 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 setresgid (); | /* 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_setresgid || defined __stub___setresgid | choke me | #endif | | int | main () | { | return setresgid (); | ; | return 0; | } configure:25421: result: no configure:25432: checking for setresuid configure:25432: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 320: warning: statement not reached Undefined first referenced symbol in file setresuid conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:25432: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | /* end confdefs.h. */ | /* Define setresuid to an innocuous variant, in case declares setresuid. | For example, HP-UX 11i declares gettimeofday. */ | #define setresuid innocuous_setresuid | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char setresuid (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef setresuid | | /* 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 setresuid (); | /* 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_setresuid || defined __stub___setresuid | choke me | #endif | | int | main () | { | return setresuid (); | ; | return 0; | } configure:25432: result: no configure:25443: checking for setreuid configure:25443: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 320: warning: statement not reached configure:25443: $? = 0 configure:25443: result: yes configure:25454: checking for setrgid configure:25454: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 321: warning: statement not reached Undefined first referenced symbol in file setrgid conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:25454: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | /* end confdefs.h. */ | /* Define setrgid to an innocuous variant, in case declares setrgid. | For example, HP-UX 11i declares gettimeofday. */ | #define setrgid innocuous_setrgid | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char setrgid (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef setrgid | | /* 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 setrgid (); | /* 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_setrgid || defined __stub___setrgid | choke me | #endif | | int | main () | { | return setrgid (); | ; | return 0; | } configure:25454: result: no configure:25465: checking for setrlimit configure:25465: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 321: warning: statement not reached configure:25465: $? = 0 configure:25465: result: yes configure:25476: checking for setruid configure:25476: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 322: warning: statement not reached Undefined first referenced symbol in file setruid conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:25476: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | /* end confdefs.h. */ | /* Define setruid to an innocuous variant, in case declares setruid. | For example, HP-UX 11i declares gettimeofday. */ | #define setruid innocuous_setruid | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char setruid (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef setruid | | /* 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 setruid (); | /* 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_setruid || defined __stub___setruid | choke me | #endif | | int | main () | { | return setruid (); | ; | return 0; | } configure:25476: result: no configure:25487: checking for setsid configure:25487: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 322: warning: statement not reached configure:25487: $? = 0 configure:25487: result: yes configure:25498: checking for setuid configure:25498: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 323: warning: statement not reached configure:25498: $? = 0 configure:25498: result: yes configure:25509: checking for shutdown configure:25509: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 324: warning: statement not reached configure:25509: $? = 0 configure:25509: result: yes configure:25520: checking for sigaction configure:25520: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 325: warning: statement not reached configure:25520: $? = 0 configure:25520: result: yes configure:25531: checking for sigaltstack configure:25531: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 326: warning: statement not reached configure:25531: $? = 0 configure:25531: result: yes configure:25542: checking for sigprocmask configure:25542: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 327: warning: statement not reached configure:25542: $? = 0 configure:25542: result: yes configure:25553: checking for sinh configure:25553: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 328: warning: statement not reached configure:25553: $? = 0 configure:25553: result: yes configure:25564: checking for spawnv configure:25564: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 329: warning: statement not reached Undefined first referenced symbol in file spawnv conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:25564: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | /* end confdefs.h. */ | /* Define spawnv to an innocuous variant, in case declares spawnv. | For example, HP-UX 11i declares gettimeofday. */ | #define spawnv innocuous_spawnv | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char spawnv (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef spawnv | | /* 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 spawnv (); | /* 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_spawnv || defined __stub___spawnv | choke me | #endif | | int | main () | { | return spawnv (); | ; | return 0; | } configure:25564: result: no configure:25575: checking for symlink configure:25575: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 329: warning: statement not reached configure:25575: $? = 0 configure:25575: result: yes configure:25586: checking for syscall configure:25586: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 330: warning: statement not reached configure:25586: $? = 0 configure:25586: result: yes configure:25597: checking for sysconf configure:25597: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 331: warning: statement not reached configure:25597: $? = 0 configure:25597: result: yes configure:25608: checking for tanh configure:25608: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 332: warning: statement not reached configure:25608: $? = 0 configure:25608: result: yes configure:25619: checking for telldir configure:25619: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 333: warning: statement not reached configure:25619: $? = 0 configure:25619: result: yes configure:25630: checking for timegm configure:25630: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 334: warning: statement not reached Undefined first referenced symbol in file timegm conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:25630: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | /* end confdefs.h. */ | /* Define timegm to an innocuous variant, in case declares timegm. | For example, HP-UX 11i declares gettimeofday. */ | #define timegm innocuous_timegm | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char timegm (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef timegm | | /* 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 timegm (); | /* 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_timegm || defined __stub___timegm | choke me | #endif | | int | main () | { | return timegm (); | ; | return 0; | } configure:25630: result: no configure:25641: checking for times configure:25641: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 334: warning: statement not reached configure:25641: $? = 0 configure:25641: result: yes configure:25652: checking for truncate configure:25652: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 335: warning: statement not reached configure:25652: $? = 0 configure:25652: result: yes configure:25663: checking for truncate64 configure:25663: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 336: warning: statement not reached configure:25663: $? = 0 configure:25663: result: yes configure:25674: checking for unsetenv configure:25674: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 337: warning: statement not reached configure:25674: $? = 0 configure:25674: result: yes configure:25685: checking for utimensat configure:25685: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 338: warning: statement not reached configure:25685: $? = 0 configure:25685: result: yes configure:25696: checking for utimes configure:25696: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 339: warning: statement not reached configure:25696: $? = 0 configure:25696: result: yes configure:25707: checking for wait4 configure:25707: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 340: warning: statement not reached configure:25707: $? = 0 configure:25707: result: yes configure:25718: checking for waitpid configure:25718: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 341: warning: statement not reached configure:25718: $? = 0 configure:25718: result: yes configure:25729: checking for __cospi configure:25729: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 342: warning: statement not reached Undefined first referenced symbol in file __cospi conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:25729: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | /* end confdefs.h. */ | /* Define __cospi to an innocuous variant, in case declares __cospi. | For example, HP-UX 11i declares gettimeofday. */ | #define __cospi innocuous___cospi | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char __cospi (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef __cospi | | /* 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 __cospi (); | /* 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___cospi || defined __stub_____cospi | choke me | #endif | | int | main () | { | return __cospi (); | ; | return 0; | } configure:25729: result: no configure:25740: checking for __sinpi configure:25740: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 342: warning: statement not reached Undefined first referenced symbol in file __sinpi conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:25740: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | /* end confdefs.h. */ | /* Define __sinpi to an innocuous variant, in case declares __sinpi. | For example, HP-UX 11i declares gettimeofday. */ | #define __sinpi innocuous___sinpi | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char __sinpi (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef __sinpi | | /* 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 __sinpi (); | /* 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___sinpi || defined __stub_____sinpi | choke me | #endif | | int | main () | { | return __sinpi (); | ; | return 0; | } configure:25740: result: no configure:25782: checking if getcwd allocates buffer if NULL is given configure:25818: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 configure:25818: $? = 0 configure:25818: ./conftest configure:25818: $? = 1 configure: program exited with status 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | /* end confdefs.h. */ | | #include | #include | #ifdef HAVE_UNISTD_H | #include | #endif | #ifndef EXIT_SUCCESS | #define EXIT_SUCCESS 0 | #endif | #ifndef EXIT_FAILURE | #define EXIT_FAILURE 1 | #endif | | int | main(int argc, char **argv) | { | if (!getcwd(NULL, 0)) return EXIT_FAILURE; | return EXIT_SUCCESS; | } | configure:25828: result: no configure:25866: checking for __builtin_alloca_with_align configure:25882: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 311: warning: implicit function declaration: __builtin_alloca_with_align Undefined first referenced symbol in file __builtin_alloca_with_align conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:25882: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | /* end confdefs.h. */ | int foo; | int | main () | { | __builtin_alloca_with_align(1, 4096); | ; | return 0; | } configure:25890: result: no configure:25898: checking for __builtin_assume_aligned configure:25914: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 311: warning: implicit function declaration: __builtin_assume_aligned Undefined first referenced symbol in file __builtin_assume_aligned conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:25914: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | /* end confdefs.h. */ | int foo; | int | main () | { | __builtin_assume_aligned((void*)32, 32); | ; | return 0; | } configure:25922: result: no configure:25930: checking for __builtin_bswap16 configure:25946: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 311: warning: implicit function declaration: __builtin_bswap16 Undefined first referenced symbol in file __builtin_bswap16 conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:25946: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | /* end confdefs.h. */ | int foo; | int | main () | { | __builtin_bswap16(0); | ; | return 0; | } configure:25954: result: no configure:25962: checking for __builtin_bswap32 configure:25978: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 311: warning: implicit function declaration: __builtin_bswap32 Undefined first referenced symbol in file __builtin_bswap32 conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:25978: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | /* end confdefs.h. */ | int foo; | int | main () | { | __builtin_bswap32(0); | ; | return 0; | } configure:25986: result: no configure:25994: checking for __builtin_bswap64 configure:26010: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 311: warning: implicit function declaration: __builtin_bswap64 Undefined first referenced symbol in file __builtin_bswap64 conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:26010: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | /* end confdefs.h. */ | int foo; | int | main () | { | __builtin_bswap64(0); | ; | return 0; | } configure:26018: result: no configure:26026: checking for __builtin_popcount configure:26042: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 311: warning: implicit function declaration: __builtin_popcount Undefined first referenced symbol in file __builtin_popcount conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:26042: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | /* end confdefs.h. */ | int foo; | int | main () | { | __builtin_popcount(0); | ; | return 0; | } configure:26050: result: no configure:26058: checking for __builtin_popcountll configure:26074: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 311: warning: implicit function declaration: __builtin_popcountll Undefined first referenced symbol in file __builtin_popcountll conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:26074: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | /* end confdefs.h. */ | int foo; | int | main () | { | __builtin_popcountll(0); | ; | return 0; | } configure:26082: result: no configure:26090: checking for __builtin_clz configure:26106: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 311: warning: implicit function declaration: __builtin_clz Undefined first referenced symbol in file __builtin_clz conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:26106: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | /* end confdefs.h. */ | int foo; | int | main () | { | __builtin_clz(0); | ; | return 0; | } configure:26114: result: no configure:26122: checking for __builtin_clzl configure:26138: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 311: warning: implicit function declaration: __builtin_clzl Undefined first referenced symbol in file __builtin_clzl conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:26138: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | /* end confdefs.h. */ | int foo; | int | main () | { | __builtin_clzl(0); | ; | return 0; | } configure:26146: result: no configure:26154: checking for __builtin_clzll configure:26170: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 311: warning: implicit function declaration: __builtin_clzll Undefined first referenced symbol in file __builtin_clzll conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:26170: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | /* end confdefs.h. */ | int foo; | int | main () | { | __builtin_clzll(0); | ; | return 0; | } configure:26178: result: no configure:26186: checking for __builtin_ctz configure:26202: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 311: warning: implicit function declaration: __builtin_ctz Undefined first referenced symbol in file __builtin_ctz conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:26202: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | /* end confdefs.h. */ | int foo; | int | main () | { | __builtin_ctz(0); | ; | return 0; | } configure:26210: result: no configure:26218: checking for __builtin_ctzll configure:26234: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 311: warning: implicit function declaration: __builtin_ctzll Undefined first referenced symbol in file __builtin_ctzll conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:26234: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | /* end confdefs.h. */ | int foo; | int | main () | { | __builtin_ctzll(0); | ; | return 0; | } configure:26242: result: no configure:26250: checking for __builtin_add_overflow configure:26266: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 311: warning: implicit function declaration: __builtin_add_overflow Undefined first referenced symbol in file __builtin_add_overflow conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:26266: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | /* end confdefs.h. */ | int foo; | int | main () | { | int x;__builtin_add_overflow(0,0,&x); | ; | return 0; | } configure:26274: result: no configure:26282: checking for __builtin_sub_overflow configure:26298: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 311: warning: implicit function declaration: __builtin_sub_overflow Undefined first referenced symbol in file __builtin_sub_overflow conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:26298: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | /* end confdefs.h. */ | int foo; | int | main () | { | int x;__builtin_sub_overflow(0,0,&x); | ; | return 0; | } configure:26306: result: no configure:26314: checking for __builtin_mul_overflow configure:26330: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 311: warning: implicit function declaration: __builtin_mul_overflow Undefined first referenced symbol in file __builtin_mul_overflow conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:26330: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | /* end confdefs.h. */ | int foo; | int | main () | { | int x;__builtin_mul_overflow(0,0,&x); | ; | return 0; | } configure:26338: result: no configure:26346: checking for __builtin_mul_overflow_p configure:26362: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 311: warning: implicit function declaration: __builtin_mul_overflow_p Undefined first referenced symbol in file __builtin_mul_overflow_p conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:26362: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | /* end confdefs.h. */ | int foo; | int | main () | { | __builtin_mul_overflow_p(0,0,(int)0); | ; | return 0; | } configure:26370: result: no configure:26378: checking for __builtin_constant_p configure:26394: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 configure:26394: $? = 0 configure:26402: result: yes configure:26410: checking for __builtin_choose_expr configure:26429: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 313: warning: implicit function declaration: __extension__ "conftest.c", line 313: warning: implicit function declaration: __builtin_choose_expr Undefined first referenced symbol in file __extension__ conftest.o __builtin_choose_expr conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:26429: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | #define HAVE_BUILTIN___BUILTIN_CONSTANT_P 1 | /* end confdefs.h. */ | int foo; | int | main () | { | | int x[__extension__(__builtin_choose_expr(1, 1, -1))]; | int y[__extension__(__builtin_choose_expr(0, -1, 1))]; | ; | ; | return 0; | } configure:26437: result: no configure:26484: checking for __builtin_types_compatible_p configure:26500: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 312: warning: implicit function declaration: __builtin_types_compatible_p "conftest.c", line 312: syntax error before or at: int cc: acomp failed for conftest.c configure:26500: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | #define HAVE_BUILTIN___BUILTIN_CONSTANT_P 1 | /* end confdefs.h. */ | int foo; | int | main () | { | __builtin_types_compatible_p(int, int); | ; | return 0; | } configure:26508: result: no configure:26516: checking for __builtin_trap configure:26532: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 312: warning: implicit function declaration: __builtin_trap Undefined first referenced symbol in file __builtin_trap conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:26532: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | #define HAVE_BUILTIN___BUILTIN_CONSTANT_P 1 | /* end confdefs.h. */ | int foo; | int | main () | { | __builtin_trap(); | ; | return 0; | } configure:26540: result: no configure:26629: checking whether atan2 handles Inf as C99 configure:26668: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lsocket -ldl -lcrypt -lm >&5 configure:26668: $? = 0 configure:26668: ./conftest configure:26668: $? = 0 configure:26683: result: yes configure:26695: checking for clock_gettime in -lrt configure:26720: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lrt -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 322: warning: statement not reached configure:26720: $? = 0 configure:26729: result: yes configure:26750: checking for clock_getres configure:26750: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lrt -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 347: warning: statement not reached configure:26750: $? = 0 configure:26750: result: yes configure:26759: checking for timer_create in -lrt configure:26784: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lrt -lrt -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 325: warning: statement not reached configure:26784: $? = 0 configure:26793: result: yes configure:26804: checking for timer_settime in -lrt configure:26829: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lrt -lrt -lrt -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 326: warning: statement not reached configure:26829: $? = 0 configure:26838: result: yes configure:26862: checking for unsetenv returns a value configure:26880: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:26880: $? = 0 configure:26887: result: yes configure:26911: checking whether struct tm is in sys/time.h or time.h configure:26931: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 326: warning: statement not reached configure:26931: $? = 0 configure:26938: result: time.h configure:26946: checking for struct tm.tm_zone configure:26946: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 324: undefined struct/union member: tm_zone cc: acomp failed for conftest.c configure:26946: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | #define HAVE_BUILTIN___BUILTIN_CONSTANT_P 1 | #define ATAN2_INF_C99 1 | #define HAVE_LIBRT 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_CLOCK_GETRES 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBRT 1 | #define HAVE_TIMER_CREATE 1 | #define HAVE_TIMER_SETTIME 1 | /* end confdefs.h. */ | #include | #include | | | int | main () | { | static struct tm ac_aggr; | if (ac_aggr.tm_zone) | return 0; | ; | return 0; | } configure:26946: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 324: undefined struct/union member: tm_zone cc: acomp failed for conftest.c configure:26946: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | #define HAVE_BUILTIN___BUILTIN_CONSTANT_P 1 | #define ATAN2_INF_C99 1 | #define HAVE_LIBRT 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_CLOCK_GETRES 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBRT 1 | #define HAVE_TIMER_CREATE 1 | #define HAVE_TIMER_SETTIME 1 | /* end confdefs.h. */ | #include | #include | | | int | main () | { | static struct tm ac_aggr; | if (sizeof ac_aggr.tm_zone) | return 0; | ; | return 0; | } configure:26946: result: no configure:26964: checking whether tzname is declared configure:26964: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:26964: $? = 0 configure:26964: result: yes configure:26976: checking for tzname configure:26996: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lrt -lrt -lrt -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 327: warning: statement not reached configure:26996: $? = 0 configure:27004: result: yes configure:27013: checking for struct tm.tm_gmtoff configure:27033: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 326: undefined struct/union member: tm_gmtoff cc: acomp failed for conftest.c configure:27033: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | #define HAVE_BUILTIN___BUILTIN_CONSTANT_P 1 | #define ATAN2_INF_C99 1 | #define HAVE_LIBRT 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_CLOCK_GETRES 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBRT 1 | #define HAVE_TIMER_CREATE 1 | #define HAVE_TIMER_SETTIME 1 | #define HAVE_DECL_TZNAME 1 | #define HAVE_TZNAME 1 | /* end confdefs.h. */ | | #define _BSD_SOURCE | #define _DEFAULT_SOURCE | #include | | int | main () | { | struct tm t; t.tm_gmtoff = 3600; | ; | return 0; | } configure:27040: result: no configure:27048: checking for external int daylight configure:27065: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lrt -lrt -lrt -lsocket -ldl -lcrypt -lm >&5 configure:27065: $? = 0 configure:27073: result: yes configure:27082: checking for negative time_t for gmtime(3) configure:27124: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lrt -lrt -lrt -lsocket -ldl -lcrypt -lm >&5 configure:27124: $? = 0 configure:27124: ./conftest configure:27124: $? = 0 configure:27134: result: yes configure:27145: checking for localtime(3) overflow correctly configure:27189: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lrt -lrt -lrt -lsocket -ldl -lcrypt -lm >&5 configure:27189: $? = 0 configure:27189: ./conftest configure:27189: $? = 0 configure:27199: result: yes configure:27277: checking for sig_t configure:27277: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 326: undefined symbol: sig_t cc: acomp failed for conftest.c configure:27277: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | #define HAVE_BUILTIN___BUILTIN_CONSTANT_P 1 | #define ATAN2_INF_C99 1 | #define HAVE_LIBRT 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_CLOCK_GETRES 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBRT 1 | #define HAVE_TIMER_CREATE 1 | #define HAVE_TIMER_SETTIME 1 | #define HAVE_DECL_TZNAME 1 | #define HAVE_TZNAME 1 | #define HAVE_DAYLIGHT 1 | #define NEGATIVE_TIME_T 1 | #define POSIX_SIGNAL 1 | /* end confdefs.h. */ | #include | | int | main () | { | if (sizeof (sig_t)) | return 0; | ; | return 0; | } configure:27277: result: no configure:27382: checking for DIR.d_fd configure:27382: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:27382: $? = 0 configure:27382: result: yes configure:27395: checking for DIR.dd_fd configure:27395: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 331: undefined struct/union member: dd_fd cc: acomp failed for conftest.c configure:27395: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | #define HAVE_BUILTIN___BUILTIN_CONSTANT_P 1 | #define ATAN2_INF_C99 1 | #define HAVE_LIBRT 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_CLOCK_GETRES 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBRT 1 | #define HAVE_TIMER_CREATE 1 | #define HAVE_TIMER_SETTIME 1 | #define HAVE_DECL_TZNAME 1 | #define HAVE_TZNAME 1 | #define HAVE_DAYLIGHT 1 | #define NEGATIVE_TIME_T 1 | #define POSIX_SIGNAL 1 | #define HAVE_DIR_D_FD 1 | /* end confdefs.h. */ | | #include | #include | | | int | main () | { | static DIR ac_aggr; | if (ac_aggr.dd_fd) | return 0; | ; | return 0; | } configure:27395: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 331: undefined struct/union member: dd_fd cc: acomp failed for conftest.c configure:27395: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | #define HAVE_BUILTIN___BUILTIN_CONSTANT_P 1 | #define ATAN2_INF_C99 1 | #define HAVE_LIBRT 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_CLOCK_GETRES 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBRT 1 | #define HAVE_TIMER_CREATE 1 | #define HAVE_TIMER_SETTIME 1 | #define HAVE_DECL_TZNAME 1 | #define HAVE_TZNAME 1 | #define HAVE_DAYLIGHT 1 | #define NEGATIVE_TIME_T 1 | #define POSIX_SIGNAL 1 | #define HAVE_DIR_D_FD 1 | /* end confdefs.h. */ | | #include | #include | | | int | main () | { | static DIR ac_aggr; | if (sizeof ac_aggr.dd_fd) | return 0; | ; | return 0; | } configure:27395: result: no configure:27415: checking whether right shift preserve sign bit configure:27434: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 331: warning: statement not reached configure:27434: $? = 0 configure:27441: result: yes configure:27457: checking for copy_file_range configure:27496: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lrt -lrt -lrt -lsocket -ldl -lcrypt -lm >&5 configure:27496: $? = 0 configure:27496: ./conftest configure:27496: $? = 1 configure: program exited with status 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | #define HAVE_BUILTIN___BUILTIN_CONSTANT_P 1 | #define ATAN2_INF_C99 1 | #define HAVE_LIBRT 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_CLOCK_GETRES 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBRT 1 | #define HAVE_TIMER_CREATE 1 | #define HAVE_TIMER_SETTIME 1 | #define HAVE_DECL_TZNAME 1 | #define HAVE_TZNAME 1 | #define HAVE_DAYLIGHT 1 | #define NEGATIVE_TIME_T 1 | #define POSIX_SIGNAL 1 | #define HAVE_DIR_D_FD 1 | #define RSHIFT(x,y) ((x)>>(int)(y)) | /* end confdefs.h. */ | | #include | #include | #include | #include | #include | | #ifndef O_TMPFILE | #define O_TMPFILE __O_TMPFILE | #endif | | int | main() | { | #ifdef __NR_copy_file_range | int ret, fd_in, fd_out; | fd_in = open("/tmp", O_TMPFILE|O_RDWR, S_IRUSR); | fd_out = open("/tmp", O_TMPFILE|O_WRONLY, S_IWUSR); | ret = syscall(__NR_copy_file_range, fd_in, NULL, fd_out, NULL, 0, 0); | close(fd_in); | close(fd_out); | if (ret == -1) { return 1; } | return 0; | #else | return 1; | #endif | } | configure:27506: result: no configure:27531: checking whether _SC_CLK_TCK is supported configure:27548: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:27548: $? = 0 configure:27556: result: yes configure:27678: checking stack growing direction on i386 configure:27729: result: -1 configure:27749: checking native coroutine implementation for i386-solaris2.10 configure:27818: result: ucontext configure:27852: checking for pthread_create in -lthr configure:27877: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lthr -lrt -lrt -lrt -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 339: warning: statement not reached ld: fatal: library -lthr: not found ld: fatal: file processing errors. No output written to conftest configure:27877: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | #define HAVE_BUILTIN___BUILTIN_CONSTANT_P 1 | #define ATAN2_INF_C99 1 | #define HAVE_LIBRT 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_CLOCK_GETRES 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBRT 1 | #define HAVE_TIMER_CREATE 1 | #define HAVE_TIMER_SETTIME 1 | #define HAVE_DECL_TZNAME 1 | #define HAVE_TZNAME 1 | #define HAVE_DAYLIGHT 1 | #define NEGATIVE_TIME_T 1 | #define POSIX_SIGNAL 1 | #define HAVE_DIR_D_FD 1 | #define RSHIFT(x,y) ((x)>>(int)(y)) | #define HAVE__SC_CLK_TCK 1 | #define STACK_GROW_DIRECTION -1 | #define COROUTINE_H "coroutine/ucontext/Context.h" | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char pthread_create (); | int | main () | { | return pthread_create (); | ; | return 0; | } configure:27887: result: no configure:27852: checking for pthread_create in -lpthread configure:27877: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lpthread -lrt -lrt -lrt -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 339: warning: statement not reached configure:27877: $? = 0 configure:27887: result: yes configure:27909: checking for pthread_np.h configure:27909: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 331: cannot find include file: cc: acomp failed for conftest.c configure:27909: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | #define HAVE_BUILTIN___BUILTIN_CONSTANT_P 1 | #define ATAN2_INF_C99 1 | #define HAVE_LIBRT 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_CLOCK_GETRES 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBRT 1 | #define HAVE_TIMER_CREATE 1 | #define HAVE_TIMER_SETTIME 1 | #define HAVE_DECL_TZNAME 1 | #define HAVE_TZNAME 1 | #define HAVE_DAYLIGHT 1 | #define NEGATIVE_TIME_T 1 | #define POSIX_SIGNAL 1 | #define HAVE_DIR_D_FD 1 | #define RSHIFT(x,y) ((x)>>(int)(y)) | #define HAVE__SC_CLK_TCK 1 | #define STACK_GROW_DIRECTION -1 | #define COROUTINE_H "coroutine/ucontext/Context.h" | #define _REENTRANT 1 | #define _THREAD_SAFE 1 | #define HAVE_LIBPTHREAD 1 | /* end confdefs.h. */ | #include | | #include configure:27909: result: no configure:27937: checking whether pthread_t is scalar type configure:27960: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:27960: $? = 0 configure:27968: result: yes configure:27988: checking for sched_yield configure:27988: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lpthread -lrt -lrt -lrt -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 365: warning: statement not reached configure:27988: $? = 0 configure:27988: result: yes configure:27988: checking for pthread_attr_setinheritsched configure:27988: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lpthread -lrt -lrt -lrt -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 366: warning: statement not reached configure:27988: $? = 0 configure:27988: result: yes configure:27988: checking for pthread_attr_get_np configure:27988: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lpthread -lrt -lrt -lrt -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 367: warning: statement not reached Undefined first referenced symbol in file pthread_attr_get_np conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:27988: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | #define HAVE_BUILTIN___BUILTIN_CONSTANT_P 1 | #define ATAN2_INF_C99 1 | #define HAVE_LIBRT 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_CLOCK_GETRES 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBRT 1 | #define HAVE_TIMER_CREATE 1 | #define HAVE_TIMER_SETTIME 1 | #define HAVE_DECL_TZNAME 1 | #define HAVE_TZNAME 1 | #define HAVE_DAYLIGHT 1 | #define NEGATIVE_TIME_T 1 | #define POSIX_SIGNAL 1 | #define HAVE_DIR_D_FD 1 | #define RSHIFT(x,y) ((x)>>(int)(y)) | #define HAVE__SC_CLK_TCK 1 | #define STACK_GROW_DIRECTION -1 | #define COROUTINE_H "coroutine/ucontext/Context.h" | #define _REENTRANT 1 | #define _THREAD_SAFE 1 | #define HAVE_LIBPTHREAD 1 | #define HAVE_SCHED_YIELD 1 | #define HAVE_PTHREAD_ATTR_SETINHERITSCHED 1 | /* end confdefs.h. */ | /* Define pthread_attr_get_np to an innocuous variant, in case declares pthread_attr_get_np. | For example, HP-UX 11i declares gettimeofday. */ | #define pthread_attr_get_np innocuous_pthread_attr_get_np | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char pthread_attr_get_np (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef pthread_attr_get_np | | /* 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 pthread_attr_get_np (); | /* 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_pthread_attr_get_np || defined __stub___pthread_attr_get_np | choke me | #endif | | int | main () | { | return pthread_attr_get_np (); | ; | return 0; | } configure:27988: result: no configure:27988: checking for pthread_attr_getstack configure:27988: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lpthread -lrt -lrt -lrt -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 367: warning: statement not reached configure:27988: $? = 0 configure:27988: result: yes configure:27988: checking for pthread_attr_getguardsize configure:27988: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lpthread -lrt -lrt -lrt -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 368: warning: statement not reached configure:27988: $? = 0 configure:27988: result: yes configure:27988: checking for pthread_get_stackaddr_np configure:27988: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lpthread -lrt -lrt -lrt -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 369: warning: statement not reached Undefined first referenced symbol in file pthread_get_stackaddr_np conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:27988: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | #define HAVE_BUILTIN___BUILTIN_CONSTANT_P 1 | #define ATAN2_INF_C99 1 | #define HAVE_LIBRT 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_CLOCK_GETRES 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBRT 1 | #define HAVE_TIMER_CREATE 1 | #define HAVE_TIMER_SETTIME 1 | #define HAVE_DECL_TZNAME 1 | #define HAVE_TZNAME 1 | #define HAVE_DAYLIGHT 1 | #define NEGATIVE_TIME_T 1 | #define POSIX_SIGNAL 1 | #define HAVE_DIR_D_FD 1 | #define RSHIFT(x,y) ((x)>>(int)(y)) | #define HAVE__SC_CLK_TCK 1 | #define STACK_GROW_DIRECTION -1 | #define COROUTINE_H "coroutine/ucontext/Context.h" | #define _REENTRANT 1 | #define _THREAD_SAFE 1 | #define HAVE_LIBPTHREAD 1 | #define HAVE_SCHED_YIELD 1 | #define HAVE_PTHREAD_ATTR_SETINHERITSCHED 1 | #define HAVE_PTHREAD_ATTR_GETSTACK 1 | #define HAVE_PTHREAD_ATTR_GETGUARDSIZE 1 | /* end confdefs.h. */ | /* Define pthread_get_stackaddr_np to an innocuous variant, in case declares pthread_get_stackaddr_np. | For example, HP-UX 11i declares gettimeofday. */ | #define pthread_get_stackaddr_np innocuous_pthread_get_stackaddr_np | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char pthread_get_stackaddr_np (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef pthread_get_stackaddr_np | | /* 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 pthread_get_stackaddr_np (); | /* 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_pthread_get_stackaddr_np || defined __stub___pthread_get_stackaddr_np | choke me | #endif | | int | main () | { | return pthread_get_stackaddr_np (); | ; | return 0; | } configure:27988: result: no configure:27988: checking for pthread_get_stacksize_np configure:27988: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lpthread -lrt -lrt -lrt -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 369: warning: statement not reached Undefined first referenced symbol in file pthread_get_stacksize_np conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:27988: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | #define HAVE_BUILTIN___BUILTIN_CONSTANT_P 1 | #define ATAN2_INF_C99 1 | #define HAVE_LIBRT 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_CLOCK_GETRES 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBRT 1 | #define HAVE_TIMER_CREATE 1 | #define HAVE_TIMER_SETTIME 1 | #define HAVE_DECL_TZNAME 1 | #define HAVE_TZNAME 1 | #define HAVE_DAYLIGHT 1 | #define NEGATIVE_TIME_T 1 | #define POSIX_SIGNAL 1 | #define HAVE_DIR_D_FD 1 | #define RSHIFT(x,y) ((x)>>(int)(y)) | #define HAVE__SC_CLK_TCK 1 | #define STACK_GROW_DIRECTION -1 | #define COROUTINE_H "coroutine/ucontext/Context.h" | #define _REENTRANT 1 | #define _THREAD_SAFE 1 | #define HAVE_LIBPTHREAD 1 | #define HAVE_SCHED_YIELD 1 | #define HAVE_PTHREAD_ATTR_SETINHERITSCHED 1 | #define HAVE_PTHREAD_ATTR_GETSTACK 1 | #define HAVE_PTHREAD_ATTR_GETGUARDSIZE 1 | /* end confdefs.h. */ | /* Define pthread_get_stacksize_np to an innocuous variant, in case declares pthread_get_stacksize_np. | For example, HP-UX 11i declares gettimeofday. */ | #define pthread_get_stacksize_np innocuous_pthread_get_stacksize_np | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char pthread_get_stacksize_np (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef pthread_get_stacksize_np | | /* 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 pthread_get_stacksize_np (); | /* 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_pthread_get_stacksize_np || defined __stub___pthread_get_stacksize_np | choke me | #endif | | int | main () | { | return pthread_get_stacksize_np (); | ; | return 0; | } configure:27988: result: no configure:27988: checking for thr_stksegment configure:27988: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lpthread -lrt -lrt -lrt -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 369: warning: statement not reached configure:27988: $? = 0 configure:27988: result: yes configure:27988: checking for pthread_stackseg_np configure:27988: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lpthread -lrt -lrt -lrt -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 370: warning: statement not reached Undefined first referenced symbol in file pthread_stackseg_np conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:27988: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | #define HAVE_BUILTIN___BUILTIN_CONSTANT_P 1 | #define ATAN2_INF_C99 1 | #define HAVE_LIBRT 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_CLOCK_GETRES 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBRT 1 | #define HAVE_TIMER_CREATE 1 | #define HAVE_TIMER_SETTIME 1 | #define HAVE_DECL_TZNAME 1 | #define HAVE_TZNAME 1 | #define HAVE_DAYLIGHT 1 | #define NEGATIVE_TIME_T 1 | #define POSIX_SIGNAL 1 | #define HAVE_DIR_D_FD 1 | #define RSHIFT(x,y) ((x)>>(int)(y)) | #define HAVE__SC_CLK_TCK 1 | #define STACK_GROW_DIRECTION -1 | #define COROUTINE_H "coroutine/ucontext/Context.h" | #define _REENTRANT 1 | #define _THREAD_SAFE 1 | #define HAVE_LIBPTHREAD 1 | #define HAVE_SCHED_YIELD 1 | #define HAVE_PTHREAD_ATTR_SETINHERITSCHED 1 | #define HAVE_PTHREAD_ATTR_GETSTACK 1 | #define HAVE_PTHREAD_ATTR_GETGUARDSIZE 1 | #define HAVE_THR_STKSEGMENT 1 | /* end confdefs.h. */ | /* Define pthread_stackseg_np to an innocuous variant, in case declares pthread_stackseg_np. | For example, HP-UX 11i declares gettimeofday. */ | #define pthread_stackseg_np innocuous_pthread_stackseg_np | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char pthread_stackseg_np (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef pthread_stackseg_np | | /* 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 pthread_stackseg_np (); | /* 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_pthread_stackseg_np || defined __stub___pthread_stackseg_np | choke me | #endif | | int | main () | { | return pthread_stackseg_np (); | ; | return 0; | } configure:27988: result: no configure:27988: checking for pthread_getthrds_np configure:27988: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lpthread -lrt -lrt -lrt -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 370: warning: statement not reached Undefined first referenced symbol in file pthread_getthrds_np conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:27988: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | #define HAVE_BUILTIN___BUILTIN_CONSTANT_P 1 | #define ATAN2_INF_C99 1 | #define HAVE_LIBRT 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_CLOCK_GETRES 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBRT 1 | #define HAVE_TIMER_CREATE 1 | #define HAVE_TIMER_SETTIME 1 | #define HAVE_DECL_TZNAME 1 | #define HAVE_TZNAME 1 | #define HAVE_DAYLIGHT 1 | #define NEGATIVE_TIME_T 1 | #define POSIX_SIGNAL 1 | #define HAVE_DIR_D_FD 1 | #define RSHIFT(x,y) ((x)>>(int)(y)) | #define HAVE__SC_CLK_TCK 1 | #define STACK_GROW_DIRECTION -1 | #define COROUTINE_H "coroutine/ucontext/Context.h" | #define _REENTRANT 1 | #define _THREAD_SAFE 1 | #define HAVE_LIBPTHREAD 1 | #define HAVE_SCHED_YIELD 1 | #define HAVE_PTHREAD_ATTR_SETINHERITSCHED 1 | #define HAVE_PTHREAD_ATTR_GETSTACK 1 | #define HAVE_PTHREAD_ATTR_GETGUARDSIZE 1 | #define HAVE_THR_STKSEGMENT 1 | /* end confdefs.h. */ | /* Define pthread_getthrds_np to an innocuous variant, in case declares pthread_getthrds_np. | For example, HP-UX 11i declares gettimeofday. */ | #define pthread_getthrds_np innocuous_pthread_getthrds_np | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char pthread_getthrds_np (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef pthread_getthrds_np | | /* 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 pthread_getthrds_np (); | /* 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_pthread_getthrds_np || defined __stub___pthread_getthrds_np | choke me | #endif | | int | main () | { | return pthread_getthrds_np (); | ; | return 0; | } configure:27988: result: no configure:27988: checking for pthread_condattr_setclock configure:27988: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lpthread -lrt -lrt -lrt -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 370: warning: statement not reached configure:27988: $? = 0 configure:27988: result: yes configure:27988: checking for pthread_sigmask configure:27988: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lpthread -lrt -lrt -lrt -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 371: warning: statement not reached configure:27988: $? = 0 configure:27988: result: yes configure:27988: checking for pthread_setname_np configure:27988: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lpthread -lrt -lrt -lrt -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 372: warning: statement not reached Undefined first referenced symbol in file pthread_setname_np conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:27988: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | #define HAVE_BUILTIN___BUILTIN_CONSTANT_P 1 | #define ATAN2_INF_C99 1 | #define HAVE_LIBRT 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_CLOCK_GETRES 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBRT 1 | #define HAVE_TIMER_CREATE 1 | #define HAVE_TIMER_SETTIME 1 | #define HAVE_DECL_TZNAME 1 | #define HAVE_TZNAME 1 | #define HAVE_DAYLIGHT 1 | #define NEGATIVE_TIME_T 1 | #define POSIX_SIGNAL 1 | #define HAVE_DIR_D_FD 1 | #define RSHIFT(x,y) ((x)>>(int)(y)) | #define HAVE__SC_CLK_TCK 1 | #define STACK_GROW_DIRECTION -1 | #define COROUTINE_H "coroutine/ucontext/Context.h" | #define _REENTRANT 1 | #define _THREAD_SAFE 1 | #define HAVE_LIBPTHREAD 1 | #define HAVE_SCHED_YIELD 1 | #define HAVE_PTHREAD_ATTR_SETINHERITSCHED 1 | #define HAVE_PTHREAD_ATTR_GETSTACK 1 | #define HAVE_PTHREAD_ATTR_GETGUARDSIZE 1 | #define HAVE_THR_STKSEGMENT 1 | #define HAVE_PTHREAD_CONDATTR_SETCLOCK 1 | #define HAVE_PTHREAD_SIGMASK 1 | /* end confdefs.h. */ | /* Define pthread_setname_np to an innocuous variant, in case declares pthread_setname_np. | For example, HP-UX 11i declares gettimeofday. */ | #define pthread_setname_np innocuous_pthread_setname_np | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char pthread_setname_np (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef pthread_setname_np | | /* 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 pthread_setname_np (); | /* 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_pthread_setname_np || defined __stub___pthread_setname_np | choke me | #endif | | int | main () | { | return pthread_setname_np (); | ; | return 0; | } configure:27988: result: no configure:27988: checking for pthread_set_name_np configure:27988: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lpthread -lrt -lrt -lrt -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 372: warning: statement not reached Undefined first referenced symbol in file pthread_set_name_np conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:27988: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | #define HAVE_BUILTIN___BUILTIN_CONSTANT_P 1 | #define ATAN2_INF_C99 1 | #define HAVE_LIBRT 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_CLOCK_GETRES 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBRT 1 | #define HAVE_TIMER_CREATE 1 | #define HAVE_TIMER_SETTIME 1 | #define HAVE_DECL_TZNAME 1 | #define HAVE_TZNAME 1 | #define HAVE_DAYLIGHT 1 | #define NEGATIVE_TIME_T 1 | #define POSIX_SIGNAL 1 | #define HAVE_DIR_D_FD 1 | #define RSHIFT(x,y) ((x)>>(int)(y)) | #define HAVE__SC_CLK_TCK 1 | #define STACK_GROW_DIRECTION -1 | #define COROUTINE_H "coroutine/ucontext/Context.h" | #define _REENTRANT 1 | #define _THREAD_SAFE 1 | #define HAVE_LIBPTHREAD 1 | #define HAVE_SCHED_YIELD 1 | #define HAVE_PTHREAD_ATTR_SETINHERITSCHED 1 | #define HAVE_PTHREAD_ATTR_GETSTACK 1 | #define HAVE_PTHREAD_ATTR_GETGUARDSIZE 1 | #define HAVE_THR_STKSEGMENT 1 | #define HAVE_PTHREAD_CONDATTR_SETCLOCK 1 | #define HAVE_PTHREAD_SIGMASK 1 | /* end confdefs.h. */ | /* Define pthread_set_name_np to an innocuous variant, in case declares pthread_set_name_np. | For example, HP-UX 11i declares gettimeofday. */ | #define pthread_set_name_np innocuous_pthread_set_name_np | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char pthread_set_name_np (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef pthread_set_name_np | | /* 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 pthread_set_name_np (); | /* 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_pthread_set_name_np || defined __stub___pthread_set_name_np | choke me | #endif | | int | main () | { | return pthread_set_name_np (); | ; | return 0; | } configure:27988: result: no configure:28003: checking for pthread_getattr_np configure:28003: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lpthread -lrt -lrt -lrt -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 372: warning: statement not reached Undefined first referenced symbol in file pthread_getattr_np conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:28003: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | #define HAVE_BUILTIN___BUILTIN_CONSTANT_P 1 | #define ATAN2_INF_C99 1 | #define HAVE_LIBRT 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_CLOCK_GETRES 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBRT 1 | #define HAVE_TIMER_CREATE 1 | #define HAVE_TIMER_SETTIME 1 | #define HAVE_DECL_TZNAME 1 | #define HAVE_TZNAME 1 | #define HAVE_DAYLIGHT 1 | #define NEGATIVE_TIME_T 1 | #define POSIX_SIGNAL 1 | #define HAVE_DIR_D_FD 1 | #define RSHIFT(x,y) ((x)>>(int)(y)) | #define HAVE__SC_CLK_TCK 1 | #define STACK_GROW_DIRECTION -1 | #define COROUTINE_H "coroutine/ucontext/Context.h" | #define _REENTRANT 1 | #define _THREAD_SAFE 1 | #define HAVE_LIBPTHREAD 1 | #define HAVE_SCHED_YIELD 1 | #define HAVE_PTHREAD_ATTR_SETINHERITSCHED 1 | #define HAVE_PTHREAD_ATTR_GETSTACK 1 | #define HAVE_PTHREAD_ATTR_GETGUARDSIZE 1 | #define HAVE_THR_STKSEGMENT 1 | #define HAVE_PTHREAD_CONDATTR_SETCLOCK 1 | #define HAVE_PTHREAD_SIGMASK 1 | /* end confdefs.h. */ | /* Define pthread_getattr_np to an innocuous variant, in case declares pthread_getattr_np. | For example, HP-UX 11i declares gettimeofday. */ | #define pthread_getattr_np innocuous_pthread_getattr_np | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char pthread_getattr_np (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef pthread_getattr_np | | /* 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 pthread_getattr_np (); | /* 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_pthread_getattr_np || defined __stub___pthread_getattr_np | choke me | #endif | | int | main () | { | return pthread_getattr_np (); | ; | return 0; | } configure:28003: result: no configure:28131: checking if mcontext_t is a pointer configure:28153: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 341: operands have incompatible types: struct {array[19] of int gregs, struct fpu {..} fpregs} "+" int "conftest.c", line 346: argument #1 is incompatible with prototype: prototype: struct {array[19] of int gregs, struct fpu {..} fpregs} : "conftest.c", line 341 argument : int cc: acomp failed for conftest.c configure:28153: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | #define HAVE_BUILTIN___BUILTIN_CONSTANT_P 1 | #define ATAN2_INF_C99 1 | #define HAVE_LIBRT 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_CLOCK_GETRES 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBRT 1 | #define HAVE_TIMER_CREATE 1 | #define HAVE_TIMER_SETTIME 1 | #define HAVE_DECL_TZNAME 1 | #define HAVE_TZNAME 1 | #define HAVE_DAYLIGHT 1 | #define NEGATIVE_TIME_T 1 | #define POSIX_SIGNAL 1 | #define HAVE_DIR_D_FD 1 | #define RSHIFT(x,y) ((x)>>(int)(y)) | #define HAVE__SC_CLK_TCK 1 | #define STACK_GROW_DIRECTION -1 | #define COROUTINE_H "coroutine/ucontext/Context.h" | #define _REENTRANT 1 | #define _THREAD_SAFE 1 | #define HAVE_LIBPTHREAD 1 | #define HAVE_SCHED_YIELD 1 | #define HAVE_PTHREAD_ATTR_SETINHERITSCHED 1 | #define HAVE_PTHREAD_ATTR_GETSTACK 1 | #define HAVE_PTHREAD_ATTR_GETGUARDSIZE 1 | #define HAVE_THR_STKSEGMENT 1 | #define HAVE_PTHREAD_CONDATTR_SETCLOCK 1 | #define HAVE_PTHREAD_SIGMASK 1 | /* end confdefs.h. */ | | #include | #ifdef HAVE_UCONTEXT_H | #include | #endif | mcontext_t test(mcontext_t mc) {return mc+1;} | | int | main () | { | test(0); | ; | return 0; | } configure:28160: result: no configure:28182: checking for getcontext configure:28182: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lpthread -lrt -lrt -lrt -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 373: warning: statement not reached configure:28182: $? = 0 configure:28182: result: yes configure:28182: checking for setcontext configure:28182: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lpthread -lrt -lrt -lrt -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 374: warning: statement not reached configure:28182: $? = 0 configure:28182: result: yes configure:28198: checking if fork works with pthread configure:28266: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lpthread -lrt -lrt -lrt -lsocket -ldl -lcrypt -lm >&5 configure:28266: $? = 0 configure:28266: ./conftest configure:28266: $? = 0 configure:28276: result: yes configure:28307: checking whether ELF binaries are produced configure:28323: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lpthread -lrt -lrt -lrt -lsocket -ldl -lcrypt -lm >&5 configure:28323: $? = 0 configure:28337: result: yes configure:28352: checking elf.h usability configure:28352: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:28352: $? = 0 configure:28352: result: yes configure:28352: checking elf.h presence configure:28352: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c configure:28352: $? = 0 configure:28352: result: yes configure:28352: checking for elf.h configure:28352: result: yes configure:28352: checking elf_abi.h usability configure:28352: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 374: cannot find include file: cc: acomp failed for conftest.c configure:28352: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | #define HAVE_BUILTIN___BUILTIN_CONSTANT_P 1 | #define ATAN2_INF_C99 1 | #define HAVE_LIBRT 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_CLOCK_GETRES 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBRT 1 | #define HAVE_TIMER_CREATE 1 | #define HAVE_TIMER_SETTIME 1 | #define HAVE_DECL_TZNAME 1 | #define HAVE_TZNAME 1 | #define HAVE_DAYLIGHT 1 | #define NEGATIVE_TIME_T 1 | #define POSIX_SIGNAL 1 | #define HAVE_DIR_D_FD 1 | #define RSHIFT(x,y) ((x)>>(int)(y)) | #define HAVE__SC_CLK_TCK 1 | #define STACK_GROW_DIRECTION -1 | #define COROUTINE_H "coroutine/ucontext/Context.h" | #define _REENTRANT 1 | #define _THREAD_SAFE 1 | #define HAVE_LIBPTHREAD 1 | #define HAVE_SCHED_YIELD 1 | #define HAVE_PTHREAD_ATTR_SETINHERITSCHED 1 | #define HAVE_PTHREAD_ATTR_GETSTACK 1 | #define HAVE_PTHREAD_ATTR_GETGUARDSIZE 1 | #define HAVE_THR_STKSEGMENT 1 | #define HAVE_PTHREAD_CONDATTR_SETCLOCK 1 | #define HAVE_PTHREAD_SIGMASK 1 | #define DEFINE_MCONTEXT_PTR(mc, uc) mcontext_t *mc = &(uc)->uc_mcontext | #define HAVE_GETCONTEXT 1 | #define HAVE_SETCONTEXT 1 | #define USE_ELF 1 | #define HAVE_ELF_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:28352: result: no configure:28352: checking elf_abi.h presence configure:28352: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c "conftest.c", line 341: cannot find include file: cc: acomp failed for conftest.c configure:28352: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | #define HAVE_BUILTIN___BUILTIN_CONSTANT_P 1 | #define ATAN2_INF_C99 1 | #define HAVE_LIBRT 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_CLOCK_GETRES 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBRT 1 | #define HAVE_TIMER_CREATE 1 | #define HAVE_TIMER_SETTIME 1 | #define HAVE_DECL_TZNAME 1 | #define HAVE_TZNAME 1 | #define HAVE_DAYLIGHT 1 | #define NEGATIVE_TIME_T 1 | #define POSIX_SIGNAL 1 | #define HAVE_DIR_D_FD 1 | #define RSHIFT(x,y) ((x)>>(int)(y)) | #define HAVE__SC_CLK_TCK 1 | #define STACK_GROW_DIRECTION -1 | #define COROUTINE_H "coroutine/ucontext/Context.h" | #define _REENTRANT 1 | #define _THREAD_SAFE 1 | #define HAVE_LIBPTHREAD 1 | #define HAVE_SCHED_YIELD 1 | #define HAVE_PTHREAD_ATTR_SETINHERITSCHED 1 | #define HAVE_PTHREAD_ATTR_GETSTACK 1 | #define HAVE_PTHREAD_ATTR_GETGUARDSIZE 1 | #define HAVE_THR_STKSEGMENT 1 | #define HAVE_PTHREAD_CONDATTR_SETCLOCK 1 | #define HAVE_PTHREAD_SIGMASK 1 | #define DEFINE_MCONTEXT_PTR(mc, uc) mcontext_t *mc = &(uc)->uc_mcontext | #define HAVE_GETCONTEXT 1 | #define HAVE_SETCONTEXT 1 | #define USE_ELF 1 | #define HAVE_ELF_H 1 | /* end confdefs.h. */ | #include configure:28352: result: no configure:28352: checking for elf_abi.h configure:28352: result: no configure:28370: checking for uncompress in -lz configure:28395: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lz -lpthread -lrt -lrt -lrt -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 354: warning: statement not reached configure:28395: $? = 0 configure:28404: result: yes configure:28422: checking mach-o/loader.h usability configure:28422: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 375: cannot find include file: cc: acomp failed for conftest.c configure:28422: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | #define HAVE_BUILTIN___BUILTIN_CONSTANT_P 1 | #define ATAN2_INF_C99 1 | #define HAVE_LIBRT 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_CLOCK_GETRES 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBRT 1 | #define HAVE_TIMER_CREATE 1 | #define HAVE_TIMER_SETTIME 1 | #define HAVE_DECL_TZNAME 1 | #define HAVE_TZNAME 1 | #define HAVE_DAYLIGHT 1 | #define NEGATIVE_TIME_T 1 | #define POSIX_SIGNAL 1 | #define HAVE_DIR_D_FD 1 | #define RSHIFT(x,y) ((x)>>(int)(y)) | #define HAVE__SC_CLK_TCK 1 | #define STACK_GROW_DIRECTION -1 | #define COROUTINE_H "coroutine/ucontext/Context.h" | #define _REENTRANT 1 | #define _THREAD_SAFE 1 | #define HAVE_LIBPTHREAD 1 | #define HAVE_SCHED_YIELD 1 | #define HAVE_PTHREAD_ATTR_SETINHERITSCHED 1 | #define HAVE_PTHREAD_ATTR_GETSTACK 1 | #define HAVE_PTHREAD_ATTR_GETGUARDSIZE 1 | #define HAVE_THR_STKSEGMENT 1 | #define HAVE_PTHREAD_CONDATTR_SETCLOCK 1 | #define HAVE_PTHREAD_SIGMASK 1 | #define DEFINE_MCONTEXT_PTR(mc, uc) mcontext_t *mc = &(uc)->uc_mcontext | #define HAVE_GETCONTEXT 1 | #define HAVE_SETCONTEXT 1 | #define USE_ELF 1 | #define HAVE_ELF_H 1 | #define HAVE_LIBZ 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:28422: result: no configure:28422: checking mach-o/loader.h presence configure:28422: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c "conftest.c", line 342: cannot find include file: cc: acomp failed for conftest.c configure:28422: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | #define HAVE_BUILTIN___BUILTIN_CONSTANT_P 1 | #define ATAN2_INF_C99 1 | #define HAVE_LIBRT 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_CLOCK_GETRES 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBRT 1 | #define HAVE_TIMER_CREATE 1 | #define HAVE_TIMER_SETTIME 1 | #define HAVE_DECL_TZNAME 1 | #define HAVE_TZNAME 1 | #define HAVE_DAYLIGHT 1 | #define NEGATIVE_TIME_T 1 | #define POSIX_SIGNAL 1 | #define HAVE_DIR_D_FD 1 | #define RSHIFT(x,y) ((x)>>(int)(y)) | #define HAVE__SC_CLK_TCK 1 | #define STACK_GROW_DIRECTION -1 | #define COROUTINE_H "coroutine/ucontext/Context.h" | #define _REENTRANT 1 | #define _THREAD_SAFE 1 | #define HAVE_LIBPTHREAD 1 | #define HAVE_SCHED_YIELD 1 | #define HAVE_PTHREAD_ATTR_SETINHERITSCHED 1 | #define HAVE_PTHREAD_ATTR_GETSTACK 1 | #define HAVE_PTHREAD_ATTR_GETGUARDSIZE 1 | #define HAVE_THR_STKSEGMENT 1 | #define HAVE_PTHREAD_CONDATTR_SETCLOCK 1 | #define HAVE_PTHREAD_SIGMASK 1 | #define DEFINE_MCONTEXT_PTR(mc, uc) mcontext_t *mc = &(uc)->uc_mcontext | #define HAVE_GETCONTEXT 1 | #define HAVE_SETCONTEXT 1 | #define USE_ELF 1 | #define HAVE_ELF_H 1 | #define HAVE_LIBZ 1 | /* end confdefs.h. */ | #include configure:28422: result: no configure:28422: checking for mach-o/loader.h configure:28422: result: no configure:28489: checking whether OS depend dynamic link works configure:28697: result: yes configure:29127: checking for backtrace configure:29127: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lz -lpthread -lrt -lrt -lrt -lsocket -ldl -lcrypt -lm >&5 "conftest.c", line 378: warning: statement not reached Undefined first referenced symbol in file backtrace conftest.o ld: fatal: symbol referencing errors. No output written to conftest configure:29127: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | #define HAVE_BUILTIN___BUILTIN_CONSTANT_P 1 | #define ATAN2_INF_C99 1 | #define HAVE_LIBRT 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_CLOCK_GETRES 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBRT 1 | #define HAVE_TIMER_CREATE 1 | #define HAVE_TIMER_SETTIME 1 | #define HAVE_DECL_TZNAME 1 | #define HAVE_TZNAME 1 | #define HAVE_DAYLIGHT 1 | #define NEGATIVE_TIME_T 1 | #define POSIX_SIGNAL 1 | #define HAVE_DIR_D_FD 1 | #define RSHIFT(x,y) ((x)>>(int)(y)) | #define HAVE__SC_CLK_TCK 1 | #define STACK_GROW_DIRECTION -1 | #define COROUTINE_H "coroutine/ucontext/Context.h" | #define _REENTRANT 1 | #define _THREAD_SAFE 1 | #define HAVE_LIBPTHREAD 1 | #define HAVE_SCHED_YIELD 1 | #define HAVE_PTHREAD_ATTR_SETINHERITSCHED 1 | #define HAVE_PTHREAD_ATTR_GETSTACK 1 | #define HAVE_PTHREAD_ATTR_GETGUARDSIZE 1 | #define HAVE_THR_STKSEGMENT 1 | #define HAVE_PTHREAD_CONDATTR_SETCLOCK 1 | #define HAVE_PTHREAD_SIGMASK 1 | #define DEFINE_MCONTEXT_PTR(mc, uc) mcontext_t *mc = &(uc)->uc_mcontext | #define HAVE_GETCONTEXT 1 | #define HAVE_SETCONTEXT 1 | #define USE_ELF 1 | #define HAVE_ELF_H 1 | #define HAVE_LIBZ 1 | /* end confdefs.h. */ | /* Define backtrace to an innocuous variant, in case declares backtrace. | For example, HP-UX 11i declares gettimeofday. */ | #define backtrace innocuous_backtrace | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char backtrace (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef backtrace | | /* 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 backtrace (); | /* 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_backtrace || defined __stub___backtrace | choke me | #endif | | int | main () | { | return backtrace (); | ; | return 0; | } configure:29127: result: no configure:29232: checking valgrind/memcheck.h usability configure:29232: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 375: cannot find include file: cc: acomp failed for conftest.c configure:29232: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | #define HAVE_BUILTIN___BUILTIN_CONSTANT_P 1 | #define ATAN2_INF_C99 1 | #define HAVE_LIBRT 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_CLOCK_GETRES 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBRT 1 | #define HAVE_TIMER_CREATE 1 | #define HAVE_TIMER_SETTIME 1 | #define HAVE_DECL_TZNAME 1 | #define HAVE_TZNAME 1 | #define HAVE_DAYLIGHT 1 | #define NEGATIVE_TIME_T 1 | #define POSIX_SIGNAL 1 | #define HAVE_DIR_D_FD 1 | #define RSHIFT(x,y) ((x)>>(int)(y)) | #define HAVE__SC_CLK_TCK 1 | #define STACK_GROW_DIRECTION -1 | #define COROUTINE_H "coroutine/ucontext/Context.h" | #define _REENTRANT 1 | #define _THREAD_SAFE 1 | #define HAVE_LIBPTHREAD 1 | #define HAVE_SCHED_YIELD 1 | #define HAVE_PTHREAD_ATTR_SETINHERITSCHED 1 | #define HAVE_PTHREAD_ATTR_GETSTACK 1 | #define HAVE_PTHREAD_ATTR_GETGUARDSIZE 1 | #define HAVE_THR_STKSEGMENT 1 | #define HAVE_PTHREAD_CONDATTR_SETCLOCK 1 | #define HAVE_PTHREAD_SIGMASK 1 | #define DEFINE_MCONTEXT_PTR(mc, uc) mcontext_t *mc = &(uc)->uc_mcontext | #define HAVE_GETCONTEXT 1 | #define HAVE_SETCONTEXT 1 | #define USE_ELF 1 | #define HAVE_ELF_H 1 | #define HAVE_LIBZ 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:29232: result: no configure:29232: checking valgrind/memcheck.h presence configure:29232: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c "conftest.c", line 342: cannot find include file: cc: acomp failed for conftest.c configure:29232: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | #define HAVE_BUILTIN___BUILTIN_CONSTANT_P 1 | #define ATAN2_INF_C99 1 | #define HAVE_LIBRT 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_CLOCK_GETRES 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBRT 1 | #define HAVE_TIMER_CREATE 1 | #define HAVE_TIMER_SETTIME 1 | #define HAVE_DECL_TZNAME 1 | #define HAVE_TZNAME 1 | #define HAVE_DAYLIGHT 1 | #define NEGATIVE_TIME_T 1 | #define POSIX_SIGNAL 1 | #define HAVE_DIR_D_FD 1 | #define RSHIFT(x,y) ((x)>>(int)(y)) | #define HAVE__SC_CLK_TCK 1 | #define STACK_GROW_DIRECTION -1 | #define COROUTINE_H "coroutine/ucontext/Context.h" | #define _REENTRANT 1 | #define _THREAD_SAFE 1 | #define HAVE_LIBPTHREAD 1 | #define HAVE_SCHED_YIELD 1 | #define HAVE_PTHREAD_ATTR_SETINHERITSCHED 1 | #define HAVE_PTHREAD_ATTR_GETSTACK 1 | #define HAVE_PTHREAD_ATTR_GETGUARDSIZE 1 | #define HAVE_THR_STKSEGMENT 1 | #define HAVE_PTHREAD_CONDATTR_SETCLOCK 1 | #define HAVE_PTHREAD_SIGMASK 1 | #define DEFINE_MCONTEXT_PTR(mc, uc) mcontext_t *mc = &(uc)->uc_mcontext | #define HAVE_GETCONTEXT 1 | #define HAVE_SETCONTEXT 1 | #define USE_ELF 1 | #define HAVE_ELF_H 1 | #define HAVE_LIBZ 1 | /* end confdefs.h. */ | #include configure:29232: result: no configure:29232: checking for valgrind/memcheck.h configure:29232: result: no configure:29369: checking for gstrip flags configure:29382: cc -D_STDC_C99= -o conftest -g -D_XOPEN_SOURCE=600 conftest.c -lz -lpthread -lrt -lrt -lrt -lsocket -ldl -lcrypt -lm >&5 configure:29382: $? = 0 configure:29391: result: -S -x configure:30135: checking whether wrapper for LD_LIBRARY_PATH_32 is needed configure:30138: result: no configure:30162: checking whether dtrace USDT is available configure:30188: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:30188: $? = 0 configure:30202: result: yes(-xnolibs) configure:30240: checking whether dtrace needs post processing configure:30268: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:30268: $? = 0 configure:30294: result: rebuild configure:30346: checking for __builtin_setjmp configure:30387: cc -D_STDC_C99= -o conftest -g -erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH -D_XOPEN_SOURCE=600 -L. conftest.c -lz -lpthread -lrt -lrt -lrt -lsocket -ldl -lcrypt -lm >&5 configure:30387: $? = 0 configure:30407: result: yes with cast () configure:30411: checking for _setjmpex as a macro or function configure:30434: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 "conftest.c", line 346: cannot find include file: "conftest.c", line 355: warning: implicit function declaration: _setjmpex cc: acomp failed for conftest.c configure:30434: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBDL 1 | #define HAVE_LIBSOCKET 1 | #define HAVE_DIRENT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_ATOMIC_H 1 | #define HAVE_GRP_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_IEEEFP_H 1 | #define HAVE_LANGINFO_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_FCNTL_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_MKDEV_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SENDFILE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_SYSCALL_H 1 | #define HAVE_SYS_SYSMACROS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UTIME_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UCONTEXT_H 1 | #define HAVE_UTIME_H 1 | #define _LARGEFILE_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_TYPEOF 1 | #define restrict __restrict__ | #define HAVE_LONG_LONG 1 | #define HAVE_OFF_T 1 | #define SIZEOF_INT 4 | #define SIZEOF_SHORT 2 | #define SIZEOF_LONG 4 | #define SIZEOF_LONG_LONG 8 | #define SIZEOF___INT64 0 | #define SIZEOF___INT128 0 | #define SIZEOF_OFF_T 8 | #define SIZEOF_VOIDP 4 | #define SIZEOF_FLOAT 4 | #define SIZEOF_DOUBLE 8 | #define SIZEOF_TIME_T 4 | #define SIZEOF_CLOCK_T 4 | #define PACKED_STRUCT(x) x __attribute__((packed)) | #define PRI_LL_PREFIX "ll" | #define HAVE_PID_T 1 | #define rb_pid_t pid_t | #define SIGNEDNESS_OF_PID_T -1 | #define PIDT2NUM(v) LONG2NUM(v) | #define NUM2PIDT(v) NUM2LONG(v) | #define PRI_PIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_UID_T 1 | #define rb_uid_t uid_t | #define SIGNEDNESS_OF_UID_T -1 | #define UIDT2NUM(v) LONG2NUM(v) | #define NUM2UIDT(v) NUM2LONG(v) | #define PRI_UIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_GID_T 1 | #define rb_gid_t gid_t | #define SIGNEDNESS_OF_GID_T -1 | #define GIDT2NUM(v) LONG2NUM(v) | #define NUM2GIDT(v) NUM2LONG(v) | #define PRI_GIDT_PREFIX PRI_LONG_PREFIX | #define HAVE_TIME_T 1 | #define rb_time_t time_t | #define SIGNEDNESS_OF_TIME_T -1 | #define TIMET2NUM(v) LONG2NUM(v) | #define NUM2TIMET(v) NUM2LONG(v) | #define PRI_TIMET_PREFIX PRI_LONG_PREFIX | #define HAVE_DEV_T 1 | #define rb_dev_t dev_t | #define SIGNEDNESS_OF_DEV_T +1 | #define DEVT2NUM(v) ULONG2NUM(v) | #define NUM2DEVT(v) NUM2ULONG(v) | #define PRI_DEVT_PREFIX PRI_LONG_PREFIX | #define HAVE_MODE_T 1 | #define rb_mode_t mode_t | #define SIGNEDNESS_OF_MODE_T +1 | #define MODET2NUM(v) ULONG2NUM(v) | #define NUM2MODET(v) NUM2ULONG(v) | #define PRI_MODET_PREFIX PRI_LONG_PREFIX | #define HAVE_RLIM_T 1 | #define rb_rlim_t rlim_t | #define SIGNEDNESS_OF_RLIM_T +1 | #define RLIM2NUM(v) ULL2NUM(v) | #define NUM2RLIM(v) NUM2ULL(v) | #define PRI_RLIM_PREFIX PRI_LL_PREFIX | #define HAVE_OFF_T 1 | #define rb_off_t off_t | #define SIGNEDNESS_OF_OFF_T -1 | #define OFFT2NUM(v) LL2NUM(v) | #define NUM2OFFT(v) NUM2LL(v) | #define PRI_OFFT_PREFIX PRI_LL_PREFIX | #define HAVE_CLOCKID_T 1 | #define rb_clockid_t clockid_t | #define SIGNEDNESS_OF_CLOCKID_T -1 | #define CLOCKID2NUM(v) INT2NUM(v) | #define NUM2CLOCKID(v) NUM2INT(v) | #define PRI_CLOCKID_PREFIX PRI_INT_PREFIX | #define HAVE_VA_ARGS_MACRO 1 | #define CONSTFUNC(x) __attribute__ ((__const__)) x | #define PUREFUNC(x) __attribute__ ((__pure__)) x | #define NORETURN(x) __attribute__ ((__noreturn__)) x | #define NOINLINE(x) __attribute__ ((__noinline__)) x | #define ALWAYS_INLINE(x) __attribute__ ((__always_inline__)) x | #define WEAK(x) __attribute__ ((__weak__)) x | #define HAVE_FUNC_WEAK 1 | #define RUBY_CXX_DEPRECATED(msg) __attribute__((__deprecated__(msg))) | #define RUBY_FUNC_EXPORTED __attribute__ ((__visibility__("default"))) extern | #define RUBY_FUNCTION_NAME_STRING __func__ | #define HAVE_DECL_SYS_NERR 0 | #define HAVE_DECL_GETENV 1 | #define SIZEOF_SIZE_T 4 | #define SIZEOF_PTRDIFF_T 4 | #define PRI_SIZE_PREFIX "z" | #define PRI_PTRDIFF_PREFIX "t" | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 | #define HAVE_STRUCT_STAT_ST_BLOCKS 1 | #define HAVE_STRUCT_STAT_ST_RDEV 1 | #define SIZEOF_STRUCT_STAT_ST_SIZE SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_BLOCKS SIZEOF_OFF_T | #define SIZEOF_STRUCT_STAT_ST_INO SIZEOF_LONG_LONG | #define HAVE_STRUCT_STAT_ST_ATIM 1 | #define HAVE_STRUCT_STAT_ST_MTIM 1 | #define HAVE_STRUCT_STAT_ST_CTIM 1 | #define HAVE_STRUCT_TIMEVAL 1 | #define SIZEOF_STRUCT_TIMEVAL_TV_SEC SIZEOF_TIME_T | #define HAVE_STRUCT_TIMESPEC 1 | #define HAVE_STRUCT_TIMEZONE 1 | #define HAVE_RB_FD_INIT 1 | #define HAVE_INT8_T 1 | #define SIZEOF_INT8_T 1 | #define HAVE_UINT8_T 1 | #define SIZEOF_UINT8_T 1 | #define HAVE_INT16_T 1 | #define SIZEOF_INT16_T 2 | #define HAVE_UINT16_T 1 | #define SIZEOF_UINT16_T 2 | #define HAVE_INT32_T 1 | #define SIZEOF_INT32_T 4 | #define HAVE_UINT32_T 1 | #define SIZEOF_UINT32_T 4 | #define HAVE_INT64_T 1 | #define SIZEOF_INT64_T 8 | #define HAVE_UINT64_T 1 | #define SIZEOF_UINT64_T 8 | #define HAVE_INTPTR_T 1 | #define SIZEOF_INTPTR_T 4 | #define HAVE_UINTPTR_T 1 | #define SIZEOF_UINTPTR_T 4 | #define HAVE_SSIZE_T 1 | #define SIZEOF_SSIZE_T 4 | #define GETGROUPS_T gid_t | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_ACOSH 1 | #define HAVE_CBRT 1 | #define HAVE_CRYPT 1 | #define HAVE_DUP2 1 | #define HAVE_ERF 1 | #define HAVE_FFS 1 | #define HAVE_HYPOT 1 | #define HAVE_LGAMMA_R 1 | #define HAVE_MEMMOVE 1 | #define HAVE_NAN 1 | #define HAVE_NEXTAFTER 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR 1 | #define HAVE_STRLCAT 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRSTR 1 | #define HAVE_TGAMMA 1 | #define HAVE_FINITE 1 | #define HAVE_ISINF 1 | #define HAVE_ISNAN 1 | #define HAVE_SIGNBIT 1 | #define HAVE_FORK 1 | #define vfork fork | #define HAVE_WORKING_FORK 1 | #define HAVE__LONGJMP 1 | #define HAVE_ATAN2L 1 | #define HAVE_ATAN2F 1 | #define HAVE_CHROOT 1 | #define HAVE_COSH 1 | #define HAVE_DL_ITERATE_PHDR 1 | #define HAVE_DLOPEN 1 | #define HAVE_DLADDR 1 | #define HAVE_DUP 1 | #define HAVE_ENDGRENT 1 | #define HAVE_FCHMOD 1 | #define HAVE_FCHOWN 1 | #define HAVE_FCNTL 1 | #define HAVE_FDATASYNC 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FMOD 1 | #define HAVE_FSTATAT 1 | #define HAVE_FSYNC 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_FTRUNCATE64 1 | #define HAVE_GETCWD 1 | #define HAVE_GETGRNAM 1 | #define HAVE_GETGRNAM_R 1 | #define HAVE_GETGROUPS 1 | #define HAVE_GETLOGIN 1 | #define HAVE_GETLOGIN_R 1 | #define HAVE_GETPGID 1 | #define HAVE_GETPGRP 1 | #define HAVE_GETPRIORITY 1 | #define HAVE_GETPWNAM 1 | #define HAVE_GETPWNAM_R 1 | #define HAVE_GETPWUID 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_GETRLIMIT 1 | #define HAVE_GETSID 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_GRANTPT 1 | #define HAVE_INITGROUPS 1 | #define HAVE_IOCTL 1 | #define HAVE_ISSETUGID 1 | #define HAVE_KILLPG 1 | #define HAVE_LCHOWN 1 | #define HAVE_LINK 1 | #define HAVE_LLABS 1 | #define HAVE_LOCKF 1 | #define HAVE_LOG2 1 | #define HAVE_LSTAT 1 | #define HAVE_MBLEN 1 | #define HAVE_MEMALIGN 1 | #define HAVE_WRITEV 1 | #define HAVE_MKFIFO 1 | #define HAVE_MKNOD 1 | #define HAVE_MKTIME 1 | #define HAVE_OPENAT 1 | #define HAVE_POLL 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_ROUND 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SELECT_LARGE_FDSET 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETGID 1 | #define HAVE_SETGROUPS 1 | #define HAVE_SETPGID 1 | #define HAVE_SETPGRP 1 | #define HAVE_SETREGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETRLIMIT 1 | #define HAVE_SETSID 1 | #define HAVE_SETUID 1 | #define HAVE_SHUTDOWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGPROCMASK 1 | #define HAVE_SINH 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCALL 1 | #define HAVE_SYSCONF 1 | #define HAVE_TANH 1 | #define HAVE_TELLDIR 1 | #define HAVE_TIMES 1 | #define HAVE_TRUNCATE 1 | #define HAVE_TRUNCATE64 1 | #define HAVE_UNSETENV 1 | #define HAVE_UTIMENSAT 1 | #define HAVE_UTIMES 1 | #define HAVE_WAIT4 1 | #define HAVE_WAITPID 1 | #define NO_GETCWD_MALLOC 1 | #define HAVE_BUILTIN___BUILTIN_CONSTANT_P 1 | #define ATAN2_INF_C99 1 | #define HAVE_LIBRT 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_CLOCK_GETRES 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBRT 1 | #define HAVE_TIMER_CREATE 1 | #define HAVE_TIMER_SETTIME 1 | #define HAVE_DECL_TZNAME 1 | #define HAVE_TZNAME 1 | #define HAVE_DAYLIGHT 1 | #define NEGATIVE_TIME_T 1 | #define POSIX_SIGNAL 1 | #define HAVE_DIR_D_FD 1 | #define RSHIFT(x,y) ((x)>>(int)(y)) | #define HAVE__SC_CLK_TCK 1 | #define STACK_GROW_DIRECTION -1 | #define COROUTINE_H "coroutine/ucontext/Context.h" | #define _REENTRANT 1 | #define _THREAD_SAFE 1 | #define HAVE_LIBPTHREAD 1 | #define HAVE_SCHED_YIELD 1 | #define HAVE_PTHREAD_ATTR_SETINHERITSCHED 1 | #define HAVE_PTHREAD_ATTR_GETSTACK 1 | #define HAVE_PTHREAD_ATTR_GETGUARDSIZE 1 | #define HAVE_THR_STKSEGMENT 1 | #define HAVE_PTHREAD_CONDATTR_SETCLOCK 1 | #define HAVE_PTHREAD_SIGMASK 1 | #define DEFINE_MCONTEXT_PTR(mc, uc) mcontext_t *mc = &(uc)->uc_mcontext | #define HAVE_GETCONTEXT 1 | #define HAVE_SETCONTEXT 1 | #define USE_ELF 1 | #define HAVE_ELF_H 1 | #define HAVE_LIBZ 1 | #define DLEXT_MAXLEN 3 | #define DLEXT ".so" | /* end confdefs.h. */ | | #include | #include | | #define JMPARGS_1 env | #define JMPARGS_2 env,1 | #define JMPARGS JMPARGS_1 | | int | main () | { | jmp_buf env; _setjmpex(JMPARGS); | ; | return 0; | } configure:30442: result: no configure:30450: checking for _setjmp as a macro or function configure:30472: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:30472: $? = 0 configure:30480: result: yes configure:30488: checking for sigsetjmp as a macro or function configure:30510: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:30510: $? = 0 configure:30518: result: yes configure:30525: checking for setjmp type configure:30606: result: __builtin_setjmp configure:30750: checking for prefix of external symbols configure:30767: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:30767: $? = 0 configure:30779: result: NONE configure:30976: checking pthread.h usability configure:30976: cc -D_STDC_C99= -c -g -D_XOPEN_SOURCE=600 conftest.c >&5 configure:30976: $? = 0 configure:30976: result: yes configure:30976: checking pthread.h presence configure:30976: cc -D_STDC_C99= -E -D_XOPEN_SOURCE=600 conftest.c configure:30976: $? = 0 configure:30976: result: yes configure:30976: checking for pthread.h configure:30976: result: yes configure:31006: checking if make is GNU make configure:31022: result: no configure:31030: checking for safe null command for make configure:31051: result: true configure:31637: ruby library version = 3.0.0 configure:31842: creating ./config.status ## ---------------------- ## ## Running config.status. ## ## ---------------------- ## This file was extended by config.status, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = CONFIG_HEADERS = CONFIG_LINKS = CONFIG_COMMANDS = $ ./config.status on IrisDCIPIQlab config.status:956: creating Makefile config.status:956: creating ruby-3.0.pc ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_build=i386-pc-solaris2.10 ac_cv_c_bigendian=no ac_cv_c_char_unsigned=no ac_cv_c_compiler_gnu=no ac_cv_c_const=yes ac_cv_c_inline=inline ac_cv_c_restrict=__restrict__ ac_cv_c_typeof=typeof ac_cv_c_volatile=yes ac_cv_cxx_compiler_gnu=no ac_cv_env_AR_set= ac_cv_env_AR_value= ac_cv_env_AS_set= ac_cv_env_AS_value= ac_cv_env_CCC_set= ac_cv_env_CCC_value= 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_CXXFLAGS_set= ac_cv_env_CXXFLAGS_value= ac_cv_env_CXX_set= ac_cv_env_CXX_value= ac_cv_env_LDFLAGS_set= ac_cv_env_LDFLAGS_value= ac_cv_env_LD_set= ac_cv_env_LD_value= ac_cv_env_LIBS_set= ac_cv_env_LIBS_value= ac_cv_env_NM_set= ac_cv_env_NM_value= ac_cv_env_OBJCOPY_set= ac_cv_env_OBJCOPY_value= ac_cv_env_OBJDUMP_set= ac_cv_env_OBJDUMP_value= ac_cv_env_RANLIB_set= ac_cv_env_RANLIB_value= ac_cv_env_STRIP_set= ac_cv_env_STRIP_value= ac_cv_env_build_alias_set= ac_cv_env_build_alias_value= ac_cv_env_cflags_set= ac_cv_env_cflags_value= ac_cv_env_cppflags_set= ac_cv_env_cppflags_value= ac_cv_env_cxxflags_set= ac_cv_env_cxxflags_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___builtin_setjmp='yes with cast ()' ac_cv_func___cospi=no ac_cv_func___sinpi=no ac_cv_func___syscall=no ac_cv_func__longjmp=yes ac_cv_func__setjmp=yes ac_cv_func__setjmpex=no ac_cv_func_acosh=yes ac_cv_func_alloca_works=yes ac_cv_func_arc4random_buf=no ac_cv_func_atan2f=yes ac_cv_func_atan2l=yes ac_cv_func_backtrace=no ac_cv_func_cbrt=yes ac_cv_func_chroot=yes ac_cv_func_chsize=no ac_cv_func_clock_getres=yes ac_cv_func_clock_gettime=no ac_cv_func_copy_file_range=no ac_cv_func_cosh=yes ac_cv_func_crypt=yes ac_cv_func_crypt_r=no ac_cv_func_daemon=no ac_cv_func_dirfd=no ac_cv_func_dl_iterate_phdr=yes ac_cv_func_dladdr=yes ac_cv_func_dlopen=yes ac_cv_func_dup2=yes ac_cv_func_dup3=no ac_cv_func_dup=yes ac_cv_func_eaccess=no ac_cv_func_endgrent=yes ac_cv_func_erf=yes ac_cv_func_eventfd=no ac_cv_func_explicit_bzero=no ac_cv_func_explicit_memset=no ac_cv_func_fchmod=yes ac_cv_func_fchown=yes ac_cv_func_fcntl=yes ac_cv_func_fcopyfile=no ac_cv_func_fdatasync=yes ac_cv_func_fdopendir=yes ac_cv_func_ffs=yes ac_cv_func_fgetattrlist=no ac_cv_func_finite=yes ac_cv_func_flock=no ac_cv_func_fmod=yes ac_cv_func_fork=yes ac_cv_func_fork_works=yes ac_cv_func_fstatat=yes ac_cv_func_fsync=yes ac_cv_func_ftruncate64=yes ac_cv_func_ftruncate=yes ac_cv_func_getattrlist=no ac_cv_func_getcontext=yes ac_cv_func_getcwd=yes ac_cv_func_getgidx=no ac_cv_func_getgrnam=yes ac_cv_func_getgrnam_r=yes ac_cv_func_getgroups=yes ac_cv_func_getlogin=yes ac_cv_func_getlogin_r=yes ac_cv_func_getpgid=yes ac_cv_func_getpgrp=yes ac_cv_func_getpriority=yes ac_cv_func_getpwnam=yes ac_cv_func_getpwnam_r=yes ac_cv_func_getpwuid=yes ac_cv_func_getpwuid_r=yes ac_cv_func_getrandom=no ac_cv_func_getresgid=no ac_cv_func_getresuid=no ac_cv_func_getrlimit=yes ac_cv_func_getsid=yes ac_cv_func_gettimeofday=yes ac_cv_func_getuidx=no ac_cv_func_gmtime_r=yes ac_cv_func_grantpt=yes ac_cv_func_hypot=yes ac_cv_func_initgroups=yes ac_cv_func_ioctl=yes ac_cv_func_isfinite=no ac_cv_func_issetugid=yes ac_cv_func_killpg=yes ac_cv_func_lchmod=no ac_cv_func_lchown=yes ac_cv_func_lgamma_r=yes ac_cv_func_link=yes ac_cv_func_llabs=yes ac_cv_func_lockf=yes ac_cv_func_log2=yes ac_cv_func_lstat=yes ac_cv_func_lutimes=no ac_cv_func_malloc_size=no ac_cv_func_malloc_usable_size=no ac_cv_func_mblen=yes ac_cv_func_memalign=yes ac_cv_func_memcmp_working=yes ac_cv_func_memmem=no ac_cv_func_memmove=yes ac_cv_func_memrchr=no ac_cv_func_memset_s=no ac_cv_func_mkfifo=yes ac_cv_func_mknod=yes ac_cv_func_mktime=yes ac_cv_func_nan=yes ac_cv_func_nextafter=yes ac_cv_func_openat=yes ac_cv_func_pipe2=no ac_cv_func_poll=yes ac_cv_func_posix_fadvise=no ac_cv_func_posix_memalign=no ac_cv_func_ppoll=no ac_cv_func_pread=yes ac_cv_func_pthread_attr_get_np=no ac_cv_func_pthread_attr_getguardsize=yes ac_cv_func_pthread_attr_getstack=yes ac_cv_func_pthread_attr_setinheritsched=yes ac_cv_func_pthread_condattr_setclock=yes ac_cv_func_pthread_get_stackaddr_np=no ac_cv_func_pthread_get_stacksize_np=no ac_cv_func_pthread_getattr_np=no ac_cv_func_pthread_getthrds_np=no ac_cv_func_pthread_set_name_np=no ac_cv_func_pthread_setname_np=no ac_cv_func_pthread_sigmask=yes ac_cv_func_pthread_stackseg_np=no ac_cv_func_pwrite=yes ac_cv_func_qsort_r=no ac_cv_func_qsort_s=no ac_cv_func_readlink=yes ac_cv_func_realpath=yes ac_cv_func_round=yes ac_cv_func_sched_getaffinity=no ac_cv_func_sched_yield=yes ac_cv_func_seekdir=yes ac_cv_func_select_large_fdset=yes ac_cv_func_sendfile=no ac_cv_func_setcontext=yes ac_cv_func_setegid=yes ac_cv_func_setenv=yes ac_cv_func_seteuid=yes ac_cv_func_setgid=yes ac_cv_func_setgroups=yes ac_cv_func_setpgid=yes ac_cv_func_setpgrp=yes ac_cv_func_setproctitle=no ac_cv_func_setregid=yes ac_cv_func_setresgid=no ac_cv_func_setresuid=no ac_cv_func_setreuid=yes ac_cv_func_setrgid=no ac_cv_func_setrlimit=yes ac_cv_func_setruid=no ac_cv_func_setsid=yes ac_cv_func_setuid=yes ac_cv_func_shutdown=yes ac_cv_func_sigaction=yes ac_cv_func_sigaltstack=yes ac_cv_func_sigprocmask=yes ac_cv_func_sigsetjmp=yes ac_cv_func_sinh=yes ac_cv_func_spawnv=no ac_cv_func_strchr=yes ac_cv_func_strerror=yes ac_cv_func_strlcat=yes ac_cv_func_strlcpy=yes ac_cv_func_strstr=yes ac_cv_func_symlink=yes ac_cv_func_syscall=yes ac_cv_func_sysconf=yes ac_cv_func_tanh=yes ac_cv_func_telldir=yes ac_cv_func_tgamma=yes ac_cv_func_thr_stksegment=yes ac_cv_func_timegm=no ac_cv_func_times=yes ac_cv_func_truncate64=yes ac_cv_func_truncate=yes ac_cv_func_unsetenv=yes ac_cv_func_utimensat=yes ac_cv_func_utimes=yes ac_cv_func_vfork=no ac_cv_func_vfork_works=no ac_cv_func_wait4=yes ac_cv_func_waitpid=yes ac_cv_func_writev=yes ac_cv_have_decl_finite=no ac_cv_have_decl_getenv=yes ac_cv_have_decl_isinf=yes ac_cv_have_decl_isnan=yes ac_cv_have_decl_sys_nerr=no ac_cv_have_decl_tzname=yes ac_cv_header_a_out_h=no ac_cv_header_atomic_h=yes ac_cv_header_copyfile_h=no ac_cv_header_direct_h=no ac_cv_header_dirent_dirent_h=yes ac_cv_header_elf_abi_h=no ac_cv_header_elf_h=yes ac_cv_header_fcntl_h=yes ac_cv_header_float_h=yes ac_cv_header_gmp_h=no ac_cv_header_grp_h=yes ac_cv_header_ieeefp_h=yes ac_cv_header_intrinsics_h=no ac_cv_header_inttypes_h=yes ac_cv_header_langinfo_h=yes ac_cv_header_limits_h=yes ac_cv_header_locale_h=yes ac_cv_header_mach_o_loader_h=no ac_cv_header_malloc_h=yes ac_cv_header_malloc_malloc_h=no ac_cv_header_malloc_np_h=no ac_cv_header_memory_h=yes ac_cv_header_minix_config_h=no ac_cv_header_net_socket_h=no ac_cv_header_process_h=no ac_cv_header_pthread_h=yes ac_cv_header_pthread_np_h=no ac_cv_header_pwd_h=yes ac_cv_header_sanitizer_asan_interface_h=no ac_cv_header_sanitizer_msan_interface_h=no ac_cv_header_setjmpex_h=no ac_cv_header_stdalign_h=no ac_cv_header_stdbool_h=yes ac_cv_header_stdc=yes ac_cv_header_stdint_h=yes ac_cv_header_stdlib_h=yes ac_cv_header_string_h=yes ac_cv_header_strings_h=yes ac_cv_header_sys_attr_h=no ac_cv_header_sys_eventfd_h=no ac_cv_header_sys_fcntl_h=yes ac_cv_header_sys_file_h=yes ac_cv_header_sys_id_h=no ac_cv_header_sys_ioctl_h=yes ac_cv_header_sys_mkdev_h=yes ac_cv_header_sys_param_h=yes ac_cv_header_sys_prctl_h=no ac_cv_header_sys_pstat_h=no ac_cv_header_sys_resource_h=yes ac_cv_header_sys_select_h=yes ac_cv_header_sys_sendfile_h=yes ac_cv_header_sys_socket_h=yes ac_cv_header_sys_stat_h=yes ac_cv_header_sys_syscall_h=yes ac_cv_header_sys_sysmacros_h=yes ac_cv_header_sys_time_h=yes ac_cv_header_sys_times_h=yes ac_cv_header_sys_types_h=yes ac_cv_header_sys_uio_h=yes ac_cv_header_sys_utime_h=yes ac_cv_header_sys_wait_h=yes ac_cv_header_syscall_h=no ac_cv_header_time_h=yes ac_cv_header_ucontext_h=yes ac_cv_header_unistd_h=yes ac_cv_header_utime_h=yes ac_cv_header_valgrind_memcheck_h=no ac_cv_header_vfork_h=no ac_cv_host=i386-pc-solaris2.10 ac_cv_lib_crypt_crypt=yes ac_cv_lib_dl_dlopen=yes ac_cv_lib_dld_shl_load=no ac_cv_lib_pthread___pthread_create=yes ac_cv_lib_rt_clock_gettime=yes ac_cv_lib_rt_timer_create=yes ac_cv_lib_rt_timer_settime=yes ac_cv_lib_socket_shutdown=yes ac_cv_lib_thr___pthread_create=no ac_cv_lib_z_uncompress=yes ac_cv_member_DIR_d_fd=yes ac_cv_member_DIR_dd_fd=no ac_cv_member_struct_stat_st_atim=yes ac_cv_member_struct_stat_st_atimensec=no ac_cv_member_struct_stat_st_atimespec=no ac_cv_member_struct_stat_st_birthtimespec=no ac_cv_member_struct_stat_st_blksize=yes ac_cv_member_struct_stat_st_blocks=yes ac_cv_member_struct_stat_st_ctim=yes ac_cv_member_struct_stat_st_ctimensec=no ac_cv_member_struct_stat_st_ctimespec=no ac_cv_member_struct_stat_st_mtim=yes ac_cv_member_struct_stat_st_mtimensec=no ac_cv_member_struct_stat_st_mtimespec=no ac_cv_member_struct_stat_st_rdev=yes ac_cv_member_struct_statx_stx_btime=no ac_cv_member_struct_tm_tm_zone=no ac_cv_objext=o ac_cv_path_BASERUBY=/opt/csw/bin/ruby ac_cv_path_EGREP='/usr/sfw/bin/ggrep -E' ac_cv_path_GREP=/usr/sfw/bin/ggrep ac_cv_path_MJIT_CC=/usr/bin/cc ac_cv_path_ac_pt_LD=/usr/ccs/bin/ld ac_cv_path_install='/opt/csw/bin/ginstall -c' ac_cv_path_mkdir=/opt/csw/bin/gmkdir ac_cv_prog_CPP='cc -D_STDC_C99= -E' ac_cv_prog_DTRACE=dtrace ac_cv_prog_PKG_CONFIG=pkg-config ac_cv_prog_ac_ct_AR=gar ac_cv_prog_ac_ct_AS=gas ac_cv_prog_ac_ct_CC=cc ac_cv_prog_ac_ct_CXX=CC ac_cv_prog_ac_ct_NM=gnm ac_cv_prog_ac_ct_OBJCOPY=gobjcopy ac_cv_prog_ac_ct_OBJDUMP=gobjdump ac_cv_prog_ac_ct_RANLIB=ranlib ac_cv_prog_ac_ct_STRIP=gstrip ac_cv_prog_cc_c89= ac_cv_prog_cc_c99=-D_STDC_C99= ac_cv_prog_cc_g=yes ac_cv_prog_cxx_g=yes ac_cv_prog_make_make_set=yes ac_cv_safe_to_define___extensions__=yes ac_cv_search_opendir='none required' ac_cv_sizeof___int128=0 ac_cv_sizeof___int64=0 ac_cv_sizeof_clock_t=4 ac_cv_sizeof_double=8 ac_cv_sizeof_float=4 ac_cv_sizeof_int16_t=2 ac_cv_sizeof_int32_t=4 ac_cv_sizeof_int64_t=8 ac_cv_sizeof_int8_t=1 ac_cv_sizeof_int=4 ac_cv_sizeof_intptr_t=4 ac_cv_sizeof_long=4 ac_cv_sizeof_long_long=8 ac_cv_sizeof_off_t=8 ac_cv_sizeof_ptrdiff_t=4 ac_cv_sizeof_short=2 ac_cv_sizeof_size_t=4 ac_cv_sizeof_ssize_t=4 ac_cv_sizeof_struct_stat_st_blocks=SIZEOF_OFF_T ac_cv_sizeof_struct_stat_st_ino=SIZEOF_LONG_LONG ac_cv_sizeof_struct_stat_st_size=SIZEOF_OFF_T ac_cv_sizeof_struct_timeval_tv_sec=SIZEOF_TIME_T ac_cv_sizeof_time_t=4 ac_cv_sizeof_uint16_t=2 ac_cv_sizeof_uint32_t=4 ac_cv_sizeof_uint64_t=8 ac_cv_sizeof_uint8_t=1 ac_cv_sizeof_uintptr_t=4 ac_cv_sizeof_voidp=4 ac_cv_struct_tm=time.h ac_cv_sys_file_offset_bits=64 ac_cv_sys_largefile_CC=no ac_cv_target=i386-pc-solaris2.10 ac_cv_type__Bool=yes ac_cv_type_clockid_t=yes ac_cv_type_dev_t=yes ac_cv_type_fd_mask=yes ac_cv_type_getgroups=gid_t ac_cv_type_gid_t=yes ac_cv_type_long_long=yes ac_cv_type_mode_t=yes ac_cv_type_off_t=yes ac_cv_type_pid_t=yes ac_cv_type_rlim_t=yes ac_cv_type_sig_t=no ac_cv_type_size_t=yes ac_cv_type_struct_timespec=yes ac_cv_type_struct_timeval=yes ac_cv_type_struct_timezone=yes ac_cv_type_time_t=yes ac_cv_type_uid_t=yes ac_cv_var_tzname=yes ac_cv_working_alloca_h=yes rb_cv_CXX_nullptr=no rb_cv_CentOS6_CXX_workaround=yes rb_cv_arflags=rcu rb_cv_atan2_inf_c99=yes rb_cv_binary_elf=yes rb_cv_builtin___builtin_add_overflow=no rb_cv_builtin___builtin_alloca_with_align=no rb_cv_builtin___builtin_assume_aligned=no rb_cv_builtin___builtin_bswap16=no rb_cv_builtin___builtin_bswap32=no rb_cv_builtin___builtin_bswap64=no rb_cv_builtin___builtin_choose_expr=no rb_cv_builtin___builtin_clz=no rb_cv_builtin___builtin_clzl=no rb_cv_builtin___builtin_clzll=no rb_cv_builtin___builtin_constant_p=yes rb_cv_builtin___builtin_ctz=no rb_cv_builtin___builtin_ctzll=no rb_cv_builtin___builtin_mul_overflow=no rb_cv_builtin___builtin_mul_overflow_p=no rb_cv_builtin___builtin_popcount=no rb_cv_builtin___builtin_popcountll=no rb_cv_builtin___builtin_sub_overflow=no rb_cv_builtin___builtin_trap=no rb_cv_builtin___builtin_types_compatible_p=no rb_cv_char_bit=8 rb_cv_clockid_t_convertible=INT rb_cv_coroutine=ucontext rb_cv_cppoutfile=yes rb_cv_dev_t_convertible=ULONG rb_cv_dlopen=yes rb_cv_dtrace_available='yes(-xnolibs)' rb_cv_dynamic_alloca=ok rb_cv_enum_over_int=no rb_cv_fork_with_pthread=yes rb_cv_func___always_inline__='__attribute__ ((__always_inline__)) x' rb_cv_func___builtin_unreachable=no rb_cv_func___const__='__attribute__ ((__const__)) x' rb_cv_func___deprecated__=x rb_cv_func___error__=x rb_cv_func___no_address_safety_analysis__=x rb_cv_func___no_sanitize_address__=x rb_cv_func___noinline__='__attribute__ ((__noinline__)) x' rb_cv_func___noreturn__='__attribute__ ((__noreturn__)) x' rb_cv_func___pure__='__attribute__ ((__pure__)) x' rb_cv_func___unused__=x rb_cv_func___warn_unused_result__=x rb_cv_func___warning__=x rb_cv_func_cdecl=x rb_cv_func_deprecated_by=x rb_cv_func_exported='__attribute__ ((__visibility__("default")))' rb_cv_func_fastcall=x rb_cv_func_minimized=x rb_cv_func_no_sanitize=x rb_cv_func_nonnull=x rb_cv_func_stdcall=x rb_cv_func_unoptimized=x rb_cv_func_weak='__attribute__ ((__weak__)) x' rb_cv_function_name_string=__func__ rb_cv_gcc_compiler_cas=no rb_cv_getcwd_malloc=no rb_cv_gid_t_convertible=LONG rb_cv_have__alignof=no rb_cv_have_daylight=yes rb_cv_have_sc_clk_tck=yes rb_cv_have_signbit=yes rb_cv_have_stmt_and_decl_in_expr=no rb_cv_large_fd_select=yes rb_cv_localtime_overflow=yes rb_cv_mcontext_t_ptr=no rb_cv_member_struct_tm_tm_gmtoff=no rb_cv_mode_t_convertible=ULONG rb_cv_negative_time_t=yes rb_cv_off_t_convertible=LL rb_cv_packed_struct='x __attribute__((packed))' rb_cv_pid_t_convertible=LONG rb_cv_pri_prefix_int64_t=NONE rb_cv_pri_prefix_intptr_t=NONE rb_cv_pri_prefix_long_long=ll rb_cv_pri_prefix_ptrdiff_t=t rb_cv_pri_prefix_size_t=z rb_cv_prog_dtrace_g=rebuild rb_cv_prog_gnu_ld=no rb_cv_rlim_t_convertible=ULL rb_cv_rshift_sign=yes rb_cv_scalar_pthread_t=yes rb_cv_stack_end_address=no rb_cv_stack_grow_dir_i386=-1 rb_cv_symbol_prefix=NONE rb_cv_target_archs=i386 rb_cv_time_t_convertible=LONG rb_cv_type_int128_t=no rb_cv_type_int16_t=yes rb_cv_type_int32_t=yes rb_cv_type_int64_t=yes rb_cv_type_int8_t=yes rb_cv_type_intptr_t=yes rb_cv_type_ssize_t=yes rb_cv_type_uint128_t=no rb_cv_type_uint16_t=yes rb_cv_type_uint32_t=yes rb_cv_type_uint64_t=yes rb_cv_type_uint8_t=yes rb_cv_type_uintptr_t=yes rb_cv_uid_t_convertible=LONG rb_cv_unsetenv_return_value=yes rb_cv_use_copy_file_range=no rb_cv_va_args_macro=yes rb_cv_warnflags='-erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH' ## ----------------- ## ## Output variables. ## ## ----------------- ## ALLOCA='' AR='gar' ARCHFILE='' ARCH_FLAG='' ARFLAGS='rcu ' AS='gas' ASFLAGS='' ASMEXT='S' BASERUBY='echo executable host ruby is required. use --with-baseruby option.; false' BOOTSTRAPRUBY='$(MINIRUBY)' BTESTRUBY='$(MINIRUBY)' BUILTIN_ENCOBJS=' enc/ascii.$(OBJEXT) enc/us_ascii.$(OBJEXT) enc/unicode.$(OBJEXT) enc/utf_8.$(OBJEXT)' BUILTIN_TRANSOBJS=' enc/trans/newline.$(OBJEXT)' BUILTIN_TRANSSRCS=' enc/trans/newline.c' CAPITARGET='nodoc' CC='cc -D_STDC_C99=' CCDLFLAGS=' -KPIC' CC_VERSION='$(CC) -V' CC_VERSION_MESSAGE='cc: Sun C 5.12 SunOS_i386 2011/11/16' CC_WRAPPER='' CFLAGS='${cflags}' CHDIR='PWD= cd' COMMON_HEADERS='' COMMON_LIBS='' COMMON_MACROS='' CONFIGURE='configure' COUTFLAG='-o ' CP='cp' CPP='$(CC) -E' CPPFLAGS='-D_XOPEN_SOURCE=600 $(DEFS) ${cppflags}' CPPOUTFILE='-o conftest.i' CROSS_COMPILING='no' CSRCFLAG='' CXX='CC' CXXFLAGS='-U_XOPEN_SOURCE' DEFS='-D_LARGEFILE_SOURCE=1 -D_FILE_OFFSET_BITS=64' DESTDIR='' DLDFLAGS='' DLDLIBS=' -lc' DLDSHARED='$(CC) -G' DLEXT2='' DLEXT='so' DLLWRAP='' DLNOBJ='dln.o' DOT='' DOXYGEN='' DTRACE='dtrace' DTRACE_EXT='d' DTRACE_OBJ='probes.$(OBJEXT)' DTRACE_OPT='-xnolibs' DTRACE_REBUILD='yes' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='/usr/sfw/bin/ggrep -E' ENABLE_DEBUG_ENV='' ENABLE_SHARED='no' ENCOBJS='dmyenc.$(OBJEXT)' ENCSTATIC='' EXECUTABLE_EXTS='' EXEEXT='' EXPORT_PREFIX='' EXTDLDFLAGS='' EXTLDFLAGS='' EXTOBJS='dmyext.$(OBJEXT)' EXTOUT='.ext' EXTSTATIC='' GCC='' GIT='git' GNU_LD='no' GREP='/usr/sfw/bin/ggrep' HAVE_BASERUBY='no' HAVE_GIT='yes' INSTALLDOC='all' INSTALL_DATA='${INSTALL} -m 644' INSTALL_PROGRAM='${INSTALL}' INSTALL_SCRIPT='${INSTALL}' INSTALL_STATIC_LIBRARY='yes' LD='/usr/ccs/bin/ld' LDFLAGS='-L. ' LDSHARED='$(CC) -G' LDSHAREDXX='$(CXX) -G' LIBEXT='a' LIBOBJS=' ${LIBOBJDIR}explicit_bzero$U.o ${LIBOBJDIR}flock$U.o ${LIBOBJDIR}setproctitle$U.o ${LIBOBJDIR}addr2line$U.o' LIBPATHENV='LD_LIBRARY_PATH_32' LIBPATHFLAG=' -L%s' LIBRUBY='$(LIBRUBY_A)' LIBRUBYARG='$(LIBRUBYARG_STATIC)' LIBRUBYARG_SHARED='-L$(libdir) ' LIBRUBYARG_STATIC='-L$(libdir) -l$(RUBY_SO_NAME)-static $(MAINLIBS)' LIBRUBY_A='lib$(RUBY_SO_NAME)-static.a' LIBRUBY_ALIASES='lib$(RUBY_SO_NAME).$(SOEXT)' LIBRUBY_A_OBJS='$(DTRACE_GLOMMED_OBJ)' LIBRUBY_DLDFLAGS='' LIBRUBY_LDSHARED='$(CC) -G' LIBRUBY_RELATIVE='no' LIBRUBY_SO='lib$(RUBY_SO_NAME).$(SOEXT).$(RUBY_PROGRAM_VERSION)' LIBRUBY_SONAME='lib$(RUBY_SO_NAME).$(SOEXT).$(RUBY_API_VERSION)' LIBS='-lm ' LINK_SO='' LN_S='ln -s' LTLIBOBJS=' ${LIBOBJDIR}explicit_bzero$U.lo ${LIBOBJDIR}flock$U.lo ${LIBOBJDIR}setproctitle$U.lo ${LIBOBJDIR}addr2line$U.lo' MAINLIBS='-lz -lpthread -lrt -lrt -lrt -lsocket -ldl -lcrypt -lm ' MAJOR='3' MAKEDIRS='/opt/csw/bin/gmkdir -p' MAKEFILES='Makefile' MANTYPE='man' MINIOBJS='dmydln.o' MINIRUBY='./miniruby$(EXEEXT) -I$(srcdir)/lib -I. -I$(EXTOUT)/common' MINOR='0' MJIT_CC='/usr/bin/cc -D_STDC_C99=' MJIT_CFLAGS='-w ' MJIT_DEBUGFLAGS='$(debugflags)' MJIT_HEADER_FLAGS='' MJIT_HEADER_INSTALL_DIR='include/${RUBY_VERSION_NAME}/${arch}' MJIT_LDSHARED='$(MJIT_CC) -G' MJIT_OPTFLAGS='$(optflags)' MJIT_SUPPORT='yes' MJIT_TABS='' MKDIR_P='/opt/csw/bin/gmkdir -p' NM='gnm' NULLCMD='true' OBJCOPY='gobjcopy' OBJDUMP='gobjdump' OBJEXT='o' OUTFLAG='-o ' PACKAGE='ruby' PACKAGE_BUGREPORT='' PACKAGE_NAME='' PACKAGE_STRING='' PACKAGE_TARNAME='' PACKAGE_URL='' PACKAGE_VERSION='' PATH_SEPARATOR=':' PKG_CONFIG='pkg-config' PLATFORM_DIR='' POSTLINK=':' PRELOADENV='LD_PRELOAD_32' PREP='miniruby$(EXEEXT)' RANLIB='ranlib' RDOCTARGET='rdoc' RI_BASE_NAME='ri' RM='rm -f' RMALL='rm -fr' RMDIR='rmdir' RMDIRS='rmdir -p' RPATHFLAG='' RUBYW_BASE_NAME='rubyw' RUBYW_INSTALL_NAME='' RUBY_API_VERSION='$(MAJOR).$(MINOR)' RUBY_BASE_NAME='ruby' RUBY_EXEC_PREFIX='/usr/local' RUBY_INSTALL_NAME='$(RUBY_BASE_NAME)' RUBY_LIB_VERSION='' RUBY_LIB_VERSION_STYLE='3 /* full */' RUBY_PROGRAM_VERSION='$(MAJOR).$(MINOR).$(TEENY)' RUBY_SEARCH_PATH='' RUBY_SO_NAME='$(RUBY_BASE_NAME)' RUBY_VERSION_NAME='${RUBY_BASE_NAME}-${ruby_version}' RUNRUBY='$(RUNRUBY_COMMAND) --' RUNRUBY_COMMAND='$(MINIRUBY) $(tooldir)/runruby.rb --extout=$(EXTOUT) $(RUNRUBYOPT)' SET_MAKE='' SHELL='/bin/bash' SOEXT='so' SOLIBS='$(MAINLIBS)' STATIC='' STRIP='gstrip -S -x' SYMBOL_PREFIX='' TEENY='3' TEST_RUNNABLE='yes' THREAD_MODEL='pthread' TRY_LINK='' UNIVERSAL_ARCHNAMES='' UNIVERSAL_INTS='' USE_RUBYGEMS='yes' WERRORFLAG='' WINDRES='' XCC_WRAPPER='' XCFLAGS='-DRUBY_EXPORT' XLDFLAGS='' XRUBY='$(RUNRUBY)' XRUBY_LIBDIR='' XRUBY_RUBYHDRDIR='' XRUBY_RUBYLIBDIR='' X_COROUTINE_H='coroutine/ucontext/Context.h' X_COROUTINE_SRC='coroutine/ucontext/Context.c' ac_ct_AR='gar' ac_ct_AS='gas' ac_ct_CC='cc' ac_ct_CXX='CC' ac_ct_LD='' ac_ct_NM='gnm' ac_ct_OBJCOPY='gobjcopy' ac_ct_OBJDUMP='gobjdump' ac_ct_STRIP='gstrip' arch='i386-solaris2.10' archincludedir='${includedir}/${arch}' archlibdir='${libdir}/${arch}' bindir='${exec_prefix}/bin' build='i386-pc-solaris2.10' build_alias='' build_cpu='i386' build_os='solaris2.10' build_vendor='pc' cflags='${optflags} ${debugflags} ${warnflags}' codesign='' configure_args='' cppflags='' cxxflags='' datadir='${datarootdir}' datarootdir='${prefix}/share' debugflags='-g' docdir='${datarootdir}/doc/${PACKAGE}' dsymutil='' dvidir='${docdir}' exec='exec' exec_prefix='${prefix}' host='i386-pc-solaris2.10' host_alias='' host_cpu='i386' host_os='solaris2.10' host_vendor='pc' htmldir='${docdir}' includedir='${prefix}/include' infodir='${datarootdir}/info' libdir='${exec_prefix}/lib' libdirname='libdir' libexecdir='${exec_prefix}/libexec' localedir='${datarootdir}/locale' localstatedir='${prefix}/var' mandir='${datarootdir}/man' oldincludedir='/usr/include' optflags='' pdfdir='${docdir}' prefix='/usr/local' program_transform_name='s&^&&' psdir='${docdir}' ridir='${datarootdir}/${RI_BASE_NAME}' ruby_pc='ruby-3.0.pc' ruby_version='3.0.0' rubyarchdir='${rubylibdir}/${arch}' rubyarchhdrdir='${rubyhdrdir}/${arch}' rubyarchprefix='${rubylibprefix}/${arch}' rubyhdrdir='${includedir}/${RUBY_VERSION_NAME}' rubylibdir='${rubylibprefix}/${ruby_version}' rubylibprefix='${libdir}/${RUBY_BASE_NAME}' rubysitearchprefix='${rubylibprefix}/${sitearch}' rubyw_install_name='' runstatedir='${localstatedir}/run' sbindir='${exec_prefix}/sbin' setup='Setup' sharedstatedir='${prefix}/com' sitearch='${arch}' sitearchdir='${sitelibdir}/${sitearch}' sitearchhdrdir='${sitehdrdir}/${sitearch}' sitearchincludedir='${includedir}/${sitearch}' sitearchlibdir='${libdir}/${sitearch}' sitedir='${rubylibprefix}/site_ruby' sitehdrdir='${rubyhdrdir}/site_ruby' sitelibdir='${sitedir}/${ruby_version}' strict_warnflags='' sysconfdir='${prefix}/etc' target='i386-pc-solaris2.10' target_alias='' target_cpu='i386' target_os='solaris2.10' target_vendor='pc' try_header='' vendorarchdir='${vendorlibdir}/${sitearch}' vendorarchhdrdir='${vendorhdrdir}/${sitearch}' vendordir='${rubylibprefix}/vendor_ruby' vendorhdrdir='${rubyhdrdir}/vendor_ruby' vendorlibdir='${vendordir}/${ruby_version}' warnflags='-erroff=E_STATEMENT_NOT_REACHED -erroff=E_INIT_SIGN_EXTEND -erroff=E_INIT_DOES_NOT_FIT -erroff=E_INITIALIZATION_TYPE_MISMATCH' ## ----------- ## ## confdefs.h. ## ## ----------- ## #define _LARGEFILE_SOURCE 1 #define _FILE_OFFSET_BITS 64 configure: exit 1