This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by GNU Bison configure 2.5, which was generated by GNU Autoconf 2.65. Invocation command line was $ ./configure --prefix=/usr2/gnu CC=/usr/bin/cc -m64 LD=/usr/ccs/bin/ld ## --------- ## ## Platform. ## ## --------- ## hostname = ssol10 uname -m = sun4u uname -r = 5.10 uname -s = SunOS uname -v = Generic /usr/bin/uname -p = sparc /bin/uname -X = System = SunOS Node = ssol10 Release = 5.10 KernelID = Generic Machine = sun4u BusType = Serial = Users = OEM# = 0 Origin# = 1 NumCPU = 1 /bin/arch = sun4 /usr/bin/arch -k = sun4u /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /usr2/gnu/bin PATH: /opt/sfw/bin PATH: /usr/ccs/bin PATH: /usr/bin PATH: /usr2/scripts PATH: /etc PATH: /sbin PATH: /usr/sbin PATH: /usr/ccs/bin PATH: /usr/bin/X11 PATH: /usr/openwin/bin PATH: /usr/dt/bin ## ----------- ## ## Core tests. ## ## ----------- ## configure:3487: checking for a BSD-compatible install configure:3555: result: /opt/sfw/bin/ginstall -c configure:3566: checking whether build environment is sane configure:3616: result: yes configure:3757: checking for a thread-safe mkdir -p configure:3796: result: /opt/sfw/bin/gmkdir -p configure:3810: checking for gawk configure:3826: found /opt/sfw/bin/gawk configure:3837: result: gawk configure:3848: checking whether make sets $(MAKE) configure:3870: result: yes configure:3966: checking for style of include used by make configure:3994: result: GNU configure:4064: checking for gcc configure:4091: result: /usr/bin/cc -m64 configure:4320: checking for C compiler version configure:4329: /usr/bin/cc -m64 --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:4340: $? = 0 configure:4329: /usr/bin/cc -m64 -v >&5 usage: cc [ options ] files. Use 'cc -flags' for details configure:4340: $? = 0 configure:4329: /usr/bin/cc -m64 -V >&5 cc: Sun C 5.11 SunOS_sparc 2010/08/13 usage: cc [ options ] files. Use 'cc -flags' for details configure:4340: $? = 0 configure:4329: /usr/bin/cc -m64 -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:4340: $? = 0 configure:4360: checking whether the C compiler works configure:4382: /usr/bin/cc -m64 conftest.c >&5 configure:4386: $? = 0 configure:4435: result: yes configure:4438: checking for C compiler default output file name configure:4440: result: a.out configure:4446: checking for suffix of executables configure:4453: /usr/bin/cc -m64 -o conftest conftest.c >&5 configure:4457: $? = 0 configure:4479: result: configure:4501: checking whether we are cross compiling configure:4509: /usr/bin/cc -m64 -o conftest conftest.c >&5 "conftest.c", line 20: warning: statement not reached configure:4513: $? = 0 configure:4520: ./conftest configure:4524: $? = 0 configure:4539: result: no configure:4544: checking for suffix of object files configure:4566: /usr/bin/cc -m64 -c conftest.c >&5 configure:4570: $? = 0 configure:4591: result: o configure:4595: checking whether we are using the GNU C compiler configure:4614: /usr/bin/cc -m64 -c conftest.c >&5 "conftest.c", line 17: undefined symbol: choke "conftest.c", line 17: syntax error before or at: me cc: acomp failed for conftest.c configure:4614: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | /* end confdefs.h. */ | | int | main () | { | #ifndef __GNUC__ | choke me | #endif | | ; | return 0; | } configure:4623: result: no configure:4632: checking whether /usr/bin/cc -m64 accepts -g configure:4652: /usr/bin/cc -m64 -c -g conftest.c >&5 configure:4652: $? = 0 configure:4693: result: yes configure:4710: checking for /usr/bin/cc -m64 option to accept ISO C89 configure:4774: /usr/bin/cc -m64 -c -g conftest.c >&5 "conftest.c", line 60: warning: statement not reached configure:4774: $? = 0 configure:4787: result: none needed configure:4809: checking dependency style of /usr/bin/cc -m64 configure:4919: result: none configure:4938: checking for /usr/bin/cc -m64 option to accept ISO C99 configure:5087: /usr/bin/cc -m64 -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:5087: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | /* 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:5087: /usr/bin/cc -m64 -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:5087: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | /* 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:5087: /usr/bin/cc -m64 -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:5087: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | /* 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:5087: /usr/bin/cc -m64 -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:5087: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | /* 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:5087: /usr/bin/cc -m64 -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:5087: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | /* 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:5087: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 146: warning: statement not reached configure:5087: $? = 0 configure:5107: result: -xc99=all configure:5209: checking for /usr/bin/cc -m64 -xc99=all option to accept ISO Standard C configure:5223: result: -xc99=all configure:5272: checking for ranlib configure:5288: found /usr2/gnu/bin/ranlib configure:5299: result: ranlib configure:5322: checking whether /usr/bin/cc -m64 -xc99=all and cc understand -c and -o together configure:5353: /usr/bin/cc -m64 -xc99=all -c conftest.c -o conftest2.o >&5 configure:5357: $? = 0 configure:5363: /usr/bin/cc -m64 -xc99=all -c conftest.c -o conftest2.o >&5 configure:5367: $? = 0 configure:5378: cc -c conftest.c >&5 configure:5382: $? = 0 configure:5390: cc -c conftest.c -o conftest2.o >&5 configure:5394: $? = 0 configure:5400: cc -c conftest.c -o conftest2.o >&5 configure:5404: $? = 0 configure:5422: result: yes configure:5451: checking build system type configure:5465: result: sparc-sun-solaris2.10 configure:5485: checking host system type configure:5498: result: sparc-sun-solaris2.10 configure:5524: checking how to run the C preprocessor configure:5555: /usr/bin/cc -m64 -xc99=all -E conftest.c configure:5555: $? = 0 configure:5569: /usr/bin/cc -m64 -xc99=all -E conftest.c "conftest.c", line 12: cannot find include file: cc: acomp failed for conftest.c configure:5569: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | /* end confdefs.h. */ | #include configure:5594: result: /usr/bin/cc -m64 -xc99=all -E configure:5614: /usr/bin/cc -m64 -xc99=all -E conftest.c configure:5614: $? = 0 configure:5628: /usr/bin/cc -m64 -xc99=all -E conftest.c "conftest.c", line 12: cannot find include file: cc: acomp failed for conftest.c configure:5628: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | /* end confdefs.h. */ | #include configure:5657: checking for grep that handles long lines and -e configure:5715: result: /usr/xpg4/bin/grep configure:5720: checking for egrep configure:5782: result: /usr/xpg4/bin/grep -E configure:5787: checking for ANSI C header files configure:5807: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:5807: $? = 0 configure:5880: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:5880: $? = 0 configure:5880: ./conftest configure:5880: $? = 0 configure:5891: result: yes configure:5904: checking for sys/types.h configure:5904: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:5904: $? = 0 configure:5904: result: yes configure:5904: checking for sys/stat.h configure:5904: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:5904: $? = 0 configure:5904: result: yes configure:5904: checking for stdlib.h configure:5904: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:5904: $? = 0 configure:5904: result: yes configure:5904: checking for string.h configure:5904: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:5904: $? = 0 configure:5904: result: yes configure:5904: checking for memory.h configure:5904: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:5904: $? = 0 configure:5904: result: yes configure:5904: checking for strings.h configure:5904: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:5904: $? = 0 configure:5904: result: yes configure:5904: checking for inttypes.h configure:5904: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:5904: $? = 0 configure:5904: result: yes configure:5904: checking for stdint.h configure:5904: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:5904: $? = 0 configure:5904: result: yes configure:5904: checking for unistd.h configure:5904: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:5904: $? = 0 configure:5904: result: yes configure:5920: checking minix/config.h usability configure:5920: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 55: cannot find include file: cc: acomp failed for conftest.c configure:5920: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define 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:5920: result: no configure:5920: checking minix/config.h presence configure:5920: /usr/bin/cc -m64 -xc99=all -E conftest.c "conftest.c", line 22: cannot find include file: cc: acomp failed for conftest.c configure:5920: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define 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:5920: result: no configure:5920: checking for minix/config.h configure:5920: result: no configure:5949: checking whether it is safe to define __EXTENSIONS__ configure:5967: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:5967: $? = 0 configure:5974: result: yes configure:6711: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:6711: $? = 0 configure:6745: checking for flex configure:6761: found /usr2/gnu/bin/flex configure:6772: result: flex configure:6809: flex conftest.l configure:6813: $? = 0 configure:6815: checking lex output file root configure:6829: result: lex.yy configure:6834: checking lex library configure:6848: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 Undefined first referenced symbol in file yywrap conftest.o ld: fatal: Symbol referencing errors. No output written to conftest configure:6848: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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. */ | | #line 3 "lex.yy.c" | | #define YY_INT_ALIGNED short int | | /* A lexical scanner generated by flex */ | | #define FLEX_SCANNER | #define YY_FLEX_MAJOR_VERSION 2 | #define YY_FLEX_MINOR_VERSION 5 | #define YY_FLEX_SUBMINOR_VERSION 35 | #if YY_FLEX_SUBMINOR_VERSION > 0 | #define FLEX_BETA | #endif | | /* First, we deal with platform-specific or compiler-specific issues. */ | | /* begin standard C headers. */ | #include | #include | #include | #include | | /* end standard C headers. */ | | /* flex integer type definitions */ | | #ifndef FLEXINT_H | #define FLEXINT_H | | /* C99 systems have . Non-C99 systems may or may not. */ | | #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L | | /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, | * if you want the limit (max/min) macros for int types. | */ | #ifndef __STDC_LIMIT_MACROS | #define __STDC_LIMIT_MACROS 1 | #endif | | #include | typedef int8_t flex_int8_t; | typedef uint8_t flex_uint8_t; | typedef int16_t flex_int16_t; | typedef uint16_t flex_uint16_t; | typedef int32_t flex_int32_t; | typedef uint32_t flex_uint32_t; | #else | typedef signed char flex_int8_t; | typedef short int flex_int16_t; | typedef int flex_int32_t; | typedef unsigned char flex_uint8_t; | typedef unsigned short int flex_uint16_t; | typedef unsigned int flex_uint32_t; | #endif /* ! C99 */ | | /* Limits of integral types. */ | #ifndef INT8_MIN | #define INT8_MIN (-128) | #endif | #ifndef INT16_MIN | #define INT16_MIN (-32767-1) | #endif | #ifndef INT32_MIN | #define INT32_MIN (-2147483647-1) | #endif | #ifndef INT8_MAX | #define INT8_MAX (127) | #endif | #ifndef INT16_MAX | #define INT16_MAX (32767) | #endif | #ifndef INT32_MAX | #define INT32_MAX (2147483647) | #endif | #ifndef UINT8_MAX | #define UINT8_MAX (255U) | #endif | #ifndef UINT16_MAX | #define UINT16_MAX (65535U) | #endif | #ifndef UINT32_MAX | #define UINT32_MAX (4294967295U) | #endif | | #endif /* ! FLEXINT_H */ | | #ifdef __cplusplus | | /* The "const" storage-class-modifier is valid. */ | #define YY_USE_CONST | | #else /* ! __cplusplus */ | | /* C99 requires __STDC__ to be defined as 1. */ | #if defined (__STDC__) | | #define YY_USE_CONST | | #endif /* defined (__STDC__) */ | #endif /* ! __cplusplus */ | | #ifdef YY_USE_CONST | #define yyconst const | #else | #define yyconst | #endif | | /* Returned upon end-of-file. */ | #define YY_NULL 0 | | /* Promotes a possibly negative, possibly signed char to an unsigned | * integer for use as an array index. If the signed char is negative, | * we want to instead treat it as an 8-bit unsigned char, hence the | * double cast. | */ | #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c) | | /* Enter a start condition. This macro really ought to take a parameter, | * but we do it the disgusting crufty way forced on us by the ()-less | * definition of BEGIN. | */ | #define BEGIN (yy_start) = 1 + 2 * | | /* Translate the current start state into a value that can be later handed | * to BEGIN to return to the state. The YYSTATE alias is for lex | * compatibility. | */ | #define YY_START (((yy_start) - 1) / 2) | #define YYSTATE YY_START | | /* Action number for EOF rule of a given start state. */ | #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) | | /* Special action meaning "start processing a new file". */ | #define YY_NEW_FILE yyrestart(yyin ) | | #define YY_END_OF_BUFFER_CHAR 0 | | /* Size of default input buffer. */ | #ifndef YY_BUF_SIZE | #define YY_BUF_SIZE 16384 | #endif | | /* The state buf must be large enough to hold one state per character in the main buffer. | */ | #define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type)) | | #ifndef YY_TYPEDEF_YY_BUFFER_STATE | #define YY_TYPEDEF_YY_BUFFER_STATE | typedef struct yy_buffer_state *YY_BUFFER_STATE; | #endif | | extern int yyleng; | | extern FILE *yyin, *yyout; | | #define EOB_ACT_CONTINUE_SCAN 0 | #define EOB_ACT_END_OF_FILE 1 | #define EOB_ACT_LAST_MATCH 2 | | #define YY_LESS_LINENO(n) | | /* Return all but the first "n" matched characters back to the input stream. */ | #define yyless(n) \ | do \ | { \ | /* Undo effects of setting up yytext. */ \ | int yyless_macro_arg = (n); \ | YY_LESS_LINENO(yyless_macro_arg);\ | *yy_cp = (yy_hold_char); \ | YY_RESTORE_YY_MORE_OFFSET \ | (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \ | YY_DO_BEFORE_ACTION; /* set up yytext again */ \ | } \ | while ( 0 ) | | #define unput(c) yyunput( c, (yytext_ptr) ) | | #ifndef YY_TYPEDEF_YY_SIZE_T | #define YY_TYPEDEF_YY_SIZE_T | typedef size_t yy_size_t; | #endif | | #ifndef YY_STRUCT_YY_BUFFER_STATE | #define YY_STRUCT_YY_BUFFER_STATE | struct yy_buffer_state | { | FILE *yy_input_file; | | char *yy_ch_buf; /* input buffer */ | char *yy_buf_pos; /* current position in input buffer */ | | /* Size of input buffer in bytes, not including room for EOB | * characters. | */ | yy_size_t yy_buf_size; | | /* Number of characters read into yy_ch_buf, not including EOB | * characters. | */ | int yy_n_chars; | | /* Whether we "own" the buffer - i.e., we know we created it, | * and can realloc() it to grow it, and should free() it to | * delete it. | */ | int yy_is_our_buffer; | | /* Whether this is an "interactive" input source; if so, and | * if we're using stdio for input, then we want to use getc() | * instead of fread(), to make sure we stop fetching input after | * each newline. | */ | int yy_is_interactive; | | /* Whether we're considered to be at the beginning of a line. | * If so, '^' rules will be active on the next match, otherwise | * not. | */ | int yy_at_bol; | | int yy_bs_lineno; /**< The line count. */ | int yy_bs_column; /**< The column count. */ | | /* Whether to try to fill the input buffer when we reach the | * end of it. | */ | int yy_fill_buffer; | | int yy_buffer_status; | | #define YY_BUFFER_NEW 0 | #define YY_BUFFER_NORMAL 1 | /* When an EOF's been seen but there's still some text to process | * then we mark the buffer as YY_EOF_PENDING, to indicate that we | * shouldn't try reading from the input source any more. We might | * still have a bunch of tokens to match, though, because of | * possible backing-up. | * | * When we actually see the EOF, we change the status to "new" | * (via yyrestart()), so that the user can continue scanning by | * just pointing yyin at a new input file. | */ | #define YY_BUFFER_EOF_PENDING 2 | | }; | #endif /* !YY_STRUCT_YY_BUFFER_STATE */ | | /* Stack of input buffers. */ | static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */ | static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */ | static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */ | | /* We provide macros for accessing buffer states in case in the | * future we want to put the buffer states in a more general | * "scanner state". | * | * Returns the top of the stack, or NULL. | */ | #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \ | ? (yy_buffer_stack)[(yy_buffer_stack_top)] \ | : NULL) | | /* Same as previous macro, but useful when we know that the buffer stack is not | * NULL or when we need an lvalue. For internal use only. | */ | #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)] | | /* yy_hold_char holds the character lost when yytext is formed. */ | static char yy_hold_char; | static int yy_n_chars; /* number of characters read into yy_ch_buf */ | int yyleng; | | /* Points to current character in buffer. */ | static char *yy_c_buf_p = (char *) 0; | static int yy_init = 0; /* whether we need to initialize */ | static int yy_start = 0; /* start state number */ | | /* Flag which is used to allow yywrap()'s to do buffer switches | * instead of setting up a fresh yyin. A bit of a hack ... | */ | static int yy_did_buffer_switch_on_eof; | | void yyrestart (FILE *input_file ); | void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ); | YY_BUFFER_STATE yy_create_buffer (FILE *file,int size ); | void yy_delete_buffer (YY_BUFFER_STATE b ); | void yy_flush_buffer (YY_BUFFER_STATE b ); | void yypush_buffer_state (YY_BUFFER_STATE new_buffer ); | void yypop_buffer_state (void ); | | static void yyensure_buffer_stack (void ); | static void yy_load_buffer_state (void ); | static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file ); | | #define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER ) | | YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size ); | YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str ); | YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len ); | | void *yyalloc (yy_size_t ); | void *yyrealloc (void *,yy_size_t ); | void yyfree (void * ); | | #define yy_new_buffer yy_create_buffer | | #define yy_set_interactive(is_interactive) \ | { \ | if ( ! YY_CURRENT_BUFFER ){ \ | yyensure_buffer_stack (); \ | YY_CURRENT_BUFFER_LVALUE = \ | yy_create_buffer(yyin,YY_BUF_SIZE ); \ | } \ | YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ | } | | #define yy_set_bol(at_bol) \ | { \ | if ( ! YY_CURRENT_BUFFER ){\ | yyensure_buffer_stack (); \ | YY_CURRENT_BUFFER_LVALUE = \ | yy_create_buffer(yyin,YY_BUF_SIZE ); \ | } \ | YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ | } | | #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) | | /* Begin user sect3 */ | | typedef unsigned char YY_CHAR; | | FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; | | typedef int yy_state_type; | | extern int yylineno; | | int yylineno = 1; | | extern char *yytext; | #define yytext_ptr yytext | | static yy_state_type yy_get_previous_state (void ); | static yy_state_type yy_try_NUL_trans (yy_state_type current_state ); | static int yy_get_next_buffer (void ); | static void yy_fatal_error (yyconst char msg[] ); | | /* Done after the current pattern has been matched and before the | * corresponding action - sets up yytext. | */ | #define YY_DO_BEFORE_ACTION \ | (yytext_ptr) = yy_bp; \ | (yytext_ptr) -= (yy_more_len); \ | yyleng = (size_t) (yy_cp - (yytext_ptr)); \ | (yy_hold_char) = *yy_cp; \ | *yy_cp = '\0'; \ | (yy_c_buf_p) = yy_cp; | | #define YY_NUM_RULES 8 | #define YY_END_OF_BUFFER 9 | /* This struct is not used in this scanner, | but its presence is necessary. */ | struct yy_trans_info | { | flex_int32_t yy_verify; | flex_int32_t yy_nxt; | }; | static yyconst flex_int16_t yy_acclist[23] = | { 0, | 9, 7, 8, 8, 1, 7, 8, 2, 7, 8, | 3, 7, 8, 4, 7, 8, 5, 7, 8, 6, | 7, 8 | } ; | | static yyconst flex_int16_t yy_accept[14] = | { 0, | 1, 1, 1, 2, 4, 5, 8, 11, 14, 17, | 20, 23, 23 | } ; | | static yyconst flex_int32_t yy_ec[256] = | { 0, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 3, 4, 5, 6, | | 7, 8, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1 | } ; | | static yyconst flex_int32_t yy_meta[9] = | { 0, | 1, 1, 1, 1, 1, 1, 1, 1 | } ; | | static yyconst flex_int16_t yy_base[13] = | { 0, | 0, 0, 9, 10, 10, 10, 10, 10, 10, 10, | 10, 10 | } ; | | static yyconst flex_int16_t yy_def[13] = | { 0, | 12, 1, 12, 12, 12, 12, 12, 12, 12, 12, | 12, 0 | } ; | | static yyconst flex_int16_t yy_nxt[19] = | { 0, | 4, 5, 6, 7, 8, 9, 10, 11, 12, 3, | 12, 12, 12, 12, 12, 12, 12, 12 | } ; | | static yyconst flex_int16_t yy_chk[19] = | { 0, | 1, 1, 1, 1, 1, 1, 1, 1, 3, 12, | 12, 12, 12, 12, 12, 12, 12, 12 | } ; | | extern int yy_flex_debug; | int yy_flex_debug = 0; | | static yy_state_type *yy_state_buf=0, *yy_state_ptr=0; | static char *yy_full_match; | static int yy_lp; | #define REJECT \ | { \ | *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ \ | yy_cp = (yy_full_match); /* restore poss. backed-over text */ \ | ++(yy_lp); \ | goto find_rule; \ | } | | static int yy_more_flag = 0; | static int yy_more_len = 0; | #define yymore() ((yy_more_flag) = 1) | #define YY_MORE_ADJ (yy_more_len) | #define YY_RESTORE_YY_MORE_OFFSET | char *yytext; | #line 1 "conftest.l" | #line 468 "lex.yy.c" | | #define INITIAL 0 | | #ifndef YY_NO_UNISTD_H | /* Special case for "unistd.h", since it is non-ANSI. We include it way | * down here because we want the user's section 1 to have been scanned first. | * The user has a chance to override it with an option. | */ | #include | #endif | | #ifndef YY_EXTRA_TYPE | #define YY_EXTRA_TYPE void * | #endif | | static int yy_init_globals (void ); | | /* Accessor methods to globals. | These are made visible to non-reentrant scanners for convenience. */ | | int yylex_destroy (void ); | | int yyget_debug (void ); | | void yyset_debug (int debug_flag ); | | YY_EXTRA_TYPE yyget_extra (void ); | | void yyset_extra (YY_EXTRA_TYPE user_defined ); | | FILE *yyget_in (void ); | | void yyset_in (FILE * in_str ); | | FILE *yyget_out (void ); | | void yyset_out (FILE * out_str ); | | int yyget_leng (void ); | | char *yyget_text (void ); | | int yyget_lineno (void ); | | void yyset_lineno (int line_number ); | | /* Macros after this point can all be overridden by user definitions in | * section 1. | */ | | #ifndef YY_SKIP_YYWRAP | #ifdef __cplusplus | extern "C" int yywrap (void ); | #else | extern int yywrap (void ); | #endif | #endif | | static void yyunput (int c,char *buf_ptr ); | | #ifndef yytext_ptr | static void yy_flex_strncpy (char *,yyconst char *,int ); | #endif | | #ifdef YY_NEED_STRLEN | static int yy_flex_strlen (yyconst char * ); | #endif | | #ifndef YY_NO_INPUT | | #ifdef __cplusplus | static int yyinput (void ); | #else | static int input (void ); | #endif | | #endif | | /* Amount of stuff to slurp up with each read. */ | #ifndef YY_READ_BUF_SIZE | #define YY_READ_BUF_SIZE 8192 | #endif | | /* Copy whatever the last rule matched to the standard output. */ | #ifndef ECHO | /* This used to be an fputs(), but since the string might contain NUL's, | * we now use fwrite(). | */ | #define ECHO fwrite( yytext, yyleng, 1, yyout ) | #endif | | /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, | * is returned in "result". | */ | #ifndef YY_INPUT | #define YY_INPUT(buf,result,max_size) \ | if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \ | { \ | int c = '*'; \ | int n; \ | for ( n = 0; n < max_size && \ | (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ | buf[n] = (char) c; \ | if ( c == '\n' ) \ | buf[n++] = (char) c; \ | if ( c == EOF && ferror( yyin ) ) \ | YY_FATAL_ERROR( "input in flex scanner failed" ); \ | result = n; \ | } \ | else \ | { \ | errno=0; \ | while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \ | { \ | if( errno != EINTR) \ | { \ | YY_FATAL_ERROR( "input in flex scanner failed" ); \ | break; \ | } \ | errno=0; \ | clearerr(yyin); \ | } \ | }\ | \ | | #endif | | /* No semi-colon after return; correct usage is to write "yyterminate();" - | * we don't want an extra ';' after the "return" because that will cause | * some compilers to complain about unreachable statements. | */ | #ifndef yyterminate | #define yyterminate() return YY_NULL | #endif | | /* Number of entries by which start-condition stack grows. */ | #ifndef YY_START_STACK_INCR | #define YY_START_STACK_INCR 25 | #endif | | /* Report a fatal error. */ | #ifndef YY_FATAL_ERROR | #define YY_FATAL_ERROR(msg) yy_fatal_error( msg ) | #endif | | /* end tables serialization structures and prototypes */ | | /* Default declaration of generated scanner - a define so the user can | * easily add parameters. | */ | #ifndef YY_DECL | #define YY_DECL_IS_OURS 1 | | extern int yylex (void); | | #define YY_DECL int yylex (void) | #endif /* !YY_DECL */ | | /* Code executed at the beginning of each rule, after yytext and yyleng | * have been set up. | */ | #ifndef YY_USER_ACTION | #define YY_USER_ACTION | #endif | | /* Code executed at the end of each rule. */ | #ifndef YY_BREAK | #define YY_BREAK break; | #endif | | #define YY_RULE_SETUP \ | YY_USER_ACTION | | /** The main scanner function which does all the work. | */ | YY_DECL | { | register yy_state_type yy_current_state; | register char *yy_cp, *yy_bp; | register int yy_act; | | #line 1 "conftest.l" | | #line 652 "lex.yy.c" | | if ( !(yy_init) ) | { | (yy_init) = 1; | | #ifdef YY_USER_INIT | YY_USER_INIT; | #endif | | /* Create the reject buffer large enough to save one state per allowed character. */ | if ( ! (yy_state_buf) ) | (yy_state_buf) = (yy_state_type *)yyalloc(YY_STATE_BUF_SIZE ); | if ( ! (yy_state_buf) ) | YY_FATAL_ERROR( "out of dynamic memory in yylex()" ); | | if ( ! (yy_start) ) | (yy_start) = 1; /* first start state */ | | if ( ! yyin ) | yyin = stdin; | | if ( ! yyout ) | yyout = stdout; | | if ( ! YY_CURRENT_BUFFER ) { | yyensure_buffer_stack (); | YY_CURRENT_BUFFER_LVALUE = | yy_create_buffer(yyin,YY_BUF_SIZE ); | } | | yy_load_buffer_state( ); | } | | while ( 1 ) /* loops until end-of-file is reached */ | { | (yy_more_len) = 0; | if ( (yy_more_flag) ) | { | (yy_more_len) = (yy_c_buf_p) - (yytext_ptr); | (yy_more_flag) = 0; | } | yy_cp = (yy_c_buf_p); | | /* Support of yytext. */ | *yy_cp = (yy_hold_char); | | /* yy_bp points to the position in yy_ch_buf of the start of | * the current run. | */ | yy_bp = yy_cp; | | yy_current_state = (yy_start); | | (yy_state_ptr) = (yy_state_buf); | *(yy_state_ptr)++ = yy_current_state; | | yy_match: | do | { | register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)]; | while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) | { | yy_current_state = (int) yy_def[yy_current_state]; | if ( yy_current_state >= 13 ) | yy_c = yy_meta[(unsigned int) yy_c]; | } | yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; | *(yy_state_ptr)++ = yy_current_state; | ++yy_cp; | } | while ( yy_base[yy_current_state] != 10 ); | | yy_find_action: | yy_current_state = *--(yy_state_ptr); | (yy_lp) = yy_accept[yy_current_state]; | find_rule: /* we branch to this label when backing up */ | for ( ; ; ) /* until we find what rule we matched */ | { | if ( (yy_lp) && (yy_lp) < yy_accept[yy_current_state + 1] ) | { | yy_act = yy_acclist[(yy_lp)]; | { | (yy_full_match) = yy_cp; | break; | } | } | --yy_cp; | yy_current_state = *--(yy_state_ptr); | (yy_lp) = yy_accept[yy_current_state]; | } | | YY_DO_BEFORE_ACTION; | | do_action: /* This label is used only to access EOF actions. */ | | switch ( yy_act ) | { /* beginning of action switch */ | case 1: | YY_RULE_SETUP | #line 2 "conftest.l" | { ECHO; } | YY_BREAK | case 2: | YY_RULE_SETUP | #line 3 "conftest.l" | { REJECT; } | YY_BREAK | case 3: | YY_RULE_SETUP | #line 4 "conftest.l" | { yymore (); } | YY_BREAK | case 4: | YY_RULE_SETUP | #line 5 "conftest.l" | { yyless (1); } | YY_BREAK | case 5: | YY_RULE_SETUP | #line 6 "conftest.l" | { yyless (input () != 0); } | YY_BREAK | case 6: | YY_RULE_SETUP | #line 7 "conftest.l" | { unput (yytext[0]); } | YY_BREAK | case 7: | YY_RULE_SETUP | #line 8 "conftest.l" | { BEGIN INITIAL; } | YY_BREAK | case 8: | YY_RULE_SETUP | #line 9 "conftest.l" | ECHO; | YY_BREAK | #line 790 "lex.yy.c" | case YY_STATE_EOF(INITIAL): | yyterminate(); | | case YY_END_OF_BUFFER: | { | /* Amount of text matched not including the EOB char. */ | int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1; | | /* Undo the effects of YY_DO_BEFORE_ACTION. */ | *yy_cp = (yy_hold_char); | YY_RESTORE_YY_MORE_OFFSET | | if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW ) | { | /* We're scanning a new file or input source. It's | * possible that this happened because the user | * just pointed yyin at a new source and called | * yylex(). If so, then we have to assure | * consistency between YY_CURRENT_BUFFER and our | * globals. Here is the right place to do so, because | * this is the first action (other than possibly a | * back-up) that will match for the new input source. | */ | (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; | YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin; | YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL; | } | | /* Note that here we test for yy_c_buf_p "<=" to the position | * of the first EOB in the buffer, since yy_c_buf_p will | * already have been incremented past the NUL character | * (since all states make transitions on EOB to the | * end-of-buffer state). Contrast this with the test | * in input(). | */ | if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) | { /* This was really a NUL. */ | yy_state_type yy_next_state; | | (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; | | yy_current_state = yy_get_previous_state( ); | | /* Okay, we're now positioned to make the NUL | * transition. We couldn't have | * yy_get_previous_state() go ahead and do it | * for us because it doesn't know how to deal | * with the possibility of jamming (and we don't | * want to build jamming into it because then it | * will run more slowly). | */ | | yy_next_state = yy_try_NUL_trans( yy_current_state ); | | yy_bp = (yytext_ptr) + YY_MORE_ADJ; | | if ( yy_next_state ) | { | /* Consume the NUL. */ | yy_cp = ++(yy_c_buf_p); | yy_current_state = yy_next_state; | goto yy_match; | } | | else | { | yy_cp = (yy_c_buf_p); | goto yy_find_action; | } | } | | else switch ( yy_get_next_buffer( ) ) | { | case EOB_ACT_END_OF_FILE: | { | (yy_did_buffer_switch_on_eof) = 0; | | if ( yywrap( ) ) | { | /* Note: because we've taken care in | * yy_get_next_buffer() to have set up | * yytext, we can now set up | * yy_c_buf_p so that if some total | * hoser (like flex itself) wants to | * call the scanner after we return the | * YY_NULL, it'll still work - another | * YY_NULL will get returned. | */ | (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ; | | yy_act = YY_STATE_EOF(YY_START); | goto do_action; | } | | else | { | if ( ! (yy_did_buffer_switch_on_eof) ) | YY_NEW_FILE; | } | break; | } | | case EOB_ACT_CONTINUE_SCAN: | (yy_c_buf_p) = | (yytext_ptr) + yy_amount_of_matched_text; | | yy_current_state = yy_get_previous_state( ); | | yy_cp = (yy_c_buf_p); | yy_bp = (yytext_ptr) + YY_MORE_ADJ; | goto yy_match; | | case EOB_ACT_LAST_MATCH: | (yy_c_buf_p) = | &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)]; | | yy_current_state = yy_get_previous_state( ); | | yy_cp = (yy_c_buf_p); | yy_bp = (yytext_ptr) + YY_MORE_ADJ; | goto yy_find_action; | } | break; | } | | default: | YY_FATAL_ERROR( | "fatal flex scanner internal error--no action found" ); | } /* end of action switch */ | } /* end of scanning one token */ | } /* end of yylex */ | | /* yy_get_next_buffer - try to read in a new buffer | * | * Returns a code representing an action: | * EOB_ACT_LAST_MATCH - | * EOB_ACT_CONTINUE_SCAN - continue scanning from current position | * EOB_ACT_END_OF_FILE - end of file | */ | static int yy_get_next_buffer (void) | { | register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; | register char *source = (yytext_ptr); | register int number_to_move, i; | int ret_val; | | if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] ) | YY_FATAL_ERROR( | "fatal flex scanner internal error--end of buffer missed" ); | | if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 ) | { /* Don't try to fill the buffer, so this is an EOF. */ | if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 ) | { | /* We matched a single character, the EOB, so | * treat this as a final EOF. | */ | return EOB_ACT_END_OF_FILE; | } | | else | { | /* We matched some text prior to the EOB, first | * process it. | */ | return EOB_ACT_LAST_MATCH; | } | } | | /* Try to read more data. */ | | /* First move last chars to start of buffer. */ | number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1; | | for ( i = 0; i < number_to_move; ++i ) | *(dest++) = *(source++); | | if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING ) | /* don't do the read, it's not guaranteed to return an EOF, | * just force an EOF | */ | YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0; | | else | { | int num_to_read = | YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; | | while ( num_to_read <= 0 ) | { /* Not enough room in the buffer - grow it. */ | | YY_FATAL_ERROR( | "input buffer overflow, can't enlarge buffer because scanner uses REJECT" ); | | } | | if ( num_to_read > YY_READ_BUF_SIZE ) | num_to_read = YY_READ_BUF_SIZE; | | /* Read in more data. */ | YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), | (yy_n_chars), (size_t) num_to_read ); | | YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); | } | | if ( (yy_n_chars) == 0 ) | { | if ( number_to_move == YY_MORE_ADJ ) | { | ret_val = EOB_ACT_END_OF_FILE; | yyrestart(yyin ); | } | | else | { | ret_val = EOB_ACT_LAST_MATCH; | YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = | YY_BUFFER_EOF_PENDING; | } | } | | else | ret_val = EOB_ACT_CONTINUE_SCAN; | | if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { | /* Extend the array by 50%, plus the number we really need. */ | yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1); | YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size ); | if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) | YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); | } | | (yy_n_chars) += number_to_move; | YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR; | YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR; | | (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0]; | | return ret_val; | } | | /* yy_get_previous_state - get the state just before the EOB char was reached */ | | static yy_state_type yy_get_previous_state (void) | { | register yy_state_type yy_current_state; | register char *yy_cp; | | yy_current_state = (yy_start); | | (yy_state_ptr) = (yy_state_buf); | *(yy_state_ptr)++ = yy_current_state; | | for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp ) | { | register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); | while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) | { | yy_current_state = (int) yy_def[yy_current_state]; | if ( yy_current_state >= 13 ) | yy_c = yy_meta[(unsigned int) yy_c]; | } | yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; | *(yy_state_ptr)++ = yy_current_state; | } | | return yy_current_state; | } | | /* yy_try_NUL_trans - try to make a transition on the NUL character | * | * synopsis | * next_state = yy_try_NUL_trans( current_state ); | */ | static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state ) | { | register int yy_is_jam; | | register YY_CHAR yy_c = 1; | while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) | { | yy_current_state = (int) yy_def[yy_current_state]; | if ( yy_current_state >= 13 ) | yy_c = yy_meta[(unsigned int) yy_c]; | } | yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; | yy_is_jam = (yy_current_state == 12); | if ( ! yy_is_jam ) | *(yy_state_ptr)++ = yy_current_state; | | return yy_is_jam ? 0 : yy_current_state; | } | | static void yyunput (int c, register char * yy_bp ) | { | register char *yy_cp; | | yy_cp = (yy_c_buf_p); | | /* undo effects of setting up yytext */ | *yy_cp = (yy_hold_char); | | if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 ) | { /* need to shift things up to make room */ | /* +2 for EOB chars. */ | register int number_to_move = (yy_n_chars) + 2; | register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[ | YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2]; | register char *source = | &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]; | | while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) | *--dest = *--source; | | yy_cp += (int) (dest - source); | yy_bp += (int) (dest - source); | YY_CURRENT_BUFFER_LVALUE->yy_n_chars = | (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_buf_size; | | if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 ) | YY_FATAL_ERROR( "flex scanner push-back overflow" ); | } | | *--yy_cp = (char) c; | | (yytext_ptr) = yy_bp; | (yy_hold_char) = *yy_cp; | (yy_c_buf_p) = yy_cp; | } | | #ifndef YY_NO_INPUT | #ifdef __cplusplus | static int yyinput (void) | #else | static int input (void) | #endif | | { | int c; | | *(yy_c_buf_p) = (yy_hold_char); | | if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR ) | { | /* yy_c_buf_p now points to the character we want to return. | * If this occurs *before* the EOB characters, then it's a | * valid NUL; if not, then we've hit the end of the buffer. | */ | if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) | /* This was really a NUL. */ | *(yy_c_buf_p) = '\0'; | | else | { /* need more input */ | int offset = (yy_c_buf_p) - (yytext_ptr); | ++(yy_c_buf_p); | | switch ( yy_get_next_buffer( ) ) | { | case EOB_ACT_LAST_MATCH: | /* This happens because yy_g_n_b() | * sees that we've accumulated a | * token and flags that we need to | * try matching the token before | * proceeding. But for input(), | * there's no matching to consider. | * So convert the EOB_ACT_LAST_MATCH | * to EOB_ACT_END_OF_FILE. | */ | | /* Reset buffer status. */ | yyrestart(yyin ); | | /*FALLTHROUGH*/ | | case EOB_ACT_END_OF_FILE: | { | if ( yywrap( ) ) | return EOF; | | if ( ! (yy_did_buffer_switch_on_eof) ) | YY_NEW_FILE; | #ifdef __cplusplus | return yyinput(); | #else | return input(); | #endif | } | | case EOB_ACT_CONTINUE_SCAN: | (yy_c_buf_p) = (yytext_ptr) + offset; | break; | } | } | } | | c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */ | *(yy_c_buf_p) = '\0'; /* preserve yytext */ | (yy_hold_char) = *++(yy_c_buf_p); | | return c; | } | #endif /* ifndef YY_NO_INPUT */ | | /** Immediately switch to a different input stream. | * @param input_file A readable stream. | * | * @note This function does not reset the start condition to @c INITIAL . | */ | void yyrestart (FILE * input_file ) | { | | if ( ! YY_CURRENT_BUFFER ){ | yyensure_buffer_stack (); | YY_CURRENT_BUFFER_LVALUE = | yy_create_buffer(yyin,YY_BUF_SIZE ); | } | | yy_init_buffer(YY_CURRENT_BUFFER,input_file ); | yy_load_buffer_state( ); | } | | /** Switch to a different input buffer. | * @param new_buffer The new input buffer. | * | */ | void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ) | { | | /* TODO. We should be able to replace this entire function body | * with | * yypop_buffer_state(); | * yypush_buffer_state(new_buffer); | */ | yyensure_buffer_stack (); | if ( YY_CURRENT_BUFFER == new_buffer ) | return; | | if ( YY_CURRENT_BUFFER ) | { | /* Flush out information for old buffer. */ | *(yy_c_buf_p) = (yy_hold_char); | YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); | YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); | } | | YY_CURRENT_BUFFER_LVALUE = new_buffer; | yy_load_buffer_state( ); | | /* We don't actually know whether we did this switch during | * EOF (yywrap()) processing, but the only time this flag | * is looked at is after yywrap() is called, so it's safe | * to go ahead and always set it. | */ | (yy_did_buffer_switch_on_eof) = 1; | } | | static void yy_load_buffer_state (void) | { | (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; | (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos; | yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file; | (yy_hold_char) = *(yy_c_buf_p); | } | | /** Allocate and initialize an input buffer state. | * @param file A readable stream. | * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE. | * | * @return the allocated buffer state. | */ | YY_BUFFER_STATE yy_create_buffer (FILE * file, int size ) | { | YY_BUFFER_STATE b; | | b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); | if ( ! b ) | YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); | | b->yy_buf_size = size; | | /* yy_ch_buf has to be 2 characters longer than the size given because | * we need to put in 2 end-of-buffer characters. | */ | b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 ); | if ( ! b->yy_ch_buf ) | YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); | | b->yy_is_our_buffer = 1; | | yy_init_buffer(b,file ); | | return b; | } | | /** Destroy the buffer. | * @param b a buffer created with yy_create_buffer() | * | */ | void yy_delete_buffer (YY_BUFFER_STATE b ) | { | | if ( ! b ) | return; | | if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */ | YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0; | | if ( b->yy_is_our_buffer ) | yyfree((void *) b->yy_ch_buf ); | | yyfree((void *) b ); | } | | #ifndef __cplusplus | extern int isatty (int ); | #endif /* __cplusplus */ | | /* Initializes or reinitializes a buffer. | * This function is sometimes called more than once on the same buffer, | * such as during a yyrestart() or at EOF. | */ | static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file ) | | { | int oerrno = errno; | | yy_flush_buffer(b ); | | b->yy_input_file = file; | b->yy_fill_buffer = 1; | | /* If b is the current buffer, then yy_init_buffer was _probably_ | * called from yyrestart() or through yy_get_next_buffer. | * In that case, we don't want to reset the lineno or column. | */ | if (b != YY_CURRENT_BUFFER){ | b->yy_bs_lineno = 1; | b->yy_bs_column = 0; | } | | b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; | | errno = oerrno; | } | | /** Discard all buffered characters. On the next scan, YY_INPUT will be called. | * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER. | * | */ | void yy_flush_buffer (YY_BUFFER_STATE b ) | { | if ( ! b ) | return; | | b->yy_n_chars = 0; | | /* We always need two end-of-buffer characters. The first causes | * a transition to the end-of-buffer state. The second causes | * a jam in that state. | */ | b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; | b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; | | b->yy_buf_pos = &b->yy_ch_buf[0]; | | b->yy_at_bol = 1; | b->yy_buffer_status = YY_BUFFER_NEW; | | if ( b == YY_CURRENT_BUFFER ) | yy_load_buffer_state( ); | } | | /** Pushes the new state onto the stack. The new state becomes | * the current state. This function will allocate the stack | * if necessary. | * @param new_buffer The new state. | * | */ | void yypush_buffer_state (YY_BUFFER_STATE new_buffer ) | { | if (new_buffer == NULL) | return; | | yyensure_buffer_stack(); | | /* This block is copied from yy_switch_to_buffer. */ | if ( YY_CURRENT_BUFFER ) | { | /* Flush out information for old buffer. */ | *(yy_c_buf_p) = (yy_hold_char); | YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); | YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); | } | | /* Only push if top exists. Otherwise, replace top. */ | if (YY_CURRENT_BUFFER) | (yy_buffer_stack_top)++; | YY_CURRENT_BUFFER_LVALUE = new_buffer; | | /* copied from yy_switch_to_buffer. */ | yy_load_buffer_state( ); | (yy_did_buffer_switch_on_eof) = 1; | } | | /** Removes and deletes the top of the stack, if present. | * The next element becomes the new top. | * | */ | void yypop_buffer_state (void) | { | if (!YY_CURRENT_BUFFER) | return; | | yy_delete_buffer(YY_CURRENT_BUFFER ); | YY_CURRENT_BUFFER_LVALUE = NULL; | if ((yy_buffer_stack_top) > 0) | --(yy_buffer_stack_top); | | if (YY_CURRENT_BUFFER) { | yy_load_buffer_state( ); | (yy_did_buffer_switch_on_eof) = 1; | } | } | | /* Allocates the stack if it does not exist. | * Guarantees space for at least one push. | */ | static void yyensure_buffer_stack (void) | { | int num_to_alloc; | | if (!(yy_buffer_stack)) { | | /* First allocation is just for 2 elements, since we don't know if this | * scanner will even need a stack. We use 2 instead of 1 to avoid an | * immediate realloc on the next call. | */ | num_to_alloc = 1; | (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc | (num_to_alloc * sizeof(struct yy_buffer_state*) | ); | if ( ! (yy_buffer_stack) ) | YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); | | memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*)); | | (yy_buffer_stack_max) = num_to_alloc; | (yy_buffer_stack_top) = 0; | return; | } | | if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){ | | /* Increase the buffer to prepare for a possible push. */ | int grow_size = 8 /* arbitrary grow size */; | | num_to_alloc = (yy_buffer_stack_max) + grow_size; | (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc | ((yy_buffer_stack), | num_to_alloc * sizeof(struct yy_buffer_state*) | ); | if ( ! (yy_buffer_stack) ) | YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); | | /* zero only the new slots.*/ | memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*)); | (yy_buffer_stack_max) = num_to_alloc; | } | } | | /** Setup the input buffer state to scan directly from a user-specified character buffer. | * @param base the character buffer | * @param size the size in bytes of the character buffer | * | * @return the newly allocated buffer state object. | */ | YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size ) | { | YY_BUFFER_STATE b; | | if ( size < 2 || | base[size-2] != YY_END_OF_BUFFER_CHAR || | base[size-1] != YY_END_OF_BUFFER_CHAR ) | /* They forgot to leave room for the EOB's. */ | return 0; | | b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); | if ( ! b ) | YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); | | b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */ | b->yy_buf_pos = b->yy_ch_buf = base; | b->yy_is_our_buffer = 0; | b->yy_input_file = 0; | b->yy_n_chars = b->yy_buf_size; | b->yy_is_interactive = 0; | b->yy_at_bol = 1; | b->yy_fill_buffer = 0; | b->yy_buffer_status = YY_BUFFER_NEW; | | yy_switch_to_buffer(b ); | | return b; | } | | /** Setup the input buffer state to scan a string. The next call to yylex() will | * scan from a @e copy of @a str. | * @param yystr a NUL-terminated string to scan | * | * @return the newly allocated buffer state object. | * @note If you want to scan bytes that may contain NUL values, then use | * yy_scan_bytes() instead. | */ | YY_BUFFER_STATE yy_scan_string (yyconst char * yystr ) | { | | return yy_scan_bytes(yystr,strlen(yystr) ); | } | | /** Setup the input buffer state to scan the given bytes. The next call to yylex() will | * scan from a @e copy of @a bytes. | * @param bytes the byte buffer to scan | * @param len the number of bytes in the buffer pointed to by @a bytes. | * | * @return the newly allocated buffer state object. | */ | YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, int _yybytes_len ) | { | YY_BUFFER_STATE b; | char *buf; | yy_size_t n; | int i; | | /* Get memory for full buffer, including space for trailing EOB's. */ | n = _yybytes_len + 2; | buf = (char *) yyalloc(n ); | if ( ! buf ) | YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); | | for ( i = 0; i < _yybytes_len; ++i ) | buf[i] = yybytes[i]; | | buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR; | | b = yy_scan_buffer(buf,n ); | if ( ! b ) | YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); | | /* It's okay to grow etc. this buffer, and we should throw it | * away when we're done. | */ | b->yy_is_our_buffer = 1; | | return b; | } | | #ifndef YY_EXIT_FAILURE | #define YY_EXIT_FAILURE 2 | #endif | | static void yy_fatal_error (yyconst char* msg ) | { | (void) fprintf( stderr, "%s\n", msg ); | exit( YY_EXIT_FAILURE ); | } | | /* Redefine yyless() so it works in section 3 code. */ | | #undef yyless | #define yyless(n) \ | do \ | { \ | /* Undo effects of setting up yytext. */ \ | int yyless_macro_arg = (n); \ | YY_LESS_LINENO(yyless_macro_arg);\ | yytext[yyleng] = (yy_hold_char); \ | (yy_c_buf_p) = yytext + yyless_macro_arg; \ | (yy_hold_char) = *(yy_c_buf_p); \ | *(yy_c_buf_p) = '\0'; \ | yyleng = yyless_macro_arg; \ | } \ | while ( 0 ) | | /* Accessor methods (get/set functions) to struct members. */ | | /** Get the current line number. | * | */ | int yyget_lineno (void) | { | | return yylineno; | } | | /** Get the input stream. | * | */ | FILE *yyget_in (void) | { | return yyin; | } | | /** Get the output stream. | * | */ | FILE *yyget_out (void) | { | return yyout; | } | | /** Get the length of the current token. | * | */ | int yyget_leng (void) | { | return yyleng; | } | | /** Get the current token. | * | */ | | char *yyget_text (void) | { | return yytext; | } | | /** Set the current line number. | * @param line_number | * | */ | void yyset_lineno (int line_number ) | { | | yylineno = line_number; | } | | /** Set the input stream. This does not discard the current | * input buffer. | * @param in_str A readable stream. | * | * @see yy_switch_to_buffer | */ | void yyset_in (FILE * in_str ) | { | yyin = in_str ; | } | | void yyset_out (FILE * out_str ) | { | yyout = out_str ; | } | | int yyget_debug (void) | { | return yy_flex_debug; | } | | void yyset_debug (int bdebug ) | { | yy_flex_debug = bdebug ; | } | | static int yy_init_globals (void) | { | /* Initialization is the same as for the non-reentrant scanner. | * This function is called from yylex_destroy(), so don't allocate here. | */ | | (yy_buffer_stack) = 0; | (yy_buffer_stack_top) = 0; | (yy_buffer_stack_max) = 0; | (yy_c_buf_p) = (char *) 0; | (yy_init) = 0; | (yy_start) = 0; | | (yy_state_buf) = 0; | (yy_state_ptr) = 0; | (yy_full_match) = 0; | (yy_lp) = 0; | | /* Defined in main.c */ | #ifdef YY_STDINIT | yyin = stdin; | yyout = stdout; | #else | yyin = (FILE *) 0; | yyout = (FILE *) 0; | #endif | | /* For future reference: Set errno on error, since we are called by | * yylex_init() | */ | return 0; | } | | /* yylex_destroy is for both reentrant and non-reentrant scanners. */ | int yylex_destroy (void) | { | | /* Pop the buffer stack, destroying each element. */ | while(YY_CURRENT_BUFFER){ | yy_delete_buffer(YY_CURRENT_BUFFER ); | YY_CURRENT_BUFFER_LVALUE = NULL; | yypop_buffer_state(); | } | | /* Destroy the stack itself. */ | yyfree((yy_buffer_stack) ); | (yy_buffer_stack) = NULL; | | yyfree ( (yy_state_buf) ); | (yy_state_buf) = NULL; | | /* Reset the globals. This is important in a non-reentrant scanner so the next time | * yylex() is called, initialization will occur. */ | yy_init_globals( ); | | return 0; | } | | /* | * Internal utility routines. | */ | | #ifndef yytext_ptr | static void yy_flex_strncpy (char* s1, yyconst char * s2, int n ) | { | register int i; | for ( i = 0; i < n; ++i ) | s1[i] = s2[i]; | } | #endif | | #ifdef YY_NEED_STRLEN | static int yy_flex_strlen (yyconst char * s ) | { | register int n; | for ( n = 0; s[n]; ++n ) | ; | | return n; | } | #endif | | void *yyalloc (yy_size_t size ) | { | return (void *) malloc( size ); | } | | void *yyrealloc (void * ptr, yy_size_t size ) | { | /* The cast to (char *) in the following accommodates both | * implementations that use char* generic pointers, and those | * that use void* generic pointers. It works with the latter | * because both ANSI C and C++ allow castless assignment from | * any pointer type to void*, and deal with argument conversions | * as though doing an assignment. | */ | return (void *) realloc( (char *) ptr, size ); | } | | void yyfree (void * ptr ) | { | free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ | } | | #define YYTABLES_NAME "yytables" | | #line 9 "conftest.l" | | | #ifdef YYTEXT_POINTER | extern char *yytext; | #endif | int | main (void) | { | return ! yylex () + ! yywrap (); | } configure:6848: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c -lfl >&5 configure:6848: $? = 0 configure:6858: result: -lfl configure:6864: checking whether yytext is a pointer configure:6880: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c -lfl >&5 configure:6880: $? = 0 configure:6888: result: yes configure:6902: checking for bison configure:6918: found /opt/sfw/bin/bison configure:6929: result: bison -y configure:6984: checking for ranlib configure:7011: result: ranlib configure:7034: checking for GNU M4 that supports accurate traces configure:7083: result: /usr2/gnu/bin/m4 configure:7086: checking whether /usr2/gnu/bin/m4 accepts --gnu configure:7096: result: yes configure:7113: checking how m4 supports trace files configure:7123: result: --debugfile configure:7143: checking for xsltproc configure:7161: found /usr/bin/xsltproc configure:7173: result: /usr/bin/xsltproc configure:7190: checking for locale.h configure:7190: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:7190: $? = 0 configure:7190: result: yes configure:7190: checking for sys/socket.h configure:7190: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:7190: $? = 0 configure:7190: result: yes configure:7190: checking for unistd.h configure:7190: result: yes configure:7190: checking for features.h configure:7190: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 67: cannot find include file: cc: acomp failed for conftest.c configure:7190: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_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:7190: result: no configure:7190: checking for getopt.h configure:7190: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:7190: $? = 0 configure:7190: result: yes configure:7190: checking for wchar.h configure:7190: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:7190: $? = 0 configure:7190: result: yes configure:7190: checking for stdint.h configure:7190: result: yes configure:7190: checking for inttypes.h configure:7190: result: yes configure:7190: checking for wctype.h configure:7190: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:7190: $? = 0 configure:7190: result: yes configure:7190: checking for math.h configure:7190: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:7190: $? = 0 configure:7190: result: yes configure:7190: checking for sys/mman.h configure:7190: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:7190: $? = 0 configure:7190: result: yes configure:7190: checking for sched.h configure:7190: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:7190: $? = 0 configure:7190: result: yes configure:7190: checking for spawn.h configure:7190: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:7190: $? = 0 configure:7190: result: yes configure:7190: checking for sys/ioctl.h configure:7190: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:7190: $? = 0 configure:7190: result: yes configure:7190: checking for sys/stat.h configure:7190: result: yes configure:7190: checking for sys/wait.h configure:7190: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:7190: $? = 0 configure:7190: result: yes configure:7190: checking for sys/time.h configure:7190: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:7190: $? = 0 configure:7190: result: yes configure:7207: checking for inline configure:7223: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:7223: $? = 0 configure:7231: result: inline configure:7261: checking for working alloca.h configure:7278: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:7278: $? = 0 configure:7286: result: yes configure:7294: checking for alloca configure:7331: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:7331: $? = 0 configure:7339: result: yes configure:7521: checking whether malloc, realloc, calloc are POSIX compliant configure:7541: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:7541: $? = 0 configure:7549: result: yes configure:7758: checking whether // is distinct from / configure:7787: result: no configure:7836: checking for dup2 configure:7836: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 84: warning: statement not reached configure:7836: $? = 0 configure:7836: result: yes configure:7836: checking for fcntl configure:7836: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 85: warning: statement not reached configure:7836: $? = 0 configure:7836: result: yes configure:7836: checking for vasnprintf configure:7836: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 86: warning: statement not reached Undefined first referenced symbol in file vasnprintf conftest.o ld: fatal: Symbol referencing errors. No output written to conftest configure:7836: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | /* end confdefs.h. */ | /* Define vasnprintf to an innocuous variant, in case declares vasnprintf. | For example, HP-UX 11i declares gettimeofday. */ | #define vasnprintf innocuous_vasnprintf | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char vasnprintf (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef vasnprintf | | /* 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 vasnprintf (); | /* 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_vasnprintf || defined __stub___vasnprintf | choke me | #endif | | int | main () | { | return vasnprintf (); | ; | return 0; | } configure:7836: result: no configure:7836: checking for getdtablesize configure:7836: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 86: warning: statement not reached configure:7836: $? = 0 configure:7836: result: yes configure:7836: checking for iswcntrl configure:7836: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 87: warning: statement not reached configure:7836: $? = 0 configure:7836: result: yes configure:7836: checking for iswblank configure:7836: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 88: warning: statement not reached configure:7836: $? = 0 configure:7836: result: yes configure:7836: checking for mbsinit configure:7836: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 89: warning: statement not reached configure:7836: $? = 0 configure:7836: result: yes configure:7836: checking for mbrtowc configure:7836: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 90: warning: statement not reached configure:7836: $? = 0 configure:7836: result: yes configure:7836: checking for isascii configure:7836: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 91: warning: statement not reached configure:7836: $? = 0 configure:7836: result: yes configure:7836: checking for mprotect configure:7836: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 92: warning: statement not reached configure:7836: $? = 0 configure:7836: result: yes configure:7836: checking for memchr configure:7836: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 93: warning: statement not reached configure:7836: $? = 0 configure:7836: result: yes configure:7836: checking for lstat configure:7836: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 94: warning: statement not reached configure:7836: $? = 0 configure:7836: result: yes configure:7836: checking for pipe configure:7836: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 95: warning: statement not reached configure:7836: $? = 0 configure:7836: result: yes configure:7836: checking for pipe2 configure:7836: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 96: warning: statement not reached Undefined first referenced symbol in file pipe2 conftest.o ld: fatal: Symbol referencing errors. No output written to conftest configure:7836: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 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:7836: result: no configure:7836: checking for posix_spawn configure:7836: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 96: warning: statement not reached configure:7836: $? = 0 configure:7836: result: yes configure:7836: checking for sigaction configure:7836: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 97: warning: statement not reached configure:7836: $? = 0 configure:7836: result: yes configure:7836: checking for sigaltstack configure:7836: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 98: warning: statement not reached configure:7836: $? = 0 configure:7836: result: yes configure:7836: checking for siginterrupt configure:7836: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 99: warning: statement not reached configure:7836: $? = 0 configure:7836: result: yes configure:7836: checking for strdup configure:7836: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 100: warning: statement not reached configure:7836: $? = 0 configure:7836: result: yes configure:7836: checking for strndup configure:7836: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 101: warning: statement not reached Undefined first referenced symbol in file strndup conftest.o ld: fatal: Symbol referencing errors. No output written to conftest configure:7836: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | /* end confdefs.h. */ | /* Define strndup to an innocuous variant, in case declares strndup. | For example, HP-UX 11i declares gettimeofday. */ | #define strndup innocuous_strndup | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char strndup (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef strndup | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char strndup (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined __stub_strndup || defined __stub___strndup | choke me | #endif | | int | main () | { | return strndup (); | ; | return 0; | } configure:7836: result: no configure:7836: checking for wcwidth configure:7836: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 101: warning: statement not reached configure:7836: $? = 0 configure:7836: result: yes configure:7836: checking for setlocale configure:7836: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 102: warning: statement not reached configure:7836: $? = 0 configure:7836: result: yes configure:7855: checking if environ is properly declared configure:7873: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:7873: $? = 0 configure:7881: result: no configure:7896: checking whether the preprocessor supports include_next configure:7934: /usr/bin/cc -m64 -xc99=all -c -g -Iconftestd1b -Iconftestd2 conftest.c >&5 configure:7934: $? = 0 configure:7955: result: yes configure:7976: checking whether system header files limit the line length configure:7999: result: no configure:8010: checking for complete errno.h configure:8065: result: yes configure:8348: checking whether strerror_r is declared configure:8348: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:8348: $? = 0 configure:8348: result: yes configure:8361: checking for strerror_r configure:8361: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 104: warning: statement not reached configure:8361: $? = 0 configure:8361: result: yes configure:8370: checking whether strerror_r returns char * configure:8394: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 107: cannot dereference non-pointer type "conftest.c", line 108: warning: improper pointer/integer combination: op "=" "conftest.c", line 112: warning: statement not reached cc: acomp failed for conftest.c configure:8394: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 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 () | { | | char buf[100]; | char x = *strerror_r (0, buf, sizeof buf); | char *p = strerror_r (0, buf, sizeof buf); | return !p || x; | | ; | return 0; | } configure:8432: result: no configure:8444: checking for sig_atomic_t configure:8444: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:8444: $? = 0 configure:8444: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 74: syntax error before or at: ) cc: acomp failed for conftest.c configure:8444: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | /* end confdefs.h. */ | #include | | int | main () | { | if (sizeof ((sig_atomic_t))) | return 0; | ; | return 0; | } configure:8444: result: yes configure:8475: checking for working fcntl.h configure:8559: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 141: warning: statement not reached configure:8559: $? = 0 configure:8559: ./conftest configure:8559: $? = 0 configure:8574: result: yes configure:8598: checking for stdint.h configure:8615: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 79: warning: statement not reached configure:8615: $? = 0 configure:8622: result: yes configure:8633: checking for inttypes.h configure:8652: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 82: warning: statement not reached configure:8652: $? = 0 configure:8659: result: yes configure:8673: checking whether printf supports size specifiers as in C99 configure:8744: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:8744: $? = 0 configure:8744: ./conftest configure:8744: $? = 0 configure:8755: result: yes configure:8760: checking whether printf supports 'long double' arguments configure:8799: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:8799: $? = 0 configure:8799: ./conftest configure:8799: $? = 0 configure:8810: result: yes configure:8815: checking whether printf supports infinite 'double' arguments configure:8916: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:8916: $? = 0 configure:8916: ./conftest configure:8916: $? = 0 configure:8927: result: yes configure:8931: checking whether byte ordering is bigendian configure:8946: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 75: warning: old-style declaration or incorrect type for: not "conftest.c", line 75: syntax error before or at: a "conftest.c", line 75: warning: old-style declaration or incorrect type for: a "conftest.c", line 75: warning: old-style declaration or incorrect type for: universal "conftest.c", line 75: warning: old-style declaration or incorrect type for: capable "conftest.c", line 75: warning: old-style declaration or incorrect type for: compiler cc: acomp failed for conftest.c configure:8946: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | /* end confdefs.h. */ | #ifndef __APPLE_CC__ | not a universal capable compiler | #endif | typedef int dummy; | configure:8991: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 81: undefined symbol: bogus "conftest.c", line 81: syntax error before or at: endian cc: acomp failed for conftest.c configure:8991: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | /* 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:9035: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:9035: $? = 0 configure:9052: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:9052: $? = 0 configure:9137: result: yes configure:9167: checking whether printf supports infinite 'long double' arguments configure:9446: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:9446: $? = 0 configure:9446: ./conftest configure:9446: $? = 0 configure:9457: result: yes configure:9467: checking whether printf supports the 'a' and 'A' directives configure:9554: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:9554: $? = 0 configure:9554: ./conftest configure:9554: $? = 11 configure: program exited with status 11 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | /* end confdefs.h. */ | | #include | #include | static char buf[100]; | int main () | { | int result = 0; | if (sprintf (buf, "%a %d", 3.1416015625, 33, 44, 55) < 0 | || (strcmp (buf, "0x1.922p+1 33") != 0 | && strcmp (buf, "0x3.244p+0 33") != 0 | && strcmp (buf, "0x6.488p-1 33") != 0 | && strcmp (buf, "0xc.91p-2 33") != 0)) | result |= 1; | if (sprintf (buf, "%A %d", -3.1416015625, 33, 44, 55) < 0 | || (strcmp (buf, "-0X1.922P+1 33") != 0 | && strcmp (buf, "-0X3.244P+0 33") != 0 | && strcmp (buf, "-0X6.488P-1 33") != 0 | && strcmp (buf, "-0XC.91P-2 33") != 0)) | result |= 2; | /* This catches a FreeBSD 6.1 bug: it doesn't round. */ | if (sprintf (buf, "%.2a %d", 1.51, 33, 44, 55) < 0 | || (strcmp (buf, "0x1.83p+0 33") != 0 | && strcmp (buf, "0x3.05p-1 33") != 0 | && strcmp (buf, "0x6.0ap-2 33") != 0 | && strcmp (buf, "0xc.14p-3 33") != 0)) | result |= 4; | /* This catches a FreeBSD 6.1 bug. See | */ | if (sprintf (buf, "%010a %d", 1.0 / 0.0, 33, 44, 55) < 0 | || buf[0] == '0') | result |= 8; | /* This catches a MacOS X 10.3.9 (Darwin 7.9) bug. */ | if (sprintf (buf, "%.1a", 1.999) < 0 | || (strcmp (buf, "0x1.0p+1") != 0 | && strcmp (buf, "0x2.0p+0") != 0 | && strcmp (buf, "0x4.0p-1") != 0 | && strcmp (buf, "0x8.0p-2") != 0)) | result |= 16; | /* This catches the same MacOS X 10.3.9 (Darwin 7.9) bug and also a | glibc 2.4 bug . */ | if (sprintf (buf, "%.1La", 1.999L) < 0 | || (strcmp (buf, "0x1.0p+1") != 0 | && strcmp (buf, "0x2.0p+0") != 0 | && strcmp (buf, "0x4.0p-1") != 0 | && strcmp (buf, "0x8.0p-2") != 0)) | result |= 32; | return result; | } configure:9565: result: no configure:9570: checking whether printf supports the 'F' directive configure:9617: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:9617: $? = 0 configure:9617: ./conftest configure:9617: $? = 0 configure:9628: result: yes configure:9633: checking whether printf supports the 'n' directive configure:9667: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:9667: $? = 0 configure:9667: ./conftest configure:9667: $? = 0 configure:9678: result: yes configure:9683: checking whether printf supports the 'ls' directive configure:9754: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:9754: $? = 0 configure:9754: ./conftest configure:9754: $? = 8 configure: program exited with status 8 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | /* end confdefs.h. */ | | /* Tru64 with Desktop Toolkit C has a bug: must be included before | . | BSD/OS 4.0.1 has a bug: , and must be | included before . */ | #include | #include | #include | #include | #include | int main () | { | int result = 0; | char buf[100]; | /* Test whether %ls works at all. | This test fails on OpenBSD 4.0, IRIX 6.5, Solaris 2.6, Haiku, but not on | Cygwin 1.5. */ | { | static const wchar_t wstring[] = { 'a', 'b', 'c', 0 }; | buf[0] = '\0'; | if (sprintf (buf, "%ls", wstring) < 0 | || strcmp (buf, "abc") != 0) | result |= 1; | } | /* This test fails on IRIX 6.5, Solaris 2.6, Cygwin 1.5, Haiku (with an | assertion failure inside libc), but not on OpenBSD 4.0. */ | { | static const wchar_t wstring[] = { 'a', 0 }; | buf[0] = '\0'; | if (sprintf (buf, "%ls", wstring) < 0 | || strcmp (buf, "a") != 0) | result |= 2; | } | /* Test whether precisions in %ls are supported as specified in ISO C 99 | section 7.19.6.1: | "If a precision is specified, no more than that many bytes are written | (including shift sequences, if any), and the array shall contain a | null wide character if, to equal the multibyte character sequence | length given by the precision, the function would need to access a | wide character one past the end of the array." | This test fails on Solaris 10. */ | { | static const wchar_t wstring[] = { 'a', 'b', (wchar_t) 0xfdfdfdfd, 0 }; | buf[0] = '\0'; | if (sprintf (buf, "%.2ls", wstring) < 0 | || strcmp (buf, "ab") != 0) | result |= 8; | } | return result; | } configure:9765: result: no configure:9770: checking whether printf supports POSIX/XSI format strings with positions configure:9802: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:9802: $? = 0 configure:9802: ./conftest configure:9802: $? = 0 configure:9813: result: yes configure:9818: checking whether printf supports the grouping flag configure:9848: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:9848: $? = 0 configure:9848: ./conftest configure:9848: $? = 0 configure:9859: result: yes configure:9864: checking whether printf supports the left-adjust flag correctly configure:9897: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:9897: $? = 0 configure:9897: ./conftest configure:9897: $? = 0 configure:9908: result: yes configure:9913: checking whether printf supports the zero flag correctly configure:9946: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:9946: $? = 0 configure:9946: ./conftest configure:9946: $? = 1 configure: program exited with status 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | /* end confdefs.h. */ | | #include | #include | static char buf[100]; | int main () | { | if (sprintf (buf, "%010f", 1.0 / 0.0, 33, 44, 55) < 0 | || (strcmp (buf, " inf") != 0 | && strcmp (buf, " infinity") != 0)) | return 1; | return 0; | } configure:9957: result: no configure:9962: checking whether printf supports large precisions configure:10002: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:10002: $? = 0 configure:10002: ./conftest configure:10002: $? = 4 configure: program exited with status 4 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | /* end confdefs.h. */ | | #include | #include | static char buf[5000]; | int main () | { | int result = 0; | #ifdef __BEOS__ | /* On BeOS, this would crash and show a dialog box. Avoid the crash. */ | return 1; | #endif | if (sprintf (buf, "%.4000d %d", 1, 33, 44) < 4000 + 3) | result |= 1; | if (sprintf (buf, "%.4000f %d", 1.0, 33, 44) < 4000 + 5) | result |= 2; | if (sprintf (buf, "%.511f %d", 1.0, 33, 44) < 511 + 5 | || buf[0] != '1') | result |= 4; | return result; | } configure:10013: result: no configure:10026: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 77: warning: old-style declaration or incorrect type for: not "conftest.c", line 77: syntax error before or at: a "conftest.c", line 77: warning: old-style declaration or incorrect type for: a "conftest.c", line 77: warning: old-style declaration or incorrect type for: universal "conftest.c", line 77: warning: old-style declaration or incorrect type for: capable "conftest.c", line 77: warning: old-style declaration or incorrect type for: compiler cc: acomp failed for conftest.c configure:10026: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | /* end confdefs.h. */ | #ifndef __APPLE_CC__ | not a universal capable compiler | #endif | typedef int dummy; | configure:10061: checking whether printf survives out-of-memory conditions configure:10204: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:10207: $? = 0 configure:10255: result: yes configure:10273: checking for unsigned long long int configure:10321: result: yes configure:10331: checking for long long int configure:10381: result: yes configure:10390: checking for wchar_t configure:10407: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:10407: $? = 0 configure:10414: result: yes configure:10423: checking for wint_t configure:10448: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:10448: $? = 0 configure:10455: result: yes configure:10474: checking for size_t configure:10474: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:10474: $? = 0 configure:10474: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 116: syntax error before or at: ) cc: acomp failed for conftest.c configure:10474: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_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 () | { | if (sizeof ((size_t))) | return 0; | ; | return 0; | } configure:10474: result: yes configure:10488: checking for intmax_t configure:10513: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 95: warning: statement not reached configure:10513: $? = 0 configure:10520: result: yes configure:10540: checking whether snprintf returns a byte count as in C99 configure:10596: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:10596: $? = 0 configure:10596: ./conftest configure:10596: $? = 0 configure:10607: result: yes configure:10619: checking for snprintf configure:10619: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 117: warning: statement not reached configure:10619: $? = 0 configure:10619: result: yes configure:10619: checking for strnlen configure:10619: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 118: warning: statement not reached Undefined first referenced symbol in file strnlen conftest.o ld: fatal: Symbol referencing errors. No output written to conftest configure:10619: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | /* end confdefs.h. */ | /* Define strnlen to an innocuous variant, in case declares strnlen. | For example, HP-UX 11i declares gettimeofday. */ | #define strnlen innocuous_strnlen | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char strnlen (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef strnlen | | /* 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 strnlen (); | /* 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_strnlen || defined __stub___strnlen | choke me | #endif | | int | main () | { | return strnlen (); | ; | return 0; | } configure:10619: result: no configure:10619: checking for wcslen configure:10619: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 118: warning: statement not reached configure:10619: $? = 0 configure:10619: result: yes configure:10619: checking for wcsnlen configure:10619: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 119: warning: statement not reached Undefined first referenced symbol in file wcsnlen conftest.o ld: fatal: Symbol referencing errors. No output written to conftest configure:10619: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | /* end confdefs.h. */ | /* Define wcsnlen to an innocuous variant, in case declares wcsnlen. | For example, HP-UX 11i declares gettimeofday. */ | #define wcsnlen innocuous_wcsnlen | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char wcsnlen (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef wcsnlen | | /* 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 wcsnlen (); | /* 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_wcsnlen || defined __stub___wcsnlen | choke me | #endif | | int | main () | { | return wcsnlen (); | ; | return 0; | } configure:10619: result: no configure:10619: checking for mbrtowc configure:10619: result: yes configure:10619: checking for wcrtomb configure:10619: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 120: warning: statement not reached configure:10619: $? = 0 configure:10619: result: yes configure:10629: checking whether _snprintf is declared configure:10629: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 91: undefined symbol: _snprintf cc: acomp failed for conftest.c configure:10629: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | /* end confdefs.h. */ | #include | | int | main () | { | #ifndef _snprintf | (void) _snprintf; | #endif | | ; | return 0; | } configure:10629: result: no configure:10741: checking whether frexp() can be used without linking with libm configure:10759: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 94: warning: statement not reached configure:10759: $? = 0 configure:10768: result: yes configure:10851: checking for getopt.h configure:10851: result: yes configure:10868: checking for getopt_long_only configure:10868: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 124: warning: statement not reached configure:10868: $? = 0 configure:10868: result: yes configure:10882: checking whether getopt is POSIX compatible configure:10899: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 93: undefined symbol: optreset "conftest.c", line 95: warning: statement not reached cc: acomp failed for conftest.c configure:10899: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | /* end confdefs.h. */ | #include | int | main () | { | int *p = &optreset; return optreset; | ; | return 0; | } configure:10913: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 95: warning: statement not reached configure:10913: $? = 0 configure:11020: /usr/bin/cc -m64 -xc99=all -o conftest -g -DOPTIND_MIN=1 conftest.c >&5 configure:11020: $? = 0 configure:11020: ./conftest configure:11020: $? = 0 configure:11032: result: yes configure:11040: checking for working GNU getopt function configure:11130: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 107: warning: implicit function declaration: getopt "conftest.c", line 147: warning: statement not reached configure:11130: $? = 0 configure:11130: ./conftest configure:11130: $? = 85 configure: program exited with status 85 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | /* end confdefs.h. */ | #include | #include | #include | | int | main () | { | | int result = 0; | /* This code succeeds on glibc 2.8, OpenBSD 4.0, Cygwin, mingw, | and fails on MacOS X 10.5, AIX 5.2, HP-UX 11, IRIX 6.5, | OSF/1 5.1, Solaris 10. */ | { | char *myargv[3]; | myargv[0] = "conftest"; | myargv[1] = "-+"; | myargv[2] = 0; | opterr = 0; | if (getopt (2, myargv, "+a") != '?') | result |= 1; | } | /* This code succeeds on glibc 2.8, mingw, | and fails on MacOS X 10.5, OpenBSD 4.0, AIX 5.2, HP-UX 11, | IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.5.x. */ | { | char *argv[] = { "program", "-p", "foo", "bar", NULL }; | | optind = 1; | if (getopt (4, argv, "p::") != 'p') | result |= 2; | else if (optarg != NULL) | result |= 4; | else if (getopt (4, argv, "p::") != -1) | result |= 6; | else if (optind != 2) | result |= 8; | } | /* This code succeeds on glibc 2.8 and fails on Cygwin 1.7.0. */ | { | char *argv[] = { "program", "foo", "-p", NULL }; | optind = 0; | if (getopt (3, argv, "-p") != 1) | result |= 16; | else if (getopt (3, argv, "-p") != 'p') | result |= 32; | } | /* This code fails on glibc 2.11. */ | { | char *argv[] = { "program", "-b", "-a", NULL }; | optind = opterr = 0; | if (getopt (3, argv, "+:a:b") != 'b') | result |= 64; | else if (getopt (3, argv, "+:a:b") != ':') | result |= 64; | } | return result; | | ; | return 0; | } configure:11146: result: no configure:11153: checking whether getenv is declared configure:11153: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:11153: $? = 0 configure:11153: result: yes configure:11208: checking for stdbool.h that conforms to C99 configure:11275: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 140: warning: improper pointer/integer combination: op "=" "conftest.c", line 148: warning: statement not reached configure:11275: $? = 0 configure:11282: result: yes configure:11284: checking for _Bool configure:11284: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:11284: $? = 0 configure:11284: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 127: syntax error before or at: ) cc: acomp failed for conftest.c configure:11284: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | /* 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:11284: result: yes configure:11433: checking whether stdint.h conforms to C99 configure:11604: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 213: bit-field size < 0: check_UINT8_C "conftest.c", line 215: bit-field size < 0: check_UINT16_C "conftest.c", line 235: bit-field size < 0: check_uint_fast16 cc: acomp failed for conftest.c configure:11604: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | /* end confdefs.h. */ | | | #define __STDC_LIMIT_MACROS 1 /* to make it work also in C++ mode */ | #define __STDC_CONSTANT_MACROS 1 /* to make it work also in C++ mode */ | #define _GL_JUST_INCLUDE_SYSTEM_STDINT_H 1 /* work if build isn't clean */ | #include | /* Dragonfly defines WCHAR_MIN, WCHAR_MAX only in . */ | #if !(defined WCHAR_MIN && defined WCHAR_MAX) | #error "WCHAR_MIN, WCHAR_MAX not defined in " | #endif | | | /* BSD/OS 4.0.1 has a bug: , and must be | included before . */ | #include | #include | #if HAVE_WCHAR_H | # include | # include | # include | #endif | | | #ifdef INT8_MAX | int8_t a1 = INT8_MAX; | int8_t a1min = INT8_MIN; | #endif | #ifdef INT16_MAX | int16_t a2 = INT16_MAX; | int16_t a2min = INT16_MIN; | #endif | #ifdef INT32_MAX | int32_t a3 = INT32_MAX; | int32_t a3min = INT32_MIN; | #endif | #ifdef INT64_MAX | int64_t a4 = INT64_MAX; | int64_t a4min = INT64_MIN; | #endif | #ifdef UINT8_MAX | uint8_t b1 = UINT8_MAX; | #else | typedef int b1[(unsigned char) -1 != 255 ? 1 : -1]; | #endif | #ifdef UINT16_MAX | uint16_t b2 = UINT16_MAX; | #endif | #ifdef UINT32_MAX | uint32_t b3 = UINT32_MAX; | #endif | #ifdef UINT64_MAX | uint64_t b4 = UINT64_MAX; | #endif | int_least8_t c1 = INT8_C (0x7f); | int_least8_t c1max = INT_LEAST8_MAX; | int_least8_t c1min = INT_LEAST8_MIN; | int_least16_t c2 = INT16_C (0x7fff); | int_least16_t c2max = INT_LEAST16_MAX; | int_least16_t c2min = INT_LEAST16_MIN; | int_least32_t c3 = INT32_C (0x7fffffff); | int_least32_t c3max = INT_LEAST32_MAX; | int_least32_t c3min = INT_LEAST32_MIN; | int_least64_t c4 = INT64_C (0x7fffffffffffffff); | int_least64_t c4max = INT_LEAST64_MAX; | int_least64_t c4min = INT_LEAST64_MIN; | uint_least8_t d1 = UINT8_C (0xff); | uint_least8_t d1max = UINT_LEAST8_MAX; | uint_least16_t d2 = UINT16_C (0xffff); | uint_least16_t d2max = UINT_LEAST16_MAX; | uint_least32_t d3 = UINT32_C (0xffffffff); | uint_least32_t d3max = UINT_LEAST32_MAX; | uint_least64_t d4 = UINT64_C (0xffffffffffffffff); | uint_least64_t d4max = UINT_LEAST64_MAX; | int_fast8_t e1 = INT_FAST8_MAX; | int_fast8_t e1min = INT_FAST8_MIN; | int_fast16_t e2 = INT_FAST16_MAX; | int_fast16_t e2min = INT_FAST16_MIN; | int_fast32_t e3 = INT_FAST32_MAX; | int_fast32_t e3min = INT_FAST32_MIN; | int_fast64_t e4 = INT_FAST64_MAX; | int_fast64_t e4min = INT_FAST64_MIN; | uint_fast8_t f1 = UINT_FAST8_MAX; | uint_fast16_t f2 = UINT_FAST16_MAX; | uint_fast32_t f3 = UINT_FAST32_MAX; | uint_fast64_t f4 = UINT_FAST64_MAX; | #ifdef INTPTR_MAX | intptr_t g = INTPTR_MAX; | intptr_t gmin = INTPTR_MIN; | #endif | #ifdef UINTPTR_MAX | uintptr_t h = UINTPTR_MAX; | #endif | intmax_t i = INTMAX_MAX; | uintmax_t j = UINTMAX_MAX; | | #include /* for CHAR_BIT */ | #define TYPE_MINIMUM(t) ((t) ((t) 0 < (t) -1 ? (t) 0 : ~ TYPE_MAXIMUM (t))) | #define TYPE_MAXIMUM(t) ((t) ((t) 0 < (t) -1 ? (t) -1 : ((((t) 1 << (sizeof (t) * CHAR_BIT - 2)) - 1) * 2 + 1))) | struct s { | int check_PTRDIFF: | PTRDIFF_MIN == TYPE_MINIMUM (ptrdiff_t) | && PTRDIFF_MAX == TYPE_MAXIMUM (ptrdiff_t) | ? 1 : -1; | /* Detect bug in FreeBSD 6.0 / ia64. */ | int check_SIG_ATOMIC: | SIG_ATOMIC_MIN == TYPE_MINIMUM (sig_atomic_t) | && SIG_ATOMIC_MAX == TYPE_MAXIMUM (sig_atomic_t) | ? 1 : -1; | int check_SIZE: SIZE_MAX == TYPE_MAXIMUM (size_t) ? 1 : -1; | int check_WCHAR: | WCHAR_MIN == TYPE_MINIMUM (wchar_t) | && WCHAR_MAX == TYPE_MAXIMUM (wchar_t) | ? 1 : -1; | /* Detect bug in mingw. */ | int check_WINT: | WINT_MIN == TYPE_MINIMUM (wint_t) | && WINT_MAX == TYPE_MAXIMUM (wint_t) | ? 1 : -1; | | /* Detect bugs in glibc 2.4 and Solaris 10 stdint.h, among others. */ | int check_UINT8_C: | (-1 < UINT8_C (0)) == (-1 < (uint_least8_t) 0) ? 1 : -1; | int check_UINT16_C: | (-1 < UINT16_C (0)) == (-1 < (uint_least16_t) 0) ? 1 : -1; | | /* Detect bugs in OpenBSD 3.9 stdint.h. */ | #ifdef UINT8_MAX | int check_uint8: (uint8_t) -1 == UINT8_MAX ? 1 : -1; | #endif | #ifdef UINT16_MAX | int check_uint16: (uint16_t) -1 == UINT16_MAX ? 1 : -1; | #endif | #ifdef UINT32_MAX | int check_uint32: (uint32_t) -1 == UINT32_MAX ? 1 : -1; | #endif | #ifdef UINT64_MAX | int check_uint64: (uint64_t) -1 == UINT64_MAX ? 1 : -1; | #endif | int check_uint_least8: (uint_least8_t) -1 == UINT_LEAST8_MAX ? 1 : -1; | int check_uint_least16: (uint_least16_t) -1 == UINT_LEAST16_MAX ? 1 : -1; | int check_uint_least32: (uint_least32_t) -1 == UINT_LEAST32_MAX ? 1 : -1; | int check_uint_least64: (uint_least64_t) -1 == UINT_LEAST64_MAX ? 1 : -1; | int check_uint_fast8: (uint_fast8_t) -1 == UINT_FAST8_MAX ? 1 : -1; | int check_uint_fast16: (uint_fast16_t) -1 == UINT_FAST16_MAX ? 1 : -1; | int check_uint_fast32: (uint_fast32_t) -1 == UINT_FAST32_MAX ? 1 : -1; | int check_uint_fast64: (uint_fast64_t) -1 == UINT_FAST64_MAX ? 1 : -1; | int check_uintptr: (uintptr_t) -1 == UINTPTR_MAX ? 1 : -1; | int check_uintmax: (uintmax_t) -1 == UINTMAX_MAX ? 1 : -1; | int check_size: (size_t) -1 == SIZE_MAX ? 1 : -1; | }; | | int | main () | { | | ; | return 0; | } configure:11698: result: no configure:11707: checking sys/inttypes.h usability configure:11707: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:11707: $? = 0 configure:11707: result: yes configure:11707: checking sys/inttypes.h presence configure:11707: /usr/bin/cc -m64 -xc99=all -E conftest.c configure:11707: $? = 0 configure:11707: result: yes configure:11707: checking for sys/inttypes.h configure:11707: result: yes configure:11707: checking sys/bitypes.h usability configure:11707: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 126: cannot find include file: cc: acomp failed for conftest.c configure:11707: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_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:11707: result: no configure:11707: checking sys/bitypes.h presence configure:11707: /usr/bin/cc -m64 -xc99=all -E conftest.c "conftest.c", line 93: cannot find include file: cc: acomp failed for conftest.c configure:11707: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | /* end confdefs.h. */ | #include configure:11707: result: no configure:11707: checking for sys/bitypes.h configure:11707: result: no configure:11737: checking for bit size of ptrdiff_t configure:11742: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 135: warning: statement not reached configure:11742: $? = 0 configure:11742: ./conftest configure:11742: $? = 0 configure:11763: result: 64 configure:11737: checking for bit size of size_t configure:11742: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 136: warning: statement not reached configure:11742: $? = 0 configure:11742: ./conftest configure:11742: $? = 0 configure:11763: result: 64 configure:11782: checking for bit size of sig_atomic_t configure:11787: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 137: warning: statement not reached configure:11787: $? = 0 configure:11787: ./conftest configure:11787: $? = 0 configure:11808: result: 32 configure:11782: checking for bit size of wchar_t configure:11787: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 138: warning: statement not reached configure:11787: $? = 0 configure:11787: ./conftest configure:11787: $? = 0 configure:11808: result: 32 configure:11782: checking for bit size of wint_t configure:11787: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 139: warning: statement not reached configure:11787: $? = 0 configure:11787: ./conftest configure:11787: $? = 0 configure:11808: result: 32 configure:11826: checking whether sig_atomic_t is signed configure:11853: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:11853: $? = 0 configure:11863: result: yes configure:11826: checking whether wchar_t is signed configure:11853: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:11853: $? = 0 configure:11863: result: yes configure:11826: checking whether wint_t is signed configure:11853: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:11853: $? = 0 configure:11863: result: yes configure:11885: checking for ptrdiff_t integer literal suffix configure:11931: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 113: identifier redeclared: foo current : int previous: long : "conftest.c", line 112 cc: acomp failed for conftest.c configure:11931: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | /* end confdefs.h. */ | | /* BSD/OS 4.0.1 has a bug: , and must be | included before . */ | #include | #include | #if HAVE_WCHAR_H | # include | # include | # include | #endif | | extern ptrdiff_t foo; | extern int foo; | int | main () | { | | ; | return 0; | } configure:11931: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:11931: $? = 0 configure:11940: result: l configure:11885: checking for size_t integer literal suffix configure:11931: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 114: identifier redeclared: foo current : unsigned int previous: unsigned long : "conftest.c", line 113 cc: acomp failed for conftest.c configure:11931: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | /* end confdefs.h. */ | | /* BSD/OS 4.0.1 has a bug: , and must be | included before . */ | #include | #include | #if HAVE_WCHAR_H | # include | # include | # include | #endif | | extern size_t foo; | extern unsigned int foo; | int | main () | { | | ; | return 0; | } configure:11931: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:11931: $? = 0 configure:11940: result: ul configure:11957: checking for sig_atomic_t integer literal suffix configure:12003: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:12003: $? = 0 configure:12012: result: configure:11957: checking for wchar_t integer literal suffix configure:12003: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:12003: $? = 0 configure:12012: result: configure:11957: checking for wint_t integer literal suffix configure:12003: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:12003: $? = 0 configure:12012: result: configure:12041: checking for inttypes.h configure:12041: result: yes configure:12052: checking whether the inttypes.h PRIxNN macros are broken configure:12074: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:12074: $? = 0 configure:12082: result: no configure:12099: checking whether imaxabs is declared configure:12099: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:12099: $? = 0 configure:12099: result: yes configure:12110: checking whether imaxdiv is declared configure:12110: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:12110: $? = 0 configure:12110: result: yes configure:12121: checking whether strtoimax is declared configure:12121: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:12121: $? = 0 configure:12121: result: yes configure:12132: checking whether strtoumax is declared configure:12132: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:12132: $? = 0 configure:12132: result: yes configure:12204: checking whether is self-contained configure:12221: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:12221: $? = 0 configure:12229: result: yes configure:12234: checking for shutdown configure:12234: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 147: warning: statement not reached Undefined first referenced symbol in file shutdown conftest.o ld: fatal: Symbol referencing errors. No output written to conftest configure:12234: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | /* end confdefs.h. */ | /* Define shutdown to an innocuous variant, in case declares shutdown. | For example, HP-UX 11i declares gettimeofday. */ | #define shutdown innocuous_shutdown | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char shutdown (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef shutdown | | /* 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 shutdown (); | /* 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_shutdown || defined __stub___shutdown | choke me | #endif | | int | main () | { | return shutdown (); | ; | return 0; | } configure:12234: result: no configure:12353: checking for struct sockaddr_storage configure:12353: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:12353: $? = 0 configure:12353: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 127: syntax error before or at: ) cc: acomp failed for conftest.c configure:12353: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | /* end confdefs.h. */ | | /* sys/types.h is not needed according to POSIX, but the | sys/socket.h in i386-unknown-freebsd4.10 and | powerpc-apple-darwin5.5 required it. */ | #include | #ifdef HAVE_SYS_SOCKET_H | #include | #endif | #ifdef HAVE_WS2TCPIP_H | #include | #endif | | | int | main () | { | if (sizeof ((struct sockaddr_storage))) | return 0; | ; | return 0; | } configure:12353: result: yes configure:12374: checking for sa_family_t configure:12374: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:12374: $? = 0 configure:12374: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 128: syntax error before or at: ) cc: acomp failed for conftest.c configure:12374: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | /* end confdefs.h. */ | | /* sys/types.h is not needed according to POSIX, but the | sys/socket.h in i386-unknown-freebsd4.10 and | powerpc-apple-darwin5.5 required it. */ | #include | #ifdef HAVE_SYS_SOCKET_H | #include | #endif | #ifdef HAVE_WS2TCPIP_H | #include | #endif | | | int | main () | { | if (sizeof ((sa_family_t))) | return 0; | ; | return 0; | } configure:12374: result: yes configure:12403: checking for struct sockaddr_storage.ss_family configure:12403: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:12403: $? = 0 configure:12403: result: yes configure:12459: checking whether socket is declared without a macro configure:12480: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:12480: $? = 0 configure:12488: result: yes configure:12459: checking whether connect is declared without a macro configure:12480: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:12480: $? = 0 configure:12488: result: yes configure:12459: checking whether accept is declared without a macro configure:12480: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:12480: $? = 0 configure:12488: result: yes configure:12459: checking whether bind is declared without a macro configure:12480: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:12480: $? = 0 configure:12488: result: yes configure:12459: checking whether getpeername is declared without a macro configure:12480: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:12480: $? = 0 configure:12488: result: yes configure:12459: checking whether getsockname is declared without a macro configure:12480: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:12480: $? = 0 configure:12488: result: yes configure:12459: checking whether getsockopt is declared without a macro configure:12480: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:12480: $? = 0 configure:12488: result: yes configure:12459: checking whether listen is declared without a macro configure:12480: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:12480: $? = 0 configure:12488: result: yes configure:12459: checking whether recv is declared without a macro configure:12480: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:12480: $? = 0 configure:12488: result: yes configure:12459: checking whether send is declared without a macro configure:12480: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:12480: $? = 0 configure:12488: result: yes configure:12459: checking whether recvfrom is declared without a macro configure:12480: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:12480: $? = 0 configure:12488: result: yes configure:12459: checking whether sendto is declared without a macro configure:12480: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:12480: $? = 0 configure:12488: result: yes configure:12459: checking whether setsockopt is declared without a macro configure:12480: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:12480: $? = 0 configure:12488: result: yes configure:12459: checking whether shutdown is declared without a macro configure:12480: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:12480: $? = 0 configure:12488: result: yes configure:12459: checking whether accept4 is declared without a macro configure:12480: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 137: undefined symbol: accept4 cc: acomp failed for conftest.c configure:12480: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | /* end confdefs.h. */ | | /* Some systems require prerequisite headers. */ | #include | #include | | int | main () | { | #undef accept4 | (void) accept4; | ; | return 0; | } configure:12488: result: no configure:12502: checking where to find the exponent in a 'float' configure:12579: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:12579: $? = 0 configure:12579: ./conftest configure:12579: $? = 0 configure:12591: result: word 0 bit 23 configure:12614: checking whether isnan(float) can be used without linking with libm configure:12639: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 144: warning: statement not reached configure:12639: $? = 0 configure:12648: result: yes configure:12704: checking whether isnan(float) works configure:12772: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:12772: $? = 0 configure:12772: ./conftest configure:12772: $? = 0 configure:12783: result: yes configure:12924: checking whether isnan(double) can be used without linking with libm configure:12949: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 144: warning: statement not reached configure:12949: $? = 0 configure:12958: result: yes configure:13378: checking whether isnan(long double) can be used without linking with libm configure:13403: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 144: warning: statement not reached configure:13403: $? = 0 configure:13412: result: yes configure:13468: checking whether isnanl works configure:13606: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:13606: $? = 0 configure:13606: ./conftest configure:13606: $? = 0 configure:13617: result: yes configure:13857: checking whether iswcntrl works configure:13901: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:13901: $? = 0 configure:13901: ./conftest configure:13901: $? = 0 configure:13912: result: yes configure:13932: checking for wctype_t configure:13960: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:13960: $? = 0 configure:13968: result: yes configure:13974: checking for wctrans_t configure:14000: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:14000: $? = 0 configure:14008: result: yes configure:14017: checking whether wctype is declared without a macro configure:14046: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:14046: $? = 0 configure:14054: result: yes configure:14017: checking whether iswctype is declared without a macro configure:14046: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:14046: $? = 0 configure:14054: result: yes configure:14017: checking whether wctrans is declared without a macro configure:14046: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:14046: $? = 0 configure:14054: result: yes configure:14017: checking whether towctrans is declared without a macro configure:14046: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:14046: $? = 0 configure:14054: result: yes configure:14069: checking whether iswblank is declared configure:14069: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 171: undefined symbol: iswblank cc: acomp failed for conftest.c configure:14069: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 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 () | { | #ifndef iswblank | (void) iswblank; | #endif | | ; | return 0; | } configure:14069: result: no configure:14081: checking for nl_langinfo and CODESET configure:14097: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 141: warning: statement not reached configure:14097: $? = 0 configure:14106: result: yes configure:14114: checking whether getc_unlocked is declared configure:14114: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:14114: $? = 0 configure:14114: result: yes configure:14126: checking whether we are using the GNU C Library >= 2.1 or uClibc "conftest.c", line 138: cannot find include file: cc: acomp failed for conftest.c configure:14156: result: no configure:14259: checking for mbstate_t configure:14283: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 183: warning: statement not reached configure:14283: $? = 0 configure:14290: result: yes configure:14309: checking for a traditional japanese locale configure:14379: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:14382: $? = 0 configure:14439: result: none configure:14447: checking for a transitional chinese locale configure:14518: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:14521: $? = 0 configure:14566: result: none configure:14573: checking for a french Unicode locale configure:14643: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:14646: $? = 0 configure:14692: result: none configure:14782: checking for mmap configure:14782: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 174: warning: statement not reached configure:14782: $? = 0 configure:14782: result: yes configure:14793: checking for MAP_ANONYMOUS configure:14830: result: yes configure:14852: checking whether memchr works configure:14915: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 189: warning: statement not reached configure:14915: $? = 0 configure:14915: ./conftest configure:14915: $? = 0 configure:14925: result: yes configure:14960: checking for mode_t configure:14960: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:14960: $? = 0 configure:14960: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 175: syntax error before or at: ) cc: acomp failed for conftest.c configure:14960: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 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 ((mode_t))) | return 0; | ; | return 0; | } configure:14960: result: yes configure:14973: checking for promoted mode_t type configure:14990: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 143: zero or negative subscript cc: acomp failed for conftest.c configure:14990: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | /* end confdefs.h. */ | #include | int | main () | { | typedef int array[2 * (sizeof (mode_t) < sizeof (int)) - 1]; | ; | return 0; | } configure:14998: result: mode_t configure:15056: checking whether posix_spawn works configure:15196: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:15196: $? = 0 configure:15371: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:15371: $? = 0 configure:15371: ./conftest configure:15371: $? = 0 configure:15389: result: yes configure:15394: checking whether posix_spawnattr_setschedpolicy is supported configure:15418: result: yes configure:15420: checking whether posix_spawnattr_setschedparam is supported configure:15444: result: yes configure:15568: checking for nl_langinfo configure:15568: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 177: warning: statement not reached configure:15568: $? = 0 configure:15568: result: yes configure:15734: checking for ptrdiff_t configure:15734: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:15734: $? = 0 configure:15734: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 183: syntax error before or at: ) cc: acomp failed for conftest.c configure:15734: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 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 ((ptrdiff_t))) | return 0; | ; | return 0; | } configure:15734: result: yes configure:15771: checking whether C symbols are prefixed with underscore at the linker level configure:15784: /usr/bin/cc -m64 -xc99=all -g -S conftest.c configure:15787: $? = 0 configure:15797: result: no configure:15829: checking for C/C++ restrict keyword configure:15854: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 150: syntax error before or at: ip "conftest.c", line 150: warning: undefined or missing type for: ip "conftest.c", line 151: undefined symbol: ip "conftest.c", line 151: cannot dereference non-pointer type "conftest.c", line 157: syntax error before or at: t "conftest.c", line 158: undefined symbol: t "conftest.c", line 158: cannot dereference non-pointer type "conftest.c", line 161: warning: statement not reached cc: acomp failed for conftest.c configure:15854: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | /* 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:15854: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 161: warning: statement not reached configure:15854: $? = 0 configure:15862: result: __restrict__ configure:15875: checking for uid_t in sys/types.h configure:15894: result: yes configure:15909: checking whether snprintf is declared configure:15909: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:15909: $? = 0 configure:15909: result: yes configure:15962: checking whether strdup is declared configure:15962: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:15962: $? = 0 configure:15962: result: yes configure:15977: checking for working strerror function configure:16015: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 159: warning: statement not reached configure:16015: $? = 0 configure:16015: ./conftest configure:16015: $? = 0 configure:16026: result: yes configure:16125: checking whether memmem is declared without a macro configure:16143: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 158: undefined symbol: memmem cc: acomp failed for conftest.c configure:16143: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | /* end confdefs.h. */ | #include | | int | main () | { | #undef memmem | (void) memmem; | ; | return 0; | } configure:16151: result: no configure:16125: checking whether mempcpy is declared without a macro configure:16143: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 158: undefined symbol: mempcpy cc: acomp failed for conftest.c configure:16143: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | /* end confdefs.h. */ | #include | | int | main () | { | #undef mempcpy | (void) mempcpy; | ; | return 0; | } configure:16151: result: no configure:16125: checking whether memrchr is declared without a macro configure:16143: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 158: undefined symbol: memrchr cc: acomp failed for conftest.c configure:16143: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | /* end confdefs.h. */ | #include | | int | main () | { | #undef memrchr | (void) memrchr; | ; | return 0; | } configure:16151: result: no configure:16125: checking whether rawmemchr is declared without a macro configure:16143: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 158: undefined symbol: rawmemchr cc: acomp failed for conftest.c configure:16143: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | /* end confdefs.h. */ | #include | | int | main () | { | #undef rawmemchr | (void) rawmemchr; | ; | return 0; | } configure:16151: result: no configure:16125: checking whether stpcpy is declared without a macro configure:16143: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 158: undefined symbol: stpcpy cc: acomp failed for conftest.c configure:16143: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | /* end confdefs.h. */ | #include | | int | main () | { | #undef stpcpy | (void) stpcpy; | ; | return 0; | } configure:16151: result: no configure:16125: checking whether stpncpy is declared without a macro configure:16143: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 158: undefined symbol: stpncpy cc: acomp failed for conftest.c configure:16143: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | /* end confdefs.h. */ | #include | | int | main () | { | #undef stpncpy | (void) stpncpy; | ; | return 0; | } configure:16151: result: no configure:16125: checking whether strchrnul is declared without a macro configure:16143: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 158: undefined symbol: strchrnul cc: acomp failed for conftest.c configure:16143: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | /* end confdefs.h. */ | #include | | int | main () | { | #undef strchrnul | (void) strchrnul; | ; | return 0; | } configure:16151: result: no configure:16125: checking whether strdup is declared without a macro configure:16143: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:16143: $? = 0 configure:16151: result: yes configure:16125: checking whether strncat is declared without a macro configure:16143: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:16143: $? = 0 configure:16151: result: yes configure:16125: checking whether strndup is declared without a macro configure:16143: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 160: undefined symbol: strndup cc: acomp failed for conftest.c configure:16143: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | /* end confdefs.h. */ | #include | | int | main () | { | #undef strndup | (void) strndup; | ; | return 0; | } configure:16151: result: no configure:16125: checking whether strnlen is declared without a macro configure:16143: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 160: undefined symbol: strnlen cc: acomp failed for conftest.c configure:16143: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | /* end confdefs.h. */ | #include | | int | main () | { | #undef strnlen | (void) strnlen; | ; | return 0; | } configure:16151: result: no configure:16125: checking whether strpbrk is declared without a macro configure:16143: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:16143: $? = 0 configure:16151: result: yes configure:16125: checking whether strsep is declared without a macro configure:16143: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 161: undefined symbol: strsep cc: acomp failed for conftest.c configure:16143: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | /* end confdefs.h. */ | #include | | int | main () | { | #undef strsep | (void) strsep; | ; | return 0; | } configure:16151: result: no configure:16125: checking whether strcasestr is declared without a macro configure:16143: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 161: undefined symbol: strcasestr cc: acomp failed for conftest.c configure:16143: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | /* end confdefs.h. */ | #include | | int | main () | { | #undef strcasestr | (void) strcasestr; | ; | return 0; | } configure:16151: result: no configure:16125: checking whether strtok_r is declared without a macro configure:16143: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:16143: $? = 0 configure:16151: result: yes configure:16125: checking whether strerror_r is declared without a macro configure:16143: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:16143: $? = 0 configure:16151: result: yes configure:16125: checking whether strsignal is declared without a macro configure:16143: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:16143: $? = 0 configure:16151: result: yes configure:16125: checking whether strverscmp is declared without a macro configure:16143: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 164: undefined symbol: strverscmp cc: acomp failed for conftest.c configure:16143: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | /* end confdefs.h. */ | #include | | int | main () | { | #undef strverscmp | (void) strverscmp; | ; | return 0; | } configure:16151: result: no configure:16164: checking whether strndup is declared configure:16164: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 195: undefined symbol: strndup cc: acomp failed for conftest.c configure:16164: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 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 () | { | #ifndef strndup | (void) strndup; | #endif | | ; | return 0; | } configure:16164: result: no configure:16177: checking whether strnlen is declared configure:16177: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 196: undefined symbol: strnlen cc: acomp failed for conftest.c configure:16177: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 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 | int | main () | { | #ifndef strnlen | (void) strnlen; | #endif | | ; | return 0; | } configure:16177: result: no configure:16190: checking whether stat file-mode macros are broken configure:16217: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:16217: $? = 0 configure:16224: result: no configure:16258: checking for struct timespec in configure:16275: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:16275: $? = 0 configure:16282: result: yes configure:16442: checking whether clearerr_unlocked is declared configure:16442: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 197: undefined symbol: clearerr_unlocked cc: acomp failed for conftest.c configure:16442: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 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 | int | main () | { | #ifndef clearerr_unlocked | (void) clearerr_unlocked; | #endif | | ; | return 0; | } configure:16442: result: no configure:16453: checking whether feof_unlocked is declared configure:16453: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 198: undefined symbol: feof_unlocked cc: acomp failed for conftest.c configure:16453: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 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 | int | main () | { | #ifndef feof_unlocked | (void) feof_unlocked; | #endif | | ; | return 0; | } configure:16453: result: no configure:16464: checking whether ferror_unlocked is declared configure:16464: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 199: undefined symbol: ferror_unlocked cc: acomp failed for conftest.c configure:16464: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 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 | int | main () | { | #ifndef ferror_unlocked | (void) ferror_unlocked; | #endif | | ; | return 0; | } configure:16464: result: no configure:16475: checking whether fflush_unlocked is declared configure:16475: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 200: undefined symbol: fflush_unlocked cc: acomp failed for conftest.c configure:16475: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 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 | int | main () | { | #ifndef fflush_unlocked | (void) fflush_unlocked; | #endif | | ; | return 0; | } configure:16475: result: no configure:16486: checking whether fgets_unlocked is declared configure:16486: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 201: undefined symbol: fgets_unlocked cc: acomp failed for conftest.c configure:16486: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 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 | int | main () | { | #ifndef fgets_unlocked | (void) fgets_unlocked; | #endif | | ; | return 0; | } configure:16486: result: no configure:16497: checking whether fputc_unlocked is declared configure:16497: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 202: undefined symbol: fputc_unlocked cc: acomp failed for conftest.c configure:16497: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 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 | int | main () | { | #ifndef fputc_unlocked | (void) fputc_unlocked; | #endif | | ; | return 0; | } configure:16497: result: no configure:16508: checking whether fputs_unlocked is declared configure:16508: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 203: undefined symbol: fputs_unlocked cc: acomp failed for conftest.c configure:16508: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 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 | int | main () | { | #ifndef fputs_unlocked | (void) fputs_unlocked; | #endif | | ; | return 0; | } configure:16508: result: no configure:16519: checking whether fread_unlocked is declared configure:16519: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 204: undefined symbol: fread_unlocked cc: acomp failed for conftest.c configure:16519: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 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 | int | main () | { | #ifndef fread_unlocked | (void) fread_unlocked; | #endif | | ; | return 0; | } configure:16519: result: no configure:16530: checking whether fwrite_unlocked is declared configure:16530: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 205: undefined symbol: fwrite_unlocked cc: acomp failed for conftest.c configure:16530: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 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 | int | main () | { | #ifndef fwrite_unlocked | (void) fwrite_unlocked; | #endif | | ; | return 0; | } configure:16530: result: no configure:16541: checking whether getchar_unlocked is declared configure:16541: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:16541: $? = 0 configure:16541: result: yes configure:16552: checking whether putc_unlocked is declared configure:16552: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:16552: $? = 0 configure:16552: result: yes configure:16563: checking whether putchar_unlocked is declared configure:16563: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:16563: $? = 0 configure:16563: result: yes configure:16574: checking whether unsetenv is declared configure:16574: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:16574: $? = 0 configure:16574: result: yes configure:16585: checking whether vsnprintf is declared configure:16585: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:16585: $? = 0 configure:16585: result: yes configure:16597: checking whether uses 'inline' correctly configure:16619: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:16622: $? = 0 configure:16640: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:16643: $? = 0 configure:16656: result: yes configure:16705: checking for alloca as a compiler built-in configure:16729: result: no configure:16769: checking whether to enable assertions configure:16786: result: yes configure:17033: checking whether // is distinct from / configure:17062: result: no configure:17088: checking whether dup2 works configure:17142: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 206: warning: statement not reached configure:17142: $? = 0 configure:17142: ./conftest configure:17142: $? = 0 configure:17153: result: yes configure:17216: checking for error_at_line configure:17232: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 181: cannot find include file: "conftest.c", line 185: warning: implicit function declaration: error_at_line cc: acomp failed for conftest.c configure:17232: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | /* end confdefs.h. */ | #include | int | main () | { | error_at_line (0, 0, "", 0, "an error occurred"); | ; | return 0; | } configure:17240: result: no configure:17321: checking whether fcntl handles F_DUPFD correctly configure:17351: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 195: warning: statement not reached configure:17351: $? = 0 configure:17351: ./conftest configure:17351: $? = 0 configure:17361: result: yes configure:17389: checking whether fcntl understands F_DUPFD_CLOEXEC configure:17410: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 185: warning: old-style declaration or incorrect type for: choke "conftest.c", line 185: syntax error before or at: me "conftest.c", line 185: warning: old-style declaration or incorrect type for: me cc: acomp failed for conftest.c configure:17410: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | /* end confdefs.h. */ | | #include | #ifndef F_DUPFD_CLOEXEC | choke me | #endif | | int | main () | { | | ; | return 0; | } configure:17439: result: no configure:17536: checking whether fcntl is declared without a macro configure:17554: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:17554: $? = 0 configure:17562: result: yes configure:17536: checking whether openat is declared without a macro configure:17554: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:17554: $? = 0 configure:17562: result: yes configure:17666: checking whether fopen recognizes a trailing slash configure:17692: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:17692: $? = 0 configure:17692: ./conftest configure:17692: $? = 0 configure:17704: result: yes configure:17882: checking for nl_langinfo configure:17882: result: yes configure:18048: checking for ptrdiff_t configure:18048: result: yes configure:18103: checking whether frexp works configure:18173: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 246: warning: argument #2 is incompatible with prototype: prototype: pointer to const void : "/usr/include/iso/string_iso.h", line 59 argument : pointer to volatile double configure:18173: $? = 0 configure:18173: ./conftest configure:18173: $? = 0 configure:18184: result: yes configure:18226: checking whether frexpl is declared configure:18226: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:18226: $? = 0 configure:18226: result: yes configure:18236: checking whether frexpl() can be used without linking with libm configure:18254: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 206: warning: statement not reached Undefined first referenced symbol in file frexpl conftest.o ld: fatal: Symbol referencing errors. No output written to conftest configure:18254: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | /* end confdefs.h. */ | #include | long double x; | int | main () | { | int e; return frexpl (x, &e) > 0; | ; | return 0; | } configure:18263: result: no configure:18536: checking whether the compiler generally respects inline configure:18557: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:18557: $? = 0 configure:18566: result: yes configure:18585: checking whether inttypes.h conforms to C99 configure:18714: result: no configure:18844: checking whether INT32_MAX < INTMAX_MAX configure:18878: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:18878: $? = 0 configure:18885: result: yes configure:18896: checking whether INT64_MAX == LONG_MAX configure:18930: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:18930: $? = 0 configure:18937: result: yes configure:18950: checking whether UINT32_MAX < UINTMAX_MAX configure:18984: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:18984: $? = 0 configure:18991: result: yes configure:19002: checking whether UINT64_MAX == ULONG_MAX configure:19036: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:19036: $? = 0 configure:19043: result: yes configure:19059: checking whether imaxabs is declared without a macro configure:19077: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:19077: $? = 0 configure:19085: result: yes configure:19059: checking whether imaxdiv is declared without a macro configure:19077: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:19077: $? = 0 configure:19085: result: yes configure:19059: checking whether strtoimax is declared without a macro configure:19077: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:19077: $? = 0 configure:19085: result: yes configure:19059: checking whether strtoumax is declared without a macro configure:19077: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:19077: $? = 0 configure:19085: result: yes configure:19119: checking for ioctl configure:19119: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 245: warning: statement not reached configure:19119: $? = 0 configure:19119: result: yes configure:19128: checking for ioctl with POSIX signature configure:19145: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:19145: $? = 0 configure:19153: result: yes configure:19193: checking whether isnan macro works configure:19198: result: yes configure:19842: checking whether isnan(double) can be used without linking with libm configure:19876: result: yes configure:20306: checking whether isnan(double) can be used without linking with libm configure:20340: result: yes configure:20713: checking whether isnan(float) can be used without linking with libm configure:20747: result: yes configure:20803: checking whether isnan(float) works configure:20882: result: yes configure:21033: checking whether isnan(float) can be used without linking with libm configure:21067: result: yes configure:21074: checking whether isnan(float) works configure:21153: result: yes configure:21295: checking whether isnan(long double) can be used without linking with libm configure:21329: result: yes configure:21385: checking whether isnanl works configure:21534: result: yes configure:21689: checking whether isnan(long double) can be used without linking with libm configure:21723: result: yes configure:21731: checking whether isnanl works configure:21880: result: yes configure:22073: checking whether ldexpl is declared configure:22073: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:22073: $? = 0 configure:22073: result: yes configure:22084: checking whether ldexpl() can be used without linking with libm configure:22102: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 226: warning: statement not reached Undefined first referenced symbol in file ldexpl conftest.o ld: fatal: Symbol referencing errors. No output written to conftest configure:22102: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | /* end confdefs.h. */ | #include | long double x; | int | main () | { | return ldexpl (x, -1) > 0; | ; | return 0; | } configure:22111: result: no configure:22115: checking whether ldexpl() can be used with libm configure:22135: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c -lm >&5 "conftest.c", line 226: warning: statement not reached configure:22135: $? = 0 configure:22145: result: yes configure:22157: checking whether ldexpl works configure:22194: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c -lm >&5 configure:22194: $? = 0 configure:22194: ./conftest configure:22194: $? = 0 configure:22205: result: yes configure:22266: checking for stdlib.h configure:22266: result: yes configure:22276: checking for GNU libc compatible malloc configure:22300: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 233: warning: statement not reached configure:22300: $? = 0 configure:22300: ./conftest configure:22300: $? = 0 configure:22310: result: yes configure:22443: checking whether NAN macro works configure:22466: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 239: warning: statement not reached configure:22466: $? = 0 configure:22473: result: yes configure:22478: checking whether HUGE_VAL works configure:22496: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 234: warning: statement not reached configure:22496: $? = 0 configure:22503: result: yes configure:22512: checking whether acosl is declared without a macro configure:22530: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:22530: $? = 0 configure:22538: result: yes configure:22512: checking whether asinl is declared without a macro configure:22530: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:22530: $? = 0 configure:22538: result: yes configure:22512: checking whether atanl is declared without a macro configure:22530: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:22530: $? = 0 configure:22538: result: yes configure:22512: checking whether ceilf is declared without a macro configure:22530: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:22530: $? = 0 configure:22538: result: yes configure:22512: checking whether ceill is declared without a macro configure:22530: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:22530: $? = 0 configure:22538: result: yes configure:22512: checking whether cosl is declared without a macro configure:22530: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:22530: $? = 0 configure:22538: result: yes configure:22512: checking whether expl is declared without a macro configure:22530: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:22530: $? = 0 configure:22538: result: yes configure:22512: checking whether floorf is declared without a macro configure:22530: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:22530: $? = 0 configure:22538: result: yes configure:22512: checking whether floorl is declared without a macro configure:22530: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:22530: $? = 0 configure:22538: result: yes configure:22512: checking whether frexpl is declared without a macro configure:22530: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:22530: $? = 0 configure:22538: result: yes configure:22512: checking whether ldexpl is declared without a macro configure:22530: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:22530: $? = 0 configure:22538: result: yes configure:22512: checking whether logb is declared without a macro configure:22530: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:22530: $? = 0 configure:22538: result: yes configure:22512: checking whether logl is declared without a macro configure:22530: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:22530: $? = 0 configure:22538: result: yes configure:22512: checking whether round is declared without a macro configure:22530: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:22530: $? = 0 configure:22538: result: yes configure:22512: checking whether roundf is declared without a macro configure:22530: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:22530: $? = 0 configure:22538: result: yes configure:22512: checking whether roundl is declared without a macro configure:22530: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:22530: $? = 0 configure:22538: result: yes configure:22512: checking whether sinl is declared without a macro configure:22530: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:22530: $? = 0 configure:22538: result: yes configure:22512: checking whether sqrtl is declared without a macro configure:22530: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:22530: $? = 0 configure:22538: result: yes configure:22512: checking whether tanl is declared without a macro configure:22530: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:22530: $? = 0 configure:22538: result: yes configure:22512: checking whether trunc is declared without a macro configure:22530: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:22530: $? = 0 configure:22538: result: yes configure:22512: checking whether truncf is declared without a macro configure:22530: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:22530: $? = 0 configure:22538: result: yes configure:22512: checking whether truncl is declared without a macro configure:22530: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:22530: $? = 0 configure:22538: result: yes configure:22571: checking whether mbrtowc handles incomplete characters configure:22628: result: guessing yes configure:22634: checking whether mbrtowc works as well as mbtowc configure:22695: result: guessing yes configure:22727: checking whether mbrtowc handles a NULL pwc argument configure:22798: result: guessing no configure:22804: checking whether mbrtowc handles a NULL string argument configure:22863: result: guessing yes configure:22871: checking whether mbrtowc has a correct return value configure:23001: result: guessing no configure:23007: checking whether mbrtowc returns 0 when parsing a NUL character configure:23063: result: guessing yes configure:23158: checking whether mbrtowc handles incomplete characters configure:23215: result: guessing yes configure:23221: checking whether mbrtowc works as well as mbtowc configure:23282: result: guessing yes configure:23363: checking whether mbswidth is declared in configure:23391: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 268: undefined symbol: mbswidth "conftest.c", line 272: warning: statement not reached cc: acomp failed for conftest.c configure:23391: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | /* end confdefs.h. */ | | /* Tru64 with Desktop Toolkit C has a bug: must be included before | . | BSD/OS 4.0.1 has a bug: , and must be included | before . */ | #include | #include | #include | #include | | int | main () | { | | char *p = (char *) mbswidth; | return !p; | | ; | return 0; | } configure:23398: result: no configure:23413: checking for mbstate_t configure:23444: result: yes configure:23504: checking for obstacks configure:23525: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 291: cannot find include file: "obstack.h" "conftest.c", line 295: incomplete struct/union/enum obstack: mem "conftest.c", line 298: warning: implicit function declaration: obstack_init "conftest.c", line 299: warning: implicit function declaration: obstack_free cc: acomp failed for conftest.c configure:23525: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 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 "obstack.h" | int | main () | { | struct obstack mem; | #define obstack_chunk_alloc malloc | #define obstack_chunk_free free | obstack_init (&mem); | obstack_free (&mem, 0); | ; | return 0; | } configure:23533: result: no configure:23579: checking whether open recognizes a trailing slash configure:23618: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:23618: $? = 0 configure:23618: ./conftest configure:23618: $? = 0 configure:23630: result: yes configure:24105: checking whether frexp works configure:24186: result: yes configure:24198: checking whether ldexp can be used without linking with libm configure:24217: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 282: warning: statement not reached configure:24217: $? = 0 configure:24226: result: yes configure:24238: checking whether frexpl() can be used without linking with libm configure:24265: result: no configure:24401: checking whether ldexpl() can be used without linking with libm configure:24428: result: no configure:24583: checking for rawmemchr configure:24583: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 313: warning: statement not reached Undefined first referenced symbol in file rawmemchr conftest.o ld: fatal: Symbol referencing errors. No output written to conftest configure:24583: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | /* end confdefs.h. */ | /* Define rawmemchr to an innocuous variant, in case declares rawmemchr. | For example, HP-UX 11i declares gettimeofday. */ | #define rawmemchr innocuous_rawmemchr | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char rawmemchr (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef rawmemchr | | /* 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 rawmemchr (); | /* 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_rawmemchr || defined __stub___rawmemchr | choke me | #endif | | int | main () | { | return rawmemchr (); | ; | return 0; | } configure:24583: result: no configure:24665: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:24665: $? = 0 configure:24765: checking for struct sigaction.sa_sigaction configure:24765: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:24765: $? = 0 configure:24765: result: yes configure:24885: checking for volatile sig_atomic_t configure:24885: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:24885: $? = 0 configure:24885: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 289: syntax error before or at: ) cc: acomp failed for conftest.c configure:24885: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | /* end confdefs.h. */ | | #include | | | int | main () | { | if (sizeof ((volatile sig_atomic_t))) | return 0; | ; | return 0; | } configure:24885: result: yes configure:24900: checking whether sigaction is declared without a macro configure:24918: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:24918: $? = 0 configure:24926: result: yes configure:24900: checking whether sigaddset is declared without a macro configure:24918: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:24918: $? = 0 configure:24926: result: yes configure:24900: checking whether sigdelset is declared without a macro configure:24918: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:24918: $? = 0 configure:24926: result: yes configure:24900: checking whether sigemptyset is declared without a macro configure:24918: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:24918: $? = 0 configure:24926: result: yes configure:24900: checking whether sigfillset is declared without a macro configure:24918: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:24918: $? = 0 configure:24926: result: yes configure:24900: checking whether sigismember is declared without a macro configure:24918: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:24918: $? = 0 configure:24926: result: yes configure:24900: checking whether sigpending is declared without a macro configure:24918: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:24918: $? = 0 configure:24926: result: yes configure:24900: checking whether sigprocmask is declared without a macro configure:24918: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:24918: $? = 0 configure:24926: result: yes configure:24942: checking for signbit macro configure:25041: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:25041: $? = 0 configure:25041: ./conftest configure:25041: $? = 0 configure:25052: result: yes configure:25054: checking for signbit compiler built-ins configure:25150: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 294: #error: "signbit should be three compiler built-ins" cc: acomp failed for conftest.c configure:25150: $? = 2 configure: program exited with status 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | /* end confdefs.h. */ | | #if __GNUC__ >= 4 | # define signbit(x) (sizeof (x) == sizeof (long double) ? __builtin_signbitl (x) : sizeof (x) == sizeof (double) ? __builtin_signbit (x) : __builtin_signbitf (x)) | #else | # error "signbit should be three compiler built-ins" | #endif | #include | | /* Global variables. | Needed because GCC 4 constant-folds __builtin_signbitl (literal) | but cannot constant-fold __builtin_signbitl (variable). */ | float vf; | double vd; | long double vl; | int main () | { | /* HP cc on HP-UX 10.20 has a bug with the constant expression -0.0. | So we use -p0f and -p0d instead. */ | float p0f = 0.0f; | float m0f = -p0f; | double p0d = 0.0; | double m0d = -p0d; | /* On HP-UX 10.20, negating 0.0L does not yield -0.0L. | So we use another constant expression instead. | But that expression does not work on other platforms, such as when | cross-compiling to PowerPC on MacOS X 10.5. */ | long double p0l = 0.0L; | #if defined __hpux || defined __sgi | long double m0l = -LDBL_MIN * LDBL_MIN; | #else | long double m0l = -p0l; | #endif | int result = 0; | if (signbit (vf)) /* link check */ | vf++; | { | float plus_inf = 1.0f / p0f; | float minus_inf = -1.0f / p0f; | if (!(!signbit (255.0f) | && signbit (-255.0f) | && !signbit (p0f) | && (memcmp (&m0f, &p0f, sizeof (float)) == 0 || signbit (m0f)) | && !signbit (plus_inf) | && signbit (minus_inf))) | result |= 1; | } | if (signbit (vd)) /* link check */ | vd++; | { | double plus_inf = 1.0 / p0d; | double minus_inf = -1.0 / p0d; | if (!(!signbit (255.0) | && signbit (-255.0) | && !signbit (p0d) | && (memcmp (&m0d, &p0d, sizeof (double)) == 0 || signbit (m0d)) | && !signbit (plus_inf) | && signbit (minus_inf))) | result |= 2; | } | if (signbit (vl)) /* link check */ | vl++; | { | long double plus_inf = 1.0L / p0l; | long double minus_inf = -1.0L / p0l; | if (signbit (255.0L)) | result |= 4; | if (!signbit (-255.0L)) | result |= 4; | if (signbit (p0l)) | result |= 8; | if (!(memcmp (&m0l, &p0l, sizeof (long double)) == 0 || signbit (m0l))) | result |= 16; | if (signbit (plus_inf)) | result |= 32; | if (!signbit (minus_inf)) | result |= 64; | } | return result; | } | | configure:25161: result: no configure:25692: checking for sigprocmask configure:25692: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 327: warning: statement not reached configure:25692: $? = 0 configure:25692: result: yes configure:25749: checking for stdint.h configure:25749: result: yes configure:25759: checking for SIZE_MAX configure:25830: result: yes configure:25847: checking for snprintf configure:25847: result: yes configure:25859: checking whether snprintf respects a size of 1 configure:25879: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:25879: $? = 0 configure:25879: ./conftest configure:25879: $? = 0 configure:25890: result: yes configure:25965: checking for snprintf configure:25965: result: yes configure:25977: checking whether snprintf truncates the result as in C99 configure:26039: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:26039: $? = 0 configure:26039: ./conftest configure:26039: $? = 0 configure:26050: result: yes configure:26056: checking whether snprintf fully supports the 'n' directive configure:26116: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:26116: $? = 0 configure:26116: ./conftest configure:26116: $? = 0 configure:26127: result: yes configure:26132: checking whether snprintf respects a size of 1 configure:26163: result: yes configure:26168: checking whether vsnprintf respects a zero size as in C99 configure:26230: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:26230: $? = 0 configure:26230: ./conftest configure:26230: $? = 0 configure:26241: result: yes configure:26366: checking for nl_langinfo configure:26366: result: yes configure:26532: checking for ptrdiff_t configure:26532: result: yes configure:26568: checking for socklen_t configure:26568: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:26568: $? = 0 configure:26568: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 319: syntax error before or at: ) cc: acomp failed for conftest.c configure:26568: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | /* end confdefs.h. */ | | /* is not needed according to POSIX, but the | in i386-unknown-freebsd4.10 and | powerpc-apple-darwin5.5 required it. */ | #include | #if HAVE_SYS_SOCKET_H | # include | #elif HAVE_WS2TCPIP_H | # include | #endif | | | int | main () | { | if (sizeof ((socklen_t))) | return 0; | ; | return 0; | } configure:26568: result: yes configure:26698: checking for posix_spawnattr_t configure:26698: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:26698: $? = 0 configure:26698: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 311: syntax error before or at: ) cc: acomp failed for conftest.c configure:26698: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | /* end confdefs.h. */ | | #include | | | int | main () | { | if (sizeof ((posix_spawnattr_t))) | return 0; | ; | return 0; | } configure:26698: result: yes configure:26713: checking for posix_spawn_file_actions_t configure:26713: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:26713: $? = 0 configure:26713: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 312: syntax error before or at: ) cc: acomp failed for conftest.c configure:26713: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | /* end confdefs.h. */ | | #include | | | int | main () | { | if (sizeof ((posix_spawn_file_actions_t))) | return 0; | ; | return 0; | } configure:26713: result: yes configure:26745: checking whether posix_spawn is declared without a macro configure:26763: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:26763: $? = 0 configure:26771: result: yes configure:26745: checking whether posix_spawnp is declared without a macro configure:26763: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:26763: $? = 0 configure:26771: result: yes configure:26745: checking whether posix_spawnattr_init is declared without a macro configure:26763: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:26763: $? = 0 configure:26771: result: yes configure:26745: checking whether posix_spawnattr_destroy is declared without a macro configure:26763: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:26763: $? = 0 configure:26771: result: yes configure:26745: checking whether posix_spawnattr_getsigdefault is declared without a macro configure:26763: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:26763: $? = 0 configure:26771: result: yes configure:26745: checking whether posix_spawnattr_setsigdefault is declared without a macro configure:26763: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:26763: $? = 0 configure:26771: result: yes configure:26745: checking whether posix_spawnattr_getsigmask is declared without a macro configure:26763: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:26763: $? = 0 configure:26771: result: yes configure:26745: checking whether posix_spawnattr_setsigmask is declared without a macro configure:26763: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:26763: $? = 0 configure:26771: result: yes configure:26745: checking whether posix_spawnattr_getflags is declared without a macro configure:26763: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:26763: $? = 0 configure:26771: result: yes configure:26745: checking whether posix_spawnattr_setflags is declared without a macro configure:26763: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:26763: $? = 0 configure:26771: result: yes configure:26745: checking whether posix_spawnattr_getpgroup is declared without a macro configure:26763: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:26763: $? = 0 configure:26771: result: yes configure:26745: checking whether posix_spawnattr_setpgroup is declared without a macro configure:26763: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:26763: $? = 0 configure:26771: result: yes configure:26745: checking whether posix_spawnattr_getschedpolicy is declared without a macro configure:26763: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:26763: $? = 0 configure:26771: result: yes configure:26745: checking whether posix_spawnattr_setschedpolicy is declared without a macro configure:26763: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:26763: $? = 0 configure:26771: result: yes configure:26745: checking whether posix_spawnattr_getschedparam is declared without a macro configure:26763: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:26763: $? = 0 configure:26771: result: yes configure:26745: checking whether posix_spawnattr_setschedparam is declared without a macro configure:26763: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:26763: $? = 0 configure:26771: result: yes configure:26745: checking whether posix_spawn_file_actions_init is declared without a macro configure:26763: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:26763: $? = 0 configure:26771: result: yes configure:26745: checking whether posix_spawn_file_actions_destroy is declared without a macro configure:26763: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:26763: $? = 0 configure:26771: result: yes configure:26745: checking whether posix_spawn_file_actions_addopen is declared without a macro configure:26763: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:26763: $? = 0 configure:26771: result: yes configure:26745: checking whether posix_spawn_file_actions_addclose is declared without a macro configure:26763: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:26763: $? = 0 configure:26771: result: yes configure:26745: checking whether posix_spawn_file_actions_adddup2 is declared without a macro configure:26763: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:26763: $? = 0 configure:26771: result: yes configure:26907: checking for nl_langinfo configure:26907: result: yes configure:27073: checking for ptrdiff_t configure:27073: result: yes configure:27121: checking whether stat handles trailing slashes on directories configure:27144: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 342: warning: statement not reached configure:27144: $? = 0 configure:27144: ./conftest configure:27144: $? = 0 configure:27154: result: yes configure:27156: checking whether stat handles trailing slashes on files configure:27190: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 351: warning: statement not reached configure:27190: $? = 0 configure:27190: ./conftest configure:27190: $? = 0 configure:27201: result: yes configure:27277: checking whether NULL can be used in arbitrary expressions configure:27295: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:27295: $? = 0 configure:27302: result: yes configure:27481: checking whether stdint.h conforms to C99 configure:27746: result: no configure:27755: checking for sys/inttypes.h configure:27755: result: yes configure:27755: checking for sys/bitypes.h configure:27755: result: no configure:27785: checking for bit size of ptrdiff_t configure:27811: result: 64 configure:27785: checking for bit size of size_t configure:27811: result: 64 configure:27830: checking for bit size of sig_atomic_t configure:27856: result: 32 configure:27830: checking for bit size of wchar_t configure:27856: result: 32 configure:27830: checking for bit size of wint_t configure:27856: result: 32 configure:27874: checking whether sig_atomic_t is signed configure:27911: result: yes configure:27874: checking whether wchar_t is signed configure:27911: result: yes configure:27874: checking whether wint_t is signed configure:27911: result: yes configure:27933: checking for ptrdiff_t integer literal suffix configure:27988: result: l configure:27933: checking for size_t integer literal suffix configure:27988: result: ul configure:28005: checking for sig_atomic_t integer literal suffix configure:28060: result: configure:28005: checking for wchar_t integer literal suffix configure:28060: result: configure:28005: checking for wint_t integer literal suffix configure:28060: result: configure:28158: checking whether dprintf is declared without a macro configure:28176: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 356: undefined symbol: dprintf cc: acomp failed for conftest.c configure:28176: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | /* end confdefs.h. */ | #include | | int | main () | { | #undef dprintf | (void) dprintf; | ; | return 0; | } configure:28184: result: no configure:28158: checking whether fpurge is declared without a macro configure:28176: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 356: undefined symbol: fpurge cc: acomp failed for conftest.c configure:28176: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | /* end confdefs.h. */ | #include | | int | main () | { | #undef fpurge | (void) fpurge; | ; | return 0; | } configure:28184: result: no configure:28158: checking whether fseeko is declared without a macro configure:28176: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:28176: $? = 0 configure:28184: result: yes configure:28158: checking whether ftello is declared without a macro configure:28176: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:28176: $? = 0 configure:28184: result: yes configure:28158: checking whether getdelim is declared without a macro configure:28176: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 358: undefined symbol: getdelim cc: acomp failed for conftest.c configure:28176: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | /* end confdefs.h. */ | #include | | int | main () | { | #undef getdelim | (void) getdelim; | ; | return 0; | } configure:28184: result: no configure:28158: checking whether getline is declared without a macro configure:28176: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 358: undefined symbol: getline cc: acomp failed for conftest.c configure:28176: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | /* end confdefs.h. */ | #include | | int | main () | { | #undef getline | (void) getline; | ; | return 0; | } configure:28184: result: no configure:28158: checking whether popen is declared without a macro configure:28176: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:28176: $? = 0 configure:28184: result: yes configure:28158: checking whether renameat is declared without a macro configure:28176: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 359: undefined symbol: renameat cc: acomp failed for conftest.c configure:28176: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | /* end confdefs.h. */ | #include | | int | main () | { | #undef renameat | (void) renameat; | ; | return 0; | } configure:28184: result: no configure:28158: checking whether snprintf is declared without a macro configure:28176: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:28176: $? = 0 configure:28184: result: yes configure:28158: checking whether tmpfile is declared without a macro configure:28176: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:28176: $? = 0 configure:28184: result: yes configure:28158: checking whether vdprintf is declared without a macro configure:28176: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 361: undefined symbol: vdprintf cc: acomp failed for conftest.c configure:28176: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | /* end confdefs.h. */ | #include | | int | main () | { | #undef vdprintf | (void) vdprintf; | ; | return 0; | } configure:28184: result: no configure:28158: checking whether vsnprintf is declared without a macro configure:28176: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:28176: $? = 0 configure:28184: result: yes configure:28257: checking whether _Exit is declared without a macro configure:28281: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:28281: $? = 0 configure:28289: result: yes configure:28257: checking whether atoll is declared without a macro configure:28281: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:28281: $? = 0 configure:28289: result: yes configure:28257: checking whether canonicalize_file_name is declared without a macro configure:28281: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 370: undefined symbol: canonicalize_file_name cc: acomp failed for conftest.c configure:28281: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | /* end confdefs.h. */ | #include | #if HAVE_SYS_LOADAVG_H | # include | #endif | #if HAVE_RANDOM_H | # include | #endif | | int | main () | { | #undef canonicalize_file_name | (void) canonicalize_file_name; | ; | return 0; | } configure:28289: result: no configure:28257: checking whether getloadavg is declared without a macro configure:28281: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 370: undefined symbol: getloadavg cc: acomp failed for conftest.c configure:28281: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | /* end confdefs.h. */ | #include | #if HAVE_SYS_LOADAVG_H | # include | #endif | #if HAVE_RANDOM_H | # include | #endif | | int | main () | { | #undef getloadavg | (void) getloadavg; | ; | return 0; | } configure:28289: result: no configure:28257: checking whether getsubopt is declared without a macro configure:28281: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:28281: $? = 0 configure:28289: result: yes configure:28257: checking whether grantpt is declared without a macro configure:28281: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:28281: $? = 0 configure:28289: result: yes configure:28257: checking whether mkdtemp is declared without a macro configure:28281: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 372: undefined symbol: mkdtemp cc: acomp failed for conftest.c configure:28281: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | /* end confdefs.h. */ | #include | #if HAVE_SYS_LOADAVG_H | # include | #endif | #if HAVE_RANDOM_H | # include | #endif | | int | main () | { | #undef mkdtemp | (void) mkdtemp; | ; | return 0; | } configure:28289: result: no configure:28257: checking whether mkostemp is declared without a macro configure:28281: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 372: undefined symbol: mkostemp cc: acomp failed for conftest.c configure:28281: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | /* end confdefs.h. */ | #include | #if HAVE_SYS_LOADAVG_H | # include | #endif | #if HAVE_RANDOM_H | # include | #endif | | int | main () | { | #undef mkostemp | (void) mkostemp; | ; | return 0; | } configure:28289: result: no configure:28257: checking whether mkostemps is declared without a macro configure:28281: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 372: undefined symbol: mkostemps cc: acomp failed for conftest.c configure:28281: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | /* end confdefs.h. */ | #include | #if HAVE_SYS_LOADAVG_H | # include | #endif | #if HAVE_RANDOM_H | # include | #endif | | int | main () | { | #undef mkostemps | (void) mkostemps; | ; | return 0; | } configure:28289: result: no configure:28257: checking whether mkstemp is declared without a macro configure:28281: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:28281: $? = 0 configure:28289: result: yes configure:28257: checking whether mkstemps is declared without a macro configure:28281: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 373: undefined symbol: mkstemps cc: acomp failed for conftest.c configure:28281: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | /* end confdefs.h. */ | #include | #if HAVE_SYS_LOADAVG_H | # include | #endif | #if HAVE_RANDOM_H | # include | #endif | | int | main () | { | #undef mkstemps | (void) mkstemps; | ; | return 0; | } configure:28289: result: no configure:28257: checking whether ptsname is declared without a macro configure:28281: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:28281: $? = 0 configure:28289: result: yes configure:28257: checking whether random_r is declared without a macro configure:28281: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 374: undefined symbol: random_r cc: acomp failed for conftest.c configure:28281: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | /* end confdefs.h. */ | #include | #if HAVE_SYS_LOADAVG_H | # include | #endif | #if HAVE_RANDOM_H | # include | #endif | | int | main () | { | #undef random_r | (void) random_r; | ; | return 0; | } configure:28289: result: no configure:28257: checking whether initstat_r is declared without a macro configure:28281: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 374: undefined symbol: initstat_r cc: acomp failed for conftest.c configure:28281: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | /* end confdefs.h. */ | #include | #if HAVE_SYS_LOADAVG_H | # include | #endif | #if HAVE_RANDOM_H | # include | #endif | | int | main () | { | #undef initstat_r | (void) initstat_r; | ; | return 0; | } configure:28289: result: no configure:28257: checking whether srandom_r is declared without a macro configure:28281: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 374: undefined symbol: srandom_r cc: acomp failed for conftest.c configure:28281: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | /* end confdefs.h. */ | #include | #if HAVE_SYS_LOADAVG_H | # include | #endif | #if HAVE_RANDOM_H | # include | #endif | | int | main () | { | #undef srandom_r | (void) srandom_r; | ; | return 0; | } configure:28289: result: no configure:28257: checking whether setstate_r is declared without a macro configure:28281: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 374: undefined symbol: setstate_r cc: acomp failed for conftest.c configure:28281: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | /* end confdefs.h. */ | #include | #if HAVE_SYS_LOADAVG_H | # include | #endif | #if HAVE_RANDOM_H | # include | #endif | | int | main () | { | #undef setstate_r | (void) setstate_r; | ; | return 0; | } configure:28289: result: no configure:28257: checking whether realpath is declared without a macro configure:28281: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:28281: $? = 0 configure:28289: result: yes configure:28257: checking whether rpmatch is declared without a macro configure:28281: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 375: undefined symbol: rpmatch cc: acomp failed for conftest.c configure:28281: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | /* end confdefs.h. */ | #include | #if HAVE_SYS_LOADAVG_H | # include | #endif | #if HAVE_RANDOM_H | # include | #endif | | int | main () | { | #undef rpmatch | (void) rpmatch; | ; | return 0; | } configure:28289: result: no configure:28257: checking whether setenv is declared without a macro configure:28281: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:28281: $? = 0 configure:28289: result: yes configure:28257: checking whether strtod is declared without a macro configure:28281: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:28281: $? = 0 configure:28289: result: yes configure:28257: checking whether strtoll is declared without a macro configure:28281: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:28281: $? = 0 configure:28289: result: yes configure:28257: checking whether strtoull is declared without a macro configure:28281: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:28281: $? = 0 configure:28289: result: yes configure:28257: checking whether unlockpt is declared without a macro configure:28281: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:28281: $? = 0 configure:28289: result: yes configure:28257: checking whether unsetenv is declared without a macro configure:28281: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:28281: $? = 0 configure:28289: result: yes configure:28319: checking for stpcpy configure:28319: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 405: warning: statement not reached Undefined first referenced symbol in file stpcpy conftest.o ld: fatal: Symbol referencing errors. No output written to conftest configure:28319: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | /* end confdefs.h. */ | /* Define stpcpy to an innocuous variant, in case declares stpcpy. | For example, HP-UX 11i declares gettimeofday. */ | #define stpcpy innocuous_stpcpy | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char stpcpy (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef stpcpy | | /* 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 stpcpy (); | /* 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_stpcpy || defined __stub___stpcpy | choke me | #endif | | int | main () | { | return stpcpy (); | ; | return 0; | } configure:28319: result: no configure:28366: checking for strchrnul configure:28366: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 406: warning: statement not reached Undefined first referenced symbol in file strchrnul conftest.o ld: fatal: Symbol referencing errors. No output written to conftest configure:28366: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | /* end confdefs.h. */ | /* Define strchrnul to an innocuous variant, in case declares strchrnul. | For example, HP-UX 11i declares gettimeofday. */ | #define strchrnul innocuous_strchrnul | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char strchrnul (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef strchrnul | | /* 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 strchrnul (); | /* 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_strchrnul || defined __stub___strchrnul | choke me | #endif | | int | main () | { | return strchrnul (); | ; | return 0; | } configure:28366: result: no configure:28689: checking for strtol configure:28689: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 411: warning: statement not reached configure:28689: $? = 0 configure:28689: result: yes configure:28716: checking for strtoul configure:28716: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 412: warning: statement not reached configure:28716: $? = 0 configure:28716: result: yes configure:28746: checking for strverscmp configure:28746: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 413: warning: statement not reached Undefined first referenced symbol in file strverscmp conftest.o ld: fatal: Symbol referencing errors. No output written to conftest configure:28746: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | /* end confdefs.h. */ | /* Define strverscmp to an innocuous variant, in case declares strverscmp. | For example, HP-UX 11i declares gettimeofday. */ | #define strverscmp innocuous_strverscmp | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char strverscmp (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef strverscmp | | /* 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 strverscmp (); | /* 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_strverscmp || defined __stub___strverscmp | choke me | #endif | | int | main () | { | return strverscmp (); | ; | return 0; | } configure:28746: result: no configure:28785: checking whether declares ioctl configure:28802: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 383: undefined symbol: ioctl cc: acomp failed for conftest.c configure:28802: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | /* end confdefs.h. */ | #include | | int | main () | { | (void) ioctl; | ; | return 0; | } configure:28810: result: no configure:28880: checking whether ioctl is declared without a macro configure:28902: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:28902: $? = 0 configure:28910: result: yes configure:28938: checking whether is self-contained configure:28963: result: yes configure:28968: checking for shutdown configure:28968: result: no configure:29087: checking for struct sockaddr_storage configure:29087: result: yes configure:29108: checking for sa_family_t configure:29108: result: yes configure:29137: checking for struct sockaddr_storage.ss_family configure:29137: result: yes configure:29193: checking whether socket is declared without a macro configure:29222: result: yes configure:29193: checking whether connect is declared without a macro configure:29222: result: yes configure:29193: checking whether accept is declared without a macro configure:29222: result: yes configure:29193: checking whether bind is declared without a macro configure:29222: result: yes configure:29193: checking whether getpeername is declared without a macro configure:29222: result: yes configure:29193: checking whether getsockname is declared without a macro configure:29222: result: yes configure:29193: checking whether getsockopt is declared without a macro configure:29222: result: yes configure:29193: checking whether listen is declared without a macro configure:29222: result: yes configure:29193: checking whether recv is declared without a macro configure:29222: result: yes configure:29193: checking whether send is declared without a macro configure:29222: result: yes configure:29193: checking whether recvfrom is declared without a macro configure:29222: result: yes configure:29193: checking whether sendto is declared without a macro configure:29222: result: yes configure:29193: checking whether setsockopt is declared without a macro configure:29222: result: yes configure:29193: checking whether shutdown is declared without a macro configure:29222: result: yes configure:29193: checking whether accept4 is declared without a macro configure:29222: result: no configure:29305: checking for nlink_t configure:29305: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29305: $? = 0 configure:29305: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 402: syntax error before or at: ) cc: acomp failed for conftest.c configure:29305: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | /* end confdefs.h. */ | #include | #include | | int | main () | { | if (sizeof ((nlink_t))) | return 0; | ; | return 0; | } configure:29305: result: yes configure:29320: checking whether fchmodat is declared without a macro configure:29338: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 402: undefined symbol: fchmodat cc: acomp failed for conftest.c configure:29338: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | /* end confdefs.h. */ | #include | | int | main () | { | #undef fchmodat | (void) fchmodat; | ; | return 0; | } configure:29346: result: no configure:29320: checking whether fstatat is declared without a macro configure:29338: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29338: $? = 0 configure:29346: result: yes configure:29320: checking whether futimens is declared without a macro configure:29338: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 403: undefined symbol: futimens cc: acomp failed for conftest.c configure:29338: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | /* end confdefs.h. */ | #include | | int | main () | { | #undef futimens | (void) futimens; | ; | return 0; | } configure:29346: result: no configure:29320: checking whether lchmod is declared without a macro configure:29338: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 403: undefined symbol: lchmod cc: acomp failed for conftest.c configure:29338: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | /* end confdefs.h. */ | #include | | int | main () | { | #undef lchmod | (void) lchmod; | ; | return 0; | } configure:29346: result: no configure:29320: checking whether lstat is declared without a macro configure:29338: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29338: $? = 0 configure:29346: result: yes configure:29320: checking whether mkdirat is declared without a macro configure:29338: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 404: undefined symbol: mkdirat cc: acomp failed for conftest.c configure:29338: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_LSTAT 1 | /* end confdefs.h. */ | #include | | int | main () | { | #undef mkdirat | (void) mkdirat; | ; | return 0; | } configure:29346: result: no configure:29320: checking whether mkfifo is declared without a macro configure:29338: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29338: $? = 0 configure:29346: result: yes configure:29320: checking whether mkfifoat is declared without a macro configure:29338: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 405: undefined symbol: mkfifoat cc: acomp failed for conftest.c configure:29338: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_LSTAT 1 | #define HAVE_RAW_DECL_MKFIFO 1 | /* end confdefs.h. */ | #include | | int | main () | { | #undef mkfifoat | (void) mkfifoat; | ; | return 0; | } configure:29346: result: no configure:29320: checking whether mknod is declared without a macro configure:29338: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29338: $? = 0 configure:29346: result: yes configure:29320: checking whether mknodat is declared without a macro configure:29338: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 406: undefined symbol: mknodat cc: acomp failed for conftest.c configure:29338: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_LSTAT 1 | #define HAVE_RAW_DECL_MKFIFO 1 | #define HAVE_RAW_DECL_MKNOD 1 | /* end confdefs.h. */ | #include | | int | main () | { | #undef mknodat | (void) mknodat; | ; | return 0; | } configure:29346: result: no configure:29320: checking whether stat is declared without a macro configure:29338: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29338: $? = 0 configure:29346: result: yes configure:29320: checking whether utimensat is declared without a macro configure:29338: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 407: undefined symbol: utimensat cc: acomp failed for conftest.c configure:29338: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_LSTAT 1 | #define HAVE_RAW_DECL_MKFIFO 1 | #define HAVE_RAW_DECL_MKNOD 1 | #define HAVE_RAW_DECL_STAT 1 | /* end confdefs.h. */ | #include | | int | main () | { | #undef utimensat | (void) utimensat; | ; | return 0; | } configure:29346: result: no configure:29428: checking whether waitpid is declared without a macro configure:29445: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29445: $? = 0 configure:29453: result: yes configure:29546: checking whether chown is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29573: $? = 0 configure:29581: result: yes configure:29546: checking whether dup2 is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29573: $? = 0 configure:29581: result: yes configure:29546: checking whether dup3 is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 419: undefined symbol: dup3 cc: acomp failed for conftest.c configure:29573: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_LSTAT 1 | #define HAVE_RAW_DECL_MKFIFO 1 | #define HAVE_RAW_DECL_MKNOD 1 | #define HAVE_RAW_DECL_STAT 1 | #define HAVE_RAW_DECL_WAITPID 1 | #define HAVE_RAW_DECL_CHOWN 1 | #define HAVE_RAW_DECL_DUP2 1 | /* end confdefs.h. */ | #include | /* Some systems declare various items in the wrong headers. */ | #if !(defined __GLIBC__ && !defined __UCLIBC__) | # include | # include | # include | # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ | # include | # endif | #endif | | int | main () | { | #undef dup3 | (void) dup3; | ; | return 0; | } configure:29581: result: no configure:29546: checking whether environ is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 419: undefined symbol: environ cc: acomp failed for conftest.c configure:29573: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_LSTAT 1 | #define HAVE_RAW_DECL_MKFIFO 1 | #define HAVE_RAW_DECL_MKNOD 1 | #define HAVE_RAW_DECL_STAT 1 | #define HAVE_RAW_DECL_WAITPID 1 | #define HAVE_RAW_DECL_CHOWN 1 | #define HAVE_RAW_DECL_DUP2 1 | /* end confdefs.h. */ | #include | /* Some systems declare various items in the wrong headers. */ | #if !(defined __GLIBC__ && !defined __UCLIBC__) | # include | # include | # include | # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ | # include | # endif | #endif | | int | main () | { | #undef environ | (void) environ; | ; | return 0; | } configure:29581: result: no configure:29546: checking whether euidaccess is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 419: undefined symbol: euidaccess cc: acomp failed for conftest.c configure:29573: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_LSTAT 1 | #define HAVE_RAW_DECL_MKFIFO 1 | #define HAVE_RAW_DECL_MKNOD 1 | #define HAVE_RAW_DECL_STAT 1 | #define HAVE_RAW_DECL_WAITPID 1 | #define HAVE_RAW_DECL_CHOWN 1 | #define HAVE_RAW_DECL_DUP2 1 | /* end confdefs.h. */ | #include | /* Some systems declare various items in the wrong headers. */ | #if !(defined __GLIBC__ && !defined __UCLIBC__) | # include | # include | # include | # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ | # include | # endif | #endif | | int | main () | { | #undef euidaccess | (void) euidaccess; | ; | return 0; | } configure:29581: result: no configure:29546: checking whether faccessat is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 419: undefined symbol: faccessat cc: acomp failed for conftest.c configure:29573: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_LSTAT 1 | #define HAVE_RAW_DECL_MKFIFO 1 | #define HAVE_RAW_DECL_MKNOD 1 | #define HAVE_RAW_DECL_STAT 1 | #define HAVE_RAW_DECL_WAITPID 1 | #define HAVE_RAW_DECL_CHOWN 1 | #define HAVE_RAW_DECL_DUP2 1 | /* end confdefs.h. */ | #include | /* Some systems declare various items in the wrong headers. */ | #if !(defined __GLIBC__ && !defined __UCLIBC__) | # include | # include | # include | # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ | # include | # endif | #endif | | int | main () | { | #undef faccessat | (void) faccessat; | ; | return 0; | } configure:29581: result: no configure:29546: checking whether fchdir is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29573: $? = 0 configure:29581: result: yes configure:29546: checking whether fchownat is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29573: $? = 0 configure:29581: result: yes configure:29546: checking whether fsync is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29573: $? = 0 configure:29581: result: yes configure:29546: checking whether ftruncate is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29573: $? = 0 configure:29581: result: yes configure:29546: checking whether getcwd is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29573: $? = 0 configure:29581: result: yes configure:29546: checking whether getdomainname is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 424: undefined symbol: getdomainname cc: acomp failed for conftest.c configure:29573: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_LSTAT 1 | #define HAVE_RAW_DECL_MKFIFO 1 | #define HAVE_RAW_DECL_MKNOD 1 | #define HAVE_RAW_DECL_STAT 1 | #define HAVE_RAW_DECL_WAITPID 1 | #define HAVE_RAW_DECL_CHOWN 1 | #define HAVE_RAW_DECL_DUP2 1 | #define HAVE_RAW_DECL_FCHDIR 1 | #define HAVE_RAW_DECL_FCHOWNAT 1 | #define HAVE_RAW_DECL_FSYNC 1 | #define HAVE_RAW_DECL_FTRUNCATE 1 | #define HAVE_RAW_DECL_GETCWD 1 | /* end confdefs.h. */ | #include | /* Some systems declare various items in the wrong headers. */ | #if !(defined __GLIBC__ && !defined __UCLIBC__) | # include | # include | # include | # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ | # include | # endif | #endif | | int | main () | { | #undef getdomainname | (void) getdomainname; | ; | return 0; | } configure:29581: result: no configure:29546: checking whether getdtablesize is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29573: $? = 0 configure:29581: result: yes configure:29546: checking whether getgroups is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29573: $? = 0 configure:29581: result: yes configure:29546: checking whether gethostname is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29573: $? = 0 configure:29581: result: yes configure:29546: checking whether getlogin is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29573: $? = 0 configure:29581: result: yes configure:29546: checking whether getlogin_r is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29573: $? = 0 configure:29581: result: yes configure:29546: checking whether getpagesize is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29573: $? = 0 configure:29581: result: yes configure:29546: checking whether getusershell is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29573: $? = 0 configure:29581: result: yes configure:29546: checking whether setusershell is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29573: $? = 0 configure:29581: result: yes configure:29546: checking whether endusershell is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29573: $? = 0 configure:29581: result: yes configure:29546: checking whether lchown is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29573: $? = 0 configure:29581: result: yes configure:29546: checking whether link is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29573: $? = 0 configure:29581: result: yes configure:29546: checking whether linkat is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 435: undefined symbol: linkat cc: acomp failed for conftest.c configure:29573: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_LSTAT 1 | #define HAVE_RAW_DECL_MKFIFO 1 | #define HAVE_RAW_DECL_MKNOD 1 | #define HAVE_RAW_DECL_STAT 1 | #define HAVE_RAW_DECL_WAITPID 1 | #define HAVE_RAW_DECL_CHOWN 1 | #define HAVE_RAW_DECL_DUP2 1 | #define HAVE_RAW_DECL_FCHDIR 1 | #define HAVE_RAW_DECL_FCHOWNAT 1 | #define HAVE_RAW_DECL_FSYNC 1 | #define HAVE_RAW_DECL_FTRUNCATE 1 | #define HAVE_RAW_DECL_GETCWD 1 | #define HAVE_RAW_DECL_GETDTABLESIZE 1 | #define HAVE_RAW_DECL_GETGROUPS 1 | #define HAVE_RAW_DECL_GETHOSTNAME 1 | #define HAVE_RAW_DECL_GETLOGIN 1 | #define HAVE_RAW_DECL_GETLOGIN_R 1 | #define HAVE_RAW_DECL_GETPAGESIZE 1 | #define HAVE_RAW_DECL_GETUSERSHELL 1 | #define HAVE_RAW_DECL_SETUSERSHELL 1 | #define HAVE_RAW_DECL_ENDUSERSHELL 1 | #define HAVE_RAW_DECL_LCHOWN 1 | #define HAVE_RAW_DECL_LINK 1 | /* end confdefs.h. */ | #include | /* Some systems declare various items in the wrong headers. */ | #if !(defined __GLIBC__ && !defined __UCLIBC__) | # include | # include | # include | # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ | # include | # endif | #endif | | int | main () | { | #undef linkat | (void) linkat; | ; | return 0; | } configure:29581: result: no configure:29546: checking whether lseek is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29573: $? = 0 configure:29581: result: yes configure:29546: checking whether pipe is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29573: $? = 0 configure:29581: result: yes configure:29546: checking whether pipe2 is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 437: undefined symbol: pipe2 cc: acomp failed for conftest.c configure:29573: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_LSTAT 1 | #define HAVE_RAW_DECL_MKFIFO 1 | #define HAVE_RAW_DECL_MKNOD 1 | #define HAVE_RAW_DECL_STAT 1 | #define HAVE_RAW_DECL_WAITPID 1 | #define HAVE_RAW_DECL_CHOWN 1 | #define HAVE_RAW_DECL_DUP2 1 | #define HAVE_RAW_DECL_FCHDIR 1 | #define HAVE_RAW_DECL_FCHOWNAT 1 | #define HAVE_RAW_DECL_FSYNC 1 | #define HAVE_RAW_DECL_FTRUNCATE 1 | #define HAVE_RAW_DECL_GETCWD 1 | #define HAVE_RAW_DECL_GETDTABLESIZE 1 | #define HAVE_RAW_DECL_GETGROUPS 1 | #define HAVE_RAW_DECL_GETHOSTNAME 1 | #define HAVE_RAW_DECL_GETLOGIN 1 | #define HAVE_RAW_DECL_GETLOGIN_R 1 | #define HAVE_RAW_DECL_GETPAGESIZE 1 | #define HAVE_RAW_DECL_GETUSERSHELL 1 | #define HAVE_RAW_DECL_SETUSERSHELL 1 | #define HAVE_RAW_DECL_ENDUSERSHELL 1 | #define HAVE_RAW_DECL_LCHOWN 1 | #define HAVE_RAW_DECL_LINK 1 | #define HAVE_RAW_DECL_LSEEK 1 | #define HAVE_RAW_DECL_PIPE 1 | /* end confdefs.h. */ | #include | /* Some systems declare various items in the wrong headers. */ | #if !(defined __GLIBC__ && !defined __UCLIBC__) | # include | # include | # include | # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ | # include | # endif | #endif | | int | main () | { | #undef pipe2 | (void) pipe2; | ; | return 0; | } configure:29581: result: no configure:29546: checking whether pread is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29573: $? = 0 configure:29581: result: yes configure:29546: checking whether pwrite is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29573: $? = 0 configure:29581: result: yes configure:29546: checking whether readlink is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29573: $? = 0 configure:29581: result: yes configure:29546: checking whether readlinkat is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 440: undefined symbol: readlinkat cc: acomp failed for conftest.c configure:29573: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_LSTAT 1 | #define HAVE_RAW_DECL_MKFIFO 1 | #define HAVE_RAW_DECL_MKNOD 1 | #define HAVE_RAW_DECL_STAT 1 | #define HAVE_RAW_DECL_WAITPID 1 | #define HAVE_RAW_DECL_CHOWN 1 | #define HAVE_RAW_DECL_DUP2 1 | #define HAVE_RAW_DECL_FCHDIR 1 | #define HAVE_RAW_DECL_FCHOWNAT 1 | #define HAVE_RAW_DECL_FSYNC 1 | #define HAVE_RAW_DECL_FTRUNCATE 1 | #define HAVE_RAW_DECL_GETCWD 1 | #define HAVE_RAW_DECL_GETDTABLESIZE 1 | #define HAVE_RAW_DECL_GETGROUPS 1 | #define HAVE_RAW_DECL_GETHOSTNAME 1 | #define HAVE_RAW_DECL_GETLOGIN 1 | #define HAVE_RAW_DECL_GETLOGIN_R 1 | #define HAVE_RAW_DECL_GETPAGESIZE 1 | #define HAVE_RAW_DECL_GETUSERSHELL 1 | #define HAVE_RAW_DECL_SETUSERSHELL 1 | #define HAVE_RAW_DECL_ENDUSERSHELL 1 | #define HAVE_RAW_DECL_LCHOWN 1 | #define HAVE_RAW_DECL_LINK 1 | #define HAVE_RAW_DECL_LSEEK 1 | #define HAVE_RAW_DECL_PIPE 1 | #define HAVE_RAW_DECL_PREAD 1 | #define HAVE_RAW_DECL_PWRITE 1 | #define HAVE_RAW_DECL_READLINK 1 | /* end confdefs.h. */ | #include | /* Some systems declare various items in the wrong headers. */ | #if !(defined __GLIBC__ && !defined __UCLIBC__) | # include | # include | # include | # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ | # include | # endif | #endif | | int | main () | { | #undef readlinkat | (void) readlinkat; | ; | return 0; | } configure:29581: result: no configure:29546: checking whether rmdir is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29573: $? = 0 configure:29581: result: yes configure:29546: checking whether sleep is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29573: $? = 0 configure:29581: result: yes configure:29546: checking whether symlink is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29573: $? = 0 configure:29581: result: yes configure:29546: checking whether symlinkat is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 443: undefined symbol: symlinkat cc: acomp failed for conftest.c configure:29573: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_LSTAT 1 | #define HAVE_RAW_DECL_MKFIFO 1 | #define HAVE_RAW_DECL_MKNOD 1 | #define HAVE_RAW_DECL_STAT 1 | #define HAVE_RAW_DECL_WAITPID 1 | #define HAVE_RAW_DECL_CHOWN 1 | #define HAVE_RAW_DECL_DUP2 1 | #define HAVE_RAW_DECL_FCHDIR 1 | #define HAVE_RAW_DECL_FCHOWNAT 1 | #define HAVE_RAW_DECL_FSYNC 1 | #define HAVE_RAW_DECL_FTRUNCATE 1 | #define HAVE_RAW_DECL_GETCWD 1 | #define HAVE_RAW_DECL_GETDTABLESIZE 1 | #define HAVE_RAW_DECL_GETGROUPS 1 | #define HAVE_RAW_DECL_GETHOSTNAME 1 | #define HAVE_RAW_DECL_GETLOGIN 1 | #define HAVE_RAW_DECL_GETLOGIN_R 1 | #define HAVE_RAW_DECL_GETPAGESIZE 1 | #define HAVE_RAW_DECL_GETUSERSHELL 1 | #define HAVE_RAW_DECL_SETUSERSHELL 1 | #define HAVE_RAW_DECL_ENDUSERSHELL 1 | #define HAVE_RAW_DECL_LCHOWN 1 | #define HAVE_RAW_DECL_LINK 1 | #define HAVE_RAW_DECL_LSEEK 1 | #define HAVE_RAW_DECL_PIPE 1 | #define HAVE_RAW_DECL_PREAD 1 | #define HAVE_RAW_DECL_PWRITE 1 | #define HAVE_RAW_DECL_READLINK 1 | #define HAVE_RAW_DECL_RMDIR 1 | #define HAVE_RAW_DECL_SLEEP 1 | #define HAVE_RAW_DECL_SYMLINK 1 | /* end confdefs.h. */ | #include | /* Some systems declare various items in the wrong headers. */ | #if !(defined __GLIBC__ && !defined __UCLIBC__) | # include | # include | # include | # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ | # include | # endif | #endif | | int | main () | { | #undef symlinkat | (void) symlinkat; | ; | return 0; | } configure:29581: result: no configure:29546: checking whether ttyname_r is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29573: $? = 0 configure:29581: result: yes configure:29546: checking whether unlink is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29573: $? = 0 configure:29581: result: yes configure:29546: checking whether unlinkat is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29573: $? = 0 configure:29581: result: yes configure:29546: checking whether usleep is declared without a macro configure:29573: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29573: $? = 0 configure:29581: result: yes configure:29745: checking for unsetenv configure:29745: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 469: warning: statement not reached configure:29745: $? = 0 configure:29745: result: yes configure:29770: checking for unsetenv() return type configure:29799: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:29799: $? = 0 configure:29806: result: int configure:29825: checking whether unsetenv obeys POSIX configure:29864: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:29864: $? = 0 configure:29864: ./conftest configure:29864: $? = 3 configure: program exited with status 3 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_LSTAT 1 | #define HAVE_RAW_DECL_MKFIFO 1 | #define HAVE_RAW_DECL_MKNOD 1 | #define HAVE_RAW_DECL_STAT 1 | #define HAVE_RAW_DECL_WAITPID 1 | #define HAVE_RAW_DECL_CHOWN 1 | #define HAVE_RAW_DECL_DUP2 1 | #define HAVE_RAW_DECL_FCHDIR 1 | #define HAVE_RAW_DECL_FCHOWNAT 1 | #define HAVE_RAW_DECL_FSYNC 1 | #define HAVE_RAW_DECL_FTRUNCATE 1 | #define HAVE_RAW_DECL_GETCWD 1 | #define HAVE_RAW_DECL_GETDTABLESIZE 1 | #define HAVE_RAW_DECL_GETGROUPS 1 | #define HAVE_RAW_DECL_GETHOSTNAME 1 | #define HAVE_RAW_DECL_GETLOGIN 1 | #define HAVE_RAW_DECL_GETLOGIN_R 1 | #define HAVE_RAW_DECL_GETPAGESIZE 1 | #define HAVE_RAW_DECL_GETUSERSHELL 1 | #define HAVE_RAW_DECL_SETUSERSHELL 1 | #define HAVE_RAW_DECL_ENDUSERSHELL 1 | #define HAVE_RAW_DECL_LCHOWN 1 | #define HAVE_RAW_DECL_LINK 1 | #define HAVE_RAW_DECL_LSEEK 1 | #define HAVE_RAW_DECL_PIPE 1 | #define HAVE_RAW_DECL_PREAD 1 | #define HAVE_RAW_DECL_PWRITE 1 | #define HAVE_RAW_DECL_READLINK 1 | #define HAVE_RAW_DECL_RMDIR 1 | #define HAVE_RAW_DECL_SLEEP 1 | #define HAVE_RAW_DECL_SYMLINK 1 | #define HAVE_RAW_DECL_TTYNAME_R 1 | #define HAVE_RAW_DECL_UNLINK 1 | #define HAVE_RAW_DECL_UNLINKAT 1 | #define HAVE_RAW_DECL_USLEEP 1 | #define USE_UNLOCKED_IO 1 | #define HAVE_UNSETENV 1 | /* end confdefs.h. */ | | #include | #include | extern char **environ; | | int | main () | { | | char entry1[] = "a=1"; | char entry2[] = "b=2"; | char *env[] = { entry1, entry2, NULL }; | if (putenv ((char *) "a=1")) return 1; | if (putenv (entry2)) return 2; | entry2[0] = 'a'; | unsetenv ("a"); | if (getenv ("a")) return 3; | if (!unsetenv ("") || errno != EINVAL) return 4; | entry2[0] = 'b'; | environ = env; | if (!getenv ("a")) return 5; | entry2[0] = 'a'; | unsetenv ("a"); | if (getenv ("a")) return 6; | | ; | return 0; | } configure:29874: result: no configure:29966: checking for ptrdiff_t configure:29966: result: yes configure:30104: checking for nl_langinfo configure:30104: result: yes configure:30270: checking for ptrdiff_t configure:30270: result: yes configure:30323: checking for vsnprintf configure:30323: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 480: warning: statement not reached configure:30323: $? = 0 configure:30323: result: yes configure:30335: checking whether snprintf respects a size of 1 configure:30366: result: yes configure:30434: checking for vsnprintf configure:30434: result: yes configure:30446: checking whether snprintf truncates the result as in C99 configure:30519: result: yes configure:30525: checking whether snprintf fully supports the 'n' directive configure:30596: result: yes configure:30601: checking whether snprintf respects a size of 1 configure:30632: result: yes configure:30637: checking whether vsnprintf respects a zero size as in C99 configure:30710: result: yes configure:30835: checking for nl_langinfo configure:30835: result: yes configure:31001: checking for ptrdiff_t configure:31001: result: yes configure:31154: checking for nl_langinfo configure:31154: result: yes configure:31320: checking for ptrdiff_t configure:31320: result: yes configure:31370: checking for waitid configure:31370: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 498: warning: statement not reached configure:31370: $? = 0 configure:31370: result: yes configure:31496: checking whether btowc is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:31524: $? = 0 configure:31532: result: yes configure:31496: checking whether wctob is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:31524: $? = 0 configure:31532: result: yes configure:31496: checking whether mbsinit is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:31524: $? = 0 configure:31532: result: yes configure:31496: checking whether mbrtowc is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:31524: $? = 0 configure:31532: result: yes configure:31496: checking whether mbrlen is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:31524: $? = 0 configure:31532: result: yes configure:31496: checking whether mbsrtowcs is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:31524: $? = 0 configure:31532: result: yes configure:31496: checking whether mbsnrtowcs is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 486: undefined symbol: mbsnrtowcs cc: acomp failed for conftest.c configure:31524: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_LSTAT 1 | #define HAVE_RAW_DECL_MKFIFO 1 | #define HAVE_RAW_DECL_MKNOD 1 | #define HAVE_RAW_DECL_STAT 1 | #define HAVE_RAW_DECL_WAITPID 1 | #define HAVE_RAW_DECL_CHOWN 1 | #define HAVE_RAW_DECL_DUP2 1 | #define HAVE_RAW_DECL_FCHDIR 1 | #define HAVE_RAW_DECL_FCHOWNAT 1 | #define HAVE_RAW_DECL_FSYNC 1 | #define HAVE_RAW_DECL_FTRUNCATE 1 | #define HAVE_RAW_DECL_GETCWD 1 | #define HAVE_RAW_DECL_GETDTABLESIZE 1 | #define HAVE_RAW_DECL_GETGROUPS 1 | #define HAVE_RAW_DECL_GETHOSTNAME 1 | #define HAVE_RAW_DECL_GETLOGIN 1 | #define HAVE_RAW_DECL_GETLOGIN_R 1 | #define HAVE_RAW_DECL_GETPAGESIZE 1 | #define HAVE_RAW_DECL_GETUSERSHELL 1 | #define HAVE_RAW_DECL_SETUSERSHELL 1 | #define HAVE_RAW_DECL_ENDUSERSHELL 1 | #define HAVE_RAW_DECL_LCHOWN 1 | #define HAVE_RAW_DECL_LINK 1 | #define HAVE_RAW_DECL_LSEEK 1 | #define HAVE_RAW_DECL_PIPE 1 | #define HAVE_RAW_DECL_PREAD 1 | #define HAVE_RAW_DECL_PWRITE 1 | #define HAVE_RAW_DECL_READLINK 1 | #define HAVE_RAW_DECL_RMDIR 1 | #define HAVE_RAW_DECL_SLEEP 1 | #define HAVE_RAW_DECL_SYMLINK 1 | #define HAVE_RAW_DECL_TTYNAME_R 1 | #define HAVE_RAW_DECL_UNLINK 1 | #define HAVE_RAW_DECL_UNLINKAT 1 | #define HAVE_RAW_DECL_USLEEP 1 | #define USE_UNLOCKED_IO 1 | #define HAVE_UNSETENV 1 | #define GNULIB_TEST_UNSETENV 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define GNULIB_TEST_VFPRINTF_POSIX 1 | #define HAVE_VSNPRINTF 1 | #define GNULIB_TEST_VSNPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_VSPRINTF_POSIX 1 | #define HAVE_WAITID 1 | #define GNULIB_TEST_WAITPID 1 | #define HAVE_RAW_DECL_BTOWC 1 | #define HAVE_RAW_DECL_WCTOB 1 | #define HAVE_RAW_DECL_MBSINIT 1 | #define HAVE_RAW_DECL_MBRTOWC 1 | #define HAVE_RAW_DECL_MBRLEN 1 | #define HAVE_RAW_DECL_MBSRTOWCS 1 | /* end confdefs.h. */ | | /* Tru64 with Desktop Toolkit C has a bug: must be included before | . | BSD/OS 4.0.1 has a bug: , and must be | included before . */ | #if !(defined __GLIBC__ && !defined __UCLIBC__) | # include | # include | # include | #endif | #include | | int | main () | { | #undef mbsnrtowcs | (void) mbsnrtowcs; | ; | return 0; | } configure:31532: result: no configure:31496: checking whether wcrtomb is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:31524: $? = 0 configure:31532: result: yes configure:31496: checking whether wcsrtombs is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:31524: $? = 0 configure:31532: result: yes configure:31496: checking whether wcsnrtombs is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 488: undefined symbol: wcsnrtombs cc: acomp failed for conftest.c configure:31524: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_LSTAT 1 | #define HAVE_RAW_DECL_MKFIFO 1 | #define HAVE_RAW_DECL_MKNOD 1 | #define HAVE_RAW_DECL_STAT 1 | #define HAVE_RAW_DECL_WAITPID 1 | #define HAVE_RAW_DECL_CHOWN 1 | #define HAVE_RAW_DECL_DUP2 1 | #define HAVE_RAW_DECL_FCHDIR 1 | #define HAVE_RAW_DECL_FCHOWNAT 1 | #define HAVE_RAW_DECL_FSYNC 1 | #define HAVE_RAW_DECL_FTRUNCATE 1 | #define HAVE_RAW_DECL_GETCWD 1 | #define HAVE_RAW_DECL_GETDTABLESIZE 1 | #define HAVE_RAW_DECL_GETGROUPS 1 | #define HAVE_RAW_DECL_GETHOSTNAME 1 | #define HAVE_RAW_DECL_GETLOGIN 1 | #define HAVE_RAW_DECL_GETLOGIN_R 1 | #define HAVE_RAW_DECL_GETPAGESIZE 1 | #define HAVE_RAW_DECL_GETUSERSHELL 1 | #define HAVE_RAW_DECL_SETUSERSHELL 1 | #define HAVE_RAW_DECL_ENDUSERSHELL 1 | #define HAVE_RAW_DECL_LCHOWN 1 | #define HAVE_RAW_DECL_LINK 1 | #define HAVE_RAW_DECL_LSEEK 1 | #define HAVE_RAW_DECL_PIPE 1 | #define HAVE_RAW_DECL_PREAD 1 | #define HAVE_RAW_DECL_PWRITE 1 | #define HAVE_RAW_DECL_READLINK 1 | #define HAVE_RAW_DECL_RMDIR 1 | #define HAVE_RAW_DECL_SLEEP 1 | #define HAVE_RAW_DECL_SYMLINK 1 | #define HAVE_RAW_DECL_TTYNAME_R 1 | #define HAVE_RAW_DECL_UNLINK 1 | #define HAVE_RAW_DECL_UNLINKAT 1 | #define HAVE_RAW_DECL_USLEEP 1 | #define USE_UNLOCKED_IO 1 | #define HAVE_UNSETENV 1 | #define GNULIB_TEST_UNSETENV 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define GNULIB_TEST_VFPRINTF_POSIX 1 | #define HAVE_VSNPRINTF 1 | #define GNULIB_TEST_VSNPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_VSPRINTF_POSIX 1 | #define HAVE_WAITID 1 | #define GNULIB_TEST_WAITPID 1 | #define HAVE_RAW_DECL_BTOWC 1 | #define HAVE_RAW_DECL_WCTOB 1 | #define HAVE_RAW_DECL_MBSINIT 1 | #define HAVE_RAW_DECL_MBRTOWC 1 | #define HAVE_RAW_DECL_MBRLEN 1 | #define HAVE_RAW_DECL_MBSRTOWCS 1 | #define HAVE_RAW_DECL_WCRTOMB 1 | #define HAVE_RAW_DECL_WCSRTOMBS 1 | /* end confdefs.h. */ | | /* Tru64 with Desktop Toolkit C has a bug: must be included before | . | BSD/OS 4.0.1 has a bug: , and must be | included before . */ | #if !(defined __GLIBC__ && !defined __UCLIBC__) | # include | # include | # include | #endif | #include | | int | main () | { | #undef wcsnrtombs | (void) wcsnrtombs; | ; | return 0; | } configure:31532: result: no configure:31496: checking whether wcwidth is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:31524: $? = 0 configure:31532: result: yes configure:31496: checking whether wmemchr is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:31524: $? = 0 configure:31532: result: yes configure:31496: checking whether wmemcmp is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:31524: $? = 0 configure:31532: result: yes configure:31496: checking whether wmemcpy is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:31524: $? = 0 configure:31532: result: yes configure:31496: checking whether wmemmove is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:31524: $? = 0 configure:31532: result: yes configure:31496: checking whether wmemset is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:31524: $? = 0 configure:31532: result: yes configure:31496: checking whether wcslen is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:31524: $? = 0 configure:31532: result: yes configure:31496: checking whether wcsnlen is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 495: undefined symbol: wcsnlen cc: acomp failed for conftest.c configure:31524: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_LSTAT 1 | #define HAVE_RAW_DECL_MKFIFO 1 | #define HAVE_RAW_DECL_MKNOD 1 | #define HAVE_RAW_DECL_STAT 1 | #define HAVE_RAW_DECL_WAITPID 1 | #define HAVE_RAW_DECL_CHOWN 1 | #define HAVE_RAW_DECL_DUP2 1 | #define HAVE_RAW_DECL_FCHDIR 1 | #define HAVE_RAW_DECL_FCHOWNAT 1 | #define HAVE_RAW_DECL_FSYNC 1 | #define HAVE_RAW_DECL_FTRUNCATE 1 | #define HAVE_RAW_DECL_GETCWD 1 | #define HAVE_RAW_DECL_GETDTABLESIZE 1 | #define HAVE_RAW_DECL_GETGROUPS 1 | #define HAVE_RAW_DECL_GETHOSTNAME 1 | #define HAVE_RAW_DECL_GETLOGIN 1 | #define HAVE_RAW_DECL_GETLOGIN_R 1 | #define HAVE_RAW_DECL_GETPAGESIZE 1 | #define HAVE_RAW_DECL_GETUSERSHELL 1 | #define HAVE_RAW_DECL_SETUSERSHELL 1 | #define HAVE_RAW_DECL_ENDUSERSHELL 1 | #define HAVE_RAW_DECL_LCHOWN 1 | #define HAVE_RAW_DECL_LINK 1 | #define HAVE_RAW_DECL_LSEEK 1 | #define HAVE_RAW_DECL_PIPE 1 | #define HAVE_RAW_DECL_PREAD 1 | #define HAVE_RAW_DECL_PWRITE 1 | #define HAVE_RAW_DECL_READLINK 1 | #define HAVE_RAW_DECL_RMDIR 1 | #define HAVE_RAW_DECL_SLEEP 1 | #define HAVE_RAW_DECL_SYMLINK 1 | #define HAVE_RAW_DECL_TTYNAME_R 1 | #define HAVE_RAW_DECL_UNLINK 1 | #define HAVE_RAW_DECL_UNLINKAT 1 | #define HAVE_RAW_DECL_USLEEP 1 | #define USE_UNLOCKED_IO 1 | #define HAVE_UNSETENV 1 | #define GNULIB_TEST_UNSETENV 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define GNULIB_TEST_VFPRINTF_POSIX 1 | #define HAVE_VSNPRINTF 1 | #define GNULIB_TEST_VSNPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_VSPRINTF_POSIX 1 | #define HAVE_WAITID 1 | #define GNULIB_TEST_WAITPID 1 | #define HAVE_RAW_DECL_BTOWC 1 | #define HAVE_RAW_DECL_WCTOB 1 | #define HAVE_RAW_DECL_MBSINIT 1 | #define HAVE_RAW_DECL_MBRTOWC 1 | #define HAVE_RAW_DECL_MBRLEN 1 | #define HAVE_RAW_DECL_MBSRTOWCS 1 | #define HAVE_RAW_DECL_WCRTOMB 1 | #define HAVE_RAW_DECL_WCSRTOMBS 1 | #define HAVE_RAW_DECL_WCWIDTH 1 | #define HAVE_RAW_DECL_WMEMCHR 1 | #define HAVE_RAW_DECL_WMEMCMP 1 | #define HAVE_RAW_DECL_WMEMCPY 1 | #define HAVE_RAW_DECL_WMEMMOVE 1 | #define HAVE_RAW_DECL_WMEMSET 1 | #define HAVE_RAW_DECL_WCSLEN 1 | /* end confdefs.h. */ | | /* Tru64 with Desktop Toolkit C has a bug: must be included before | . | BSD/OS 4.0.1 has a bug: , and must be | included before . */ | #if !(defined __GLIBC__ && !defined __UCLIBC__) | # include | # include | # include | #endif | #include | | int | main () | { | #undef wcsnlen | (void) wcsnlen; | ; | return 0; | } configure:31532: result: no configure:31496: checking whether wcscpy is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:31524: $? = 0 configure:31532: result: yes configure:31496: checking whether wcpcpy is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 496: undefined symbol: wcpcpy cc: acomp failed for conftest.c configure:31524: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_LSTAT 1 | #define HAVE_RAW_DECL_MKFIFO 1 | #define HAVE_RAW_DECL_MKNOD 1 | #define HAVE_RAW_DECL_STAT 1 | #define HAVE_RAW_DECL_WAITPID 1 | #define HAVE_RAW_DECL_CHOWN 1 | #define HAVE_RAW_DECL_DUP2 1 | #define HAVE_RAW_DECL_FCHDIR 1 | #define HAVE_RAW_DECL_FCHOWNAT 1 | #define HAVE_RAW_DECL_FSYNC 1 | #define HAVE_RAW_DECL_FTRUNCATE 1 | #define HAVE_RAW_DECL_GETCWD 1 | #define HAVE_RAW_DECL_GETDTABLESIZE 1 | #define HAVE_RAW_DECL_GETGROUPS 1 | #define HAVE_RAW_DECL_GETHOSTNAME 1 | #define HAVE_RAW_DECL_GETLOGIN 1 | #define HAVE_RAW_DECL_GETLOGIN_R 1 | #define HAVE_RAW_DECL_GETPAGESIZE 1 | #define HAVE_RAW_DECL_GETUSERSHELL 1 | #define HAVE_RAW_DECL_SETUSERSHELL 1 | #define HAVE_RAW_DECL_ENDUSERSHELL 1 | #define HAVE_RAW_DECL_LCHOWN 1 | #define HAVE_RAW_DECL_LINK 1 | #define HAVE_RAW_DECL_LSEEK 1 | #define HAVE_RAW_DECL_PIPE 1 | #define HAVE_RAW_DECL_PREAD 1 | #define HAVE_RAW_DECL_PWRITE 1 | #define HAVE_RAW_DECL_READLINK 1 | #define HAVE_RAW_DECL_RMDIR 1 | #define HAVE_RAW_DECL_SLEEP 1 | #define HAVE_RAW_DECL_SYMLINK 1 | #define HAVE_RAW_DECL_TTYNAME_R 1 | #define HAVE_RAW_DECL_UNLINK 1 | #define HAVE_RAW_DECL_UNLINKAT 1 | #define HAVE_RAW_DECL_USLEEP 1 | #define USE_UNLOCKED_IO 1 | #define HAVE_UNSETENV 1 | #define GNULIB_TEST_UNSETENV 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define GNULIB_TEST_VFPRINTF_POSIX 1 | #define HAVE_VSNPRINTF 1 | #define GNULIB_TEST_VSNPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_VSPRINTF_POSIX 1 | #define HAVE_WAITID 1 | #define GNULIB_TEST_WAITPID 1 | #define HAVE_RAW_DECL_BTOWC 1 | #define HAVE_RAW_DECL_WCTOB 1 | #define HAVE_RAW_DECL_MBSINIT 1 | #define HAVE_RAW_DECL_MBRTOWC 1 | #define HAVE_RAW_DECL_MBRLEN 1 | #define HAVE_RAW_DECL_MBSRTOWCS 1 | #define HAVE_RAW_DECL_WCRTOMB 1 | #define HAVE_RAW_DECL_WCSRTOMBS 1 | #define HAVE_RAW_DECL_WCWIDTH 1 | #define HAVE_RAW_DECL_WMEMCHR 1 | #define HAVE_RAW_DECL_WMEMCMP 1 | #define HAVE_RAW_DECL_WMEMCPY 1 | #define HAVE_RAW_DECL_WMEMMOVE 1 | #define HAVE_RAW_DECL_WMEMSET 1 | #define HAVE_RAW_DECL_WCSLEN 1 | #define HAVE_RAW_DECL_WCSCPY 1 | /* end confdefs.h. */ | | /* Tru64 with Desktop Toolkit C has a bug: must be included before | . | BSD/OS 4.0.1 has a bug: , and must be | included before . */ | #if !(defined __GLIBC__ && !defined __UCLIBC__) | # include | # include | # include | #endif | #include | | int | main () | { | #undef wcpcpy | (void) wcpcpy; | ; | return 0; | } configure:31532: result: no configure:31496: checking whether wcsncpy is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:31524: $? = 0 configure:31532: result: yes configure:31496: checking whether wcpncpy is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 497: undefined symbol: wcpncpy cc: acomp failed for conftest.c configure:31524: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_LSTAT 1 | #define HAVE_RAW_DECL_MKFIFO 1 | #define HAVE_RAW_DECL_MKNOD 1 | #define HAVE_RAW_DECL_STAT 1 | #define HAVE_RAW_DECL_WAITPID 1 | #define HAVE_RAW_DECL_CHOWN 1 | #define HAVE_RAW_DECL_DUP2 1 | #define HAVE_RAW_DECL_FCHDIR 1 | #define HAVE_RAW_DECL_FCHOWNAT 1 | #define HAVE_RAW_DECL_FSYNC 1 | #define HAVE_RAW_DECL_FTRUNCATE 1 | #define HAVE_RAW_DECL_GETCWD 1 | #define HAVE_RAW_DECL_GETDTABLESIZE 1 | #define HAVE_RAW_DECL_GETGROUPS 1 | #define HAVE_RAW_DECL_GETHOSTNAME 1 | #define HAVE_RAW_DECL_GETLOGIN 1 | #define HAVE_RAW_DECL_GETLOGIN_R 1 | #define HAVE_RAW_DECL_GETPAGESIZE 1 | #define HAVE_RAW_DECL_GETUSERSHELL 1 | #define HAVE_RAW_DECL_SETUSERSHELL 1 | #define HAVE_RAW_DECL_ENDUSERSHELL 1 | #define HAVE_RAW_DECL_LCHOWN 1 | #define HAVE_RAW_DECL_LINK 1 | #define HAVE_RAW_DECL_LSEEK 1 | #define HAVE_RAW_DECL_PIPE 1 | #define HAVE_RAW_DECL_PREAD 1 | #define HAVE_RAW_DECL_PWRITE 1 | #define HAVE_RAW_DECL_READLINK 1 | #define HAVE_RAW_DECL_RMDIR 1 | #define HAVE_RAW_DECL_SLEEP 1 | #define HAVE_RAW_DECL_SYMLINK 1 | #define HAVE_RAW_DECL_TTYNAME_R 1 | #define HAVE_RAW_DECL_UNLINK 1 | #define HAVE_RAW_DECL_UNLINKAT 1 | #define HAVE_RAW_DECL_USLEEP 1 | #define USE_UNLOCKED_IO 1 | #define HAVE_UNSETENV 1 | #define GNULIB_TEST_UNSETENV 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define GNULIB_TEST_VFPRINTF_POSIX 1 | #define HAVE_VSNPRINTF 1 | #define GNULIB_TEST_VSNPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_VSPRINTF_POSIX 1 | #define HAVE_WAITID 1 | #define GNULIB_TEST_WAITPID 1 | #define HAVE_RAW_DECL_BTOWC 1 | #define HAVE_RAW_DECL_WCTOB 1 | #define HAVE_RAW_DECL_MBSINIT 1 | #define HAVE_RAW_DECL_MBRTOWC 1 | #define HAVE_RAW_DECL_MBRLEN 1 | #define HAVE_RAW_DECL_MBSRTOWCS 1 | #define HAVE_RAW_DECL_WCRTOMB 1 | #define HAVE_RAW_DECL_WCSRTOMBS 1 | #define HAVE_RAW_DECL_WCWIDTH 1 | #define HAVE_RAW_DECL_WMEMCHR 1 | #define HAVE_RAW_DECL_WMEMCMP 1 | #define HAVE_RAW_DECL_WMEMCPY 1 | #define HAVE_RAW_DECL_WMEMMOVE 1 | #define HAVE_RAW_DECL_WMEMSET 1 | #define HAVE_RAW_DECL_WCSLEN 1 | #define HAVE_RAW_DECL_WCSCPY 1 | #define HAVE_RAW_DECL_WCSNCPY 1 | /* end confdefs.h. */ | | /* Tru64 with Desktop Toolkit C has a bug: must be included before | . | BSD/OS 4.0.1 has a bug: , and must be | included before . */ | #if !(defined __GLIBC__ && !defined __UCLIBC__) | # include | # include | # include | #endif | #include | | int | main () | { | #undef wcpncpy | (void) wcpncpy; | ; | return 0; | } configure:31532: result: no configure:31496: checking whether wcscat is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:31524: $? = 0 configure:31532: result: yes configure:31496: checking whether wcsncat is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:31524: $? = 0 configure:31532: result: yes configure:31496: checking whether wcscmp is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:31524: $? = 0 configure:31532: result: yes configure:31496: checking whether wcsncmp is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:31524: $? = 0 configure:31532: result: yes configure:31496: checking whether wcscasecmp is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 501: undefined symbol: wcscasecmp cc: acomp failed for conftest.c configure:31524: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_LSTAT 1 | #define HAVE_RAW_DECL_MKFIFO 1 | #define HAVE_RAW_DECL_MKNOD 1 | #define HAVE_RAW_DECL_STAT 1 | #define HAVE_RAW_DECL_WAITPID 1 | #define HAVE_RAW_DECL_CHOWN 1 | #define HAVE_RAW_DECL_DUP2 1 | #define HAVE_RAW_DECL_FCHDIR 1 | #define HAVE_RAW_DECL_FCHOWNAT 1 | #define HAVE_RAW_DECL_FSYNC 1 | #define HAVE_RAW_DECL_FTRUNCATE 1 | #define HAVE_RAW_DECL_GETCWD 1 | #define HAVE_RAW_DECL_GETDTABLESIZE 1 | #define HAVE_RAW_DECL_GETGROUPS 1 | #define HAVE_RAW_DECL_GETHOSTNAME 1 | #define HAVE_RAW_DECL_GETLOGIN 1 | #define HAVE_RAW_DECL_GETLOGIN_R 1 | #define HAVE_RAW_DECL_GETPAGESIZE 1 | #define HAVE_RAW_DECL_GETUSERSHELL 1 | #define HAVE_RAW_DECL_SETUSERSHELL 1 | #define HAVE_RAW_DECL_ENDUSERSHELL 1 | #define HAVE_RAW_DECL_LCHOWN 1 | #define HAVE_RAW_DECL_LINK 1 | #define HAVE_RAW_DECL_LSEEK 1 | #define HAVE_RAW_DECL_PIPE 1 | #define HAVE_RAW_DECL_PREAD 1 | #define HAVE_RAW_DECL_PWRITE 1 | #define HAVE_RAW_DECL_READLINK 1 | #define HAVE_RAW_DECL_RMDIR 1 | #define HAVE_RAW_DECL_SLEEP 1 | #define HAVE_RAW_DECL_SYMLINK 1 | #define HAVE_RAW_DECL_TTYNAME_R 1 | #define HAVE_RAW_DECL_UNLINK 1 | #define HAVE_RAW_DECL_UNLINKAT 1 | #define HAVE_RAW_DECL_USLEEP 1 | #define USE_UNLOCKED_IO 1 | #define HAVE_UNSETENV 1 | #define GNULIB_TEST_UNSETENV 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define GNULIB_TEST_VFPRINTF_POSIX 1 | #define HAVE_VSNPRINTF 1 | #define GNULIB_TEST_VSNPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_VSPRINTF_POSIX 1 | #define HAVE_WAITID 1 | #define GNULIB_TEST_WAITPID 1 | #define HAVE_RAW_DECL_BTOWC 1 | #define HAVE_RAW_DECL_WCTOB 1 | #define HAVE_RAW_DECL_MBSINIT 1 | #define HAVE_RAW_DECL_MBRTOWC 1 | #define HAVE_RAW_DECL_MBRLEN 1 | #define HAVE_RAW_DECL_MBSRTOWCS 1 | #define HAVE_RAW_DECL_WCRTOMB 1 | #define HAVE_RAW_DECL_WCSRTOMBS 1 | #define HAVE_RAW_DECL_WCWIDTH 1 | #define HAVE_RAW_DECL_WMEMCHR 1 | #define HAVE_RAW_DECL_WMEMCMP 1 | #define HAVE_RAW_DECL_WMEMCPY 1 | #define HAVE_RAW_DECL_WMEMMOVE 1 | #define HAVE_RAW_DECL_WMEMSET 1 | #define HAVE_RAW_DECL_WCSLEN 1 | #define HAVE_RAW_DECL_WCSCPY 1 | #define HAVE_RAW_DECL_WCSNCPY 1 | #define HAVE_RAW_DECL_WCSCAT 1 | #define HAVE_RAW_DECL_WCSNCAT 1 | #define HAVE_RAW_DECL_WCSCMP 1 | #define HAVE_RAW_DECL_WCSNCMP 1 | /* end confdefs.h. */ | | /* Tru64 with Desktop Toolkit C has a bug: must be included before | . | BSD/OS 4.0.1 has a bug: , and must be | included before . */ | #if !(defined __GLIBC__ && !defined __UCLIBC__) | # include | # include | # include | #endif | #include | | int | main () | { | #undef wcscasecmp | (void) wcscasecmp; | ; | return 0; | } configure:31532: result: no configure:31496: checking whether wcsncasecmp is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 501: undefined symbol: wcsncasecmp cc: acomp failed for conftest.c configure:31524: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_LSTAT 1 | #define HAVE_RAW_DECL_MKFIFO 1 | #define HAVE_RAW_DECL_MKNOD 1 | #define HAVE_RAW_DECL_STAT 1 | #define HAVE_RAW_DECL_WAITPID 1 | #define HAVE_RAW_DECL_CHOWN 1 | #define HAVE_RAW_DECL_DUP2 1 | #define HAVE_RAW_DECL_FCHDIR 1 | #define HAVE_RAW_DECL_FCHOWNAT 1 | #define HAVE_RAW_DECL_FSYNC 1 | #define HAVE_RAW_DECL_FTRUNCATE 1 | #define HAVE_RAW_DECL_GETCWD 1 | #define HAVE_RAW_DECL_GETDTABLESIZE 1 | #define HAVE_RAW_DECL_GETGROUPS 1 | #define HAVE_RAW_DECL_GETHOSTNAME 1 | #define HAVE_RAW_DECL_GETLOGIN 1 | #define HAVE_RAW_DECL_GETLOGIN_R 1 | #define HAVE_RAW_DECL_GETPAGESIZE 1 | #define HAVE_RAW_DECL_GETUSERSHELL 1 | #define HAVE_RAW_DECL_SETUSERSHELL 1 | #define HAVE_RAW_DECL_ENDUSERSHELL 1 | #define HAVE_RAW_DECL_LCHOWN 1 | #define HAVE_RAW_DECL_LINK 1 | #define HAVE_RAW_DECL_LSEEK 1 | #define HAVE_RAW_DECL_PIPE 1 | #define HAVE_RAW_DECL_PREAD 1 | #define HAVE_RAW_DECL_PWRITE 1 | #define HAVE_RAW_DECL_READLINK 1 | #define HAVE_RAW_DECL_RMDIR 1 | #define HAVE_RAW_DECL_SLEEP 1 | #define HAVE_RAW_DECL_SYMLINK 1 | #define HAVE_RAW_DECL_TTYNAME_R 1 | #define HAVE_RAW_DECL_UNLINK 1 | #define HAVE_RAW_DECL_UNLINKAT 1 | #define HAVE_RAW_DECL_USLEEP 1 | #define USE_UNLOCKED_IO 1 | #define HAVE_UNSETENV 1 | #define GNULIB_TEST_UNSETENV 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define GNULIB_TEST_VFPRINTF_POSIX 1 | #define HAVE_VSNPRINTF 1 | #define GNULIB_TEST_VSNPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_VSPRINTF_POSIX 1 | #define HAVE_WAITID 1 | #define GNULIB_TEST_WAITPID 1 | #define HAVE_RAW_DECL_BTOWC 1 | #define HAVE_RAW_DECL_WCTOB 1 | #define HAVE_RAW_DECL_MBSINIT 1 | #define HAVE_RAW_DECL_MBRTOWC 1 | #define HAVE_RAW_DECL_MBRLEN 1 | #define HAVE_RAW_DECL_MBSRTOWCS 1 | #define HAVE_RAW_DECL_WCRTOMB 1 | #define HAVE_RAW_DECL_WCSRTOMBS 1 | #define HAVE_RAW_DECL_WCWIDTH 1 | #define HAVE_RAW_DECL_WMEMCHR 1 | #define HAVE_RAW_DECL_WMEMCMP 1 | #define HAVE_RAW_DECL_WMEMCPY 1 | #define HAVE_RAW_DECL_WMEMMOVE 1 | #define HAVE_RAW_DECL_WMEMSET 1 | #define HAVE_RAW_DECL_WCSLEN 1 | #define HAVE_RAW_DECL_WCSCPY 1 | #define HAVE_RAW_DECL_WCSNCPY 1 | #define HAVE_RAW_DECL_WCSCAT 1 | #define HAVE_RAW_DECL_WCSNCAT 1 | #define HAVE_RAW_DECL_WCSCMP 1 | #define HAVE_RAW_DECL_WCSNCMP 1 | /* end confdefs.h. */ | | /* Tru64 with Desktop Toolkit C has a bug: must be included before | . | BSD/OS 4.0.1 has a bug: , and must be | included before . */ | #if !(defined __GLIBC__ && !defined __UCLIBC__) | # include | # include | # include | #endif | #include | | int | main () | { | #undef wcsncasecmp | (void) wcsncasecmp; | ; | return 0; | } configure:31532: result: no configure:31496: checking whether wcscoll is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:31524: $? = 0 configure:31532: result: yes configure:31496: checking whether wcsxfrm is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:31524: $? = 0 configure:31532: result: yes configure:31496: checking whether wcsdup is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 503: undefined symbol: wcsdup cc: acomp failed for conftest.c configure:31524: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_LSTAT 1 | #define HAVE_RAW_DECL_MKFIFO 1 | #define HAVE_RAW_DECL_MKNOD 1 | #define HAVE_RAW_DECL_STAT 1 | #define HAVE_RAW_DECL_WAITPID 1 | #define HAVE_RAW_DECL_CHOWN 1 | #define HAVE_RAW_DECL_DUP2 1 | #define HAVE_RAW_DECL_FCHDIR 1 | #define HAVE_RAW_DECL_FCHOWNAT 1 | #define HAVE_RAW_DECL_FSYNC 1 | #define HAVE_RAW_DECL_FTRUNCATE 1 | #define HAVE_RAW_DECL_GETCWD 1 | #define HAVE_RAW_DECL_GETDTABLESIZE 1 | #define HAVE_RAW_DECL_GETGROUPS 1 | #define HAVE_RAW_DECL_GETHOSTNAME 1 | #define HAVE_RAW_DECL_GETLOGIN 1 | #define HAVE_RAW_DECL_GETLOGIN_R 1 | #define HAVE_RAW_DECL_GETPAGESIZE 1 | #define HAVE_RAW_DECL_GETUSERSHELL 1 | #define HAVE_RAW_DECL_SETUSERSHELL 1 | #define HAVE_RAW_DECL_ENDUSERSHELL 1 | #define HAVE_RAW_DECL_LCHOWN 1 | #define HAVE_RAW_DECL_LINK 1 | #define HAVE_RAW_DECL_LSEEK 1 | #define HAVE_RAW_DECL_PIPE 1 | #define HAVE_RAW_DECL_PREAD 1 | #define HAVE_RAW_DECL_PWRITE 1 | #define HAVE_RAW_DECL_READLINK 1 | #define HAVE_RAW_DECL_RMDIR 1 | #define HAVE_RAW_DECL_SLEEP 1 | #define HAVE_RAW_DECL_SYMLINK 1 | #define HAVE_RAW_DECL_TTYNAME_R 1 | #define HAVE_RAW_DECL_UNLINK 1 | #define HAVE_RAW_DECL_UNLINKAT 1 | #define HAVE_RAW_DECL_USLEEP 1 | #define USE_UNLOCKED_IO 1 | #define HAVE_UNSETENV 1 | #define GNULIB_TEST_UNSETENV 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define GNULIB_TEST_VFPRINTF_POSIX 1 | #define HAVE_VSNPRINTF 1 | #define GNULIB_TEST_VSNPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_VSPRINTF_POSIX 1 | #define HAVE_WAITID 1 | #define GNULIB_TEST_WAITPID 1 | #define HAVE_RAW_DECL_BTOWC 1 | #define HAVE_RAW_DECL_WCTOB 1 | #define HAVE_RAW_DECL_MBSINIT 1 | #define HAVE_RAW_DECL_MBRTOWC 1 | #define HAVE_RAW_DECL_MBRLEN 1 | #define HAVE_RAW_DECL_MBSRTOWCS 1 | #define HAVE_RAW_DECL_WCRTOMB 1 | #define HAVE_RAW_DECL_WCSRTOMBS 1 | #define HAVE_RAW_DECL_WCWIDTH 1 | #define HAVE_RAW_DECL_WMEMCHR 1 | #define HAVE_RAW_DECL_WMEMCMP 1 | #define HAVE_RAW_DECL_WMEMCPY 1 | #define HAVE_RAW_DECL_WMEMMOVE 1 | #define HAVE_RAW_DECL_WMEMSET 1 | #define HAVE_RAW_DECL_WCSLEN 1 | #define HAVE_RAW_DECL_WCSCPY 1 | #define HAVE_RAW_DECL_WCSNCPY 1 | #define HAVE_RAW_DECL_WCSCAT 1 | #define HAVE_RAW_DECL_WCSNCAT 1 | #define HAVE_RAW_DECL_WCSCMP 1 | #define HAVE_RAW_DECL_WCSNCMP 1 | #define HAVE_RAW_DECL_WCSCOLL 1 | #define HAVE_RAW_DECL_WCSXFRM 1 | /* end confdefs.h. */ | | /* Tru64 with Desktop Toolkit C has a bug: must be included before | . | BSD/OS 4.0.1 has a bug: , and must be | included before . */ | #if !(defined __GLIBC__ && !defined __UCLIBC__) | # include | # include | # include | #endif | #include | | int | main () | { | #undef wcsdup | (void) wcsdup; | ; | return 0; | } configure:31532: result: no configure:31496: checking whether wcschr is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:31524: $? = 0 configure:31532: result: yes configure:31496: checking whether wcsrchr is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:31524: $? = 0 configure:31532: result: yes configure:31496: checking whether wcscspn is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:31524: $? = 0 configure:31532: result: yes configure:31496: checking whether wcsspn is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:31524: $? = 0 configure:31532: result: yes configure:31496: checking whether wcspbrk is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:31524: $? = 0 configure:31532: result: yes configure:31496: checking whether wcsstr is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:31524: $? = 0 configure:31532: result: yes configure:31496: checking whether wcstok is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:31524: $? = 0 configure:31532: result: yes configure:31496: checking whether wcswidth is declared without a macro configure:31524: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:31524: $? = 0 configure:31532: result: yes configure:31630: checking whether iswcntrl works configure:31685: result: yes configure:31705: checking for wctype_t configure:31741: result: yes configure:31747: checking for wctrans_t configure:31781: result: yes configure:31790: checking whether wctype is declared without a macro configure:31827: result: yes configure:31790: checking whether iswctype is declared without a macro configure:31827: result: yes configure:31790: checking whether wctrans is declared without a macro configure:31827: result: yes configure:31790: checking whether towctrans is declared without a macro configure:31827: result: yes configure:31852: checking whether wcwidth is declared configure:31852: result: yes configure:31880: checking whether wcwidth works reasonably in UTF-8 locales configure:31929: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:31929: $? = 0 configure:31929: ./conftest configure:31929: $? = 0 configure:31940: result: yes configure:32005: checking for stdint.h configure:32005: result: yes configure:32066: checking if malloc debugging is wanted configure:32084: result: no configure:32090: checking for pid_t configure:32090: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:32090: $? = 0 configure:32090: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 538: syntax error before or at: ) cc: acomp failed for conftest.c configure:32090: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_LSTAT 1 | #define HAVE_RAW_DECL_MKFIFO 1 | #define HAVE_RAW_DECL_MKNOD 1 | #define HAVE_RAW_DECL_STAT 1 | #define HAVE_RAW_DECL_WAITPID 1 | #define HAVE_RAW_DECL_CHOWN 1 | #define HAVE_RAW_DECL_DUP2 1 | #define HAVE_RAW_DECL_FCHDIR 1 | #define HAVE_RAW_DECL_FCHOWNAT 1 | #define HAVE_RAW_DECL_FSYNC 1 | #define HAVE_RAW_DECL_FTRUNCATE 1 | #define HAVE_RAW_DECL_GETCWD 1 | #define HAVE_RAW_DECL_GETDTABLESIZE 1 | #define HAVE_RAW_DECL_GETGROUPS 1 | #define HAVE_RAW_DECL_GETHOSTNAME 1 | #define HAVE_RAW_DECL_GETLOGIN 1 | #define HAVE_RAW_DECL_GETLOGIN_R 1 | #define HAVE_RAW_DECL_GETPAGESIZE 1 | #define HAVE_RAW_DECL_GETUSERSHELL 1 | #define HAVE_RAW_DECL_SETUSERSHELL 1 | #define HAVE_RAW_DECL_ENDUSERSHELL 1 | #define HAVE_RAW_DECL_LCHOWN 1 | #define HAVE_RAW_DECL_LINK 1 | #define HAVE_RAW_DECL_LSEEK 1 | #define HAVE_RAW_DECL_PIPE 1 | #define HAVE_RAW_DECL_PREAD 1 | #define HAVE_RAW_DECL_PWRITE 1 | #define HAVE_RAW_DECL_READLINK 1 | #define HAVE_RAW_DECL_RMDIR 1 | #define HAVE_RAW_DECL_SLEEP 1 | #define HAVE_RAW_DECL_SYMLINK 1 | #define HAVE_RAW_DECL_TTYNAME_R 1 | #define HAVE_RAW_DECL_UNLINK 1 | #define HAVE_RAW_DECL_UNLINKAT 1 | #define HAVE_RAW_DECL_USLEEP 1 | #define USE_UNLOCKED_IO 1 | #define HAVE_UNSETENV 1 | #define GNULIB_TEST_UNSETENV 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define GNULIB_TEST_VFPRINTF_POSIX 1 | #define HAVE_VSNPRINTF 1 | #define GNULIB_TEST_VSNPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_VSPRINTF_POSIX 1 | #define HAVE_WAITID 1 | #define GNULIB_TEST_WAITPID 1 | #define HAVE_RAW_DECL_BTOWC 1 | #define HAVE_RAW_DECL_WCTOB 1 | #define HAVE_RAW_DECL_MBSINIT 1 | #define HAVE_RAW_DECL_MBRTOWC 1 | #define HAVE_RAW_DECL_MBRLEN 1 | #define HAVE_RAW_DECL_MBSRTOWCS 1 | #define HAVE_RAW_DECL_WCRTOMB 1 | #define HAVE_RAW_DECL_WCSRTOMBS 1 | #define HAVE_RAW_DECL_WCWIDTH 1 | #define HAVE_RAW_DECL_WMEMCHR 1 | #define HAVE_RAW_DECL_WMEMCMP 1 | #define HAVE_RAW_DECL_WMEMCPY 1 | #define HAVE_RAW_DECL_WMEMMOVE 1 | #define HAVE_RAW_DECL_WMEMSET 1 | #define HAVE_RAW_DECL_WCSLEN 1 | #define HAVE_RAW_DECL_WCSCPY 1 | #define HAVE_RAW_DECL_WCSNCPY 1 | #define HAVE_RAW_DECL_WCSCAT 1 | #define HAVE_RAW_DECL_WCSNCAT 1 | #define HAVE_RAW_DECL_WCSCMP 1 | #define HAVE_RAW_DECL_WCSNCMP 1 | #define HAVE_RAW_DECL_WCSCOLL 1 | #define HAVE_RAW_DECL_WCSXFRM 1 | #define HAVE_RAW_DECL_WCSCHR 1 | #define HAVE_RAW_DECL_WCSRCHR 1 | #define HAVE_RAW_DECL_WCSCSPN 1 | #define HAVE_RAW_DECL_WCSSPN 1 | #define HAVE_RAW_DECL_WCSPBRK 1 | #define HAVE_RAW_DECL_WCSSTR 1 | #define HAVE_RAW_DECL_WCSTOK 1 | #define HAVE_RAW_DECL_WCSWIDTH 1 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_WCWIDTH 1 | #define GNULIB_TEST_WCWIDTH 1 | #define HAVE_STDINT_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((pid_t))) | return 0; | ; | return 0; | } configure:32090: result: yes configure:32101: checking for sys/wait.h that is POSIX.1 compatible configure:32134: result: yes configure:32145: checking for dup2 configure:32145: result: yes configure:32145: checking for waitpid configure:32145: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 540: warning: statement not reached configure:32145: $? = 0 configure:32145: result: yes configure:32157: checking vfork.h usability configure:32157: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 538: cannot find include file: cc: acomp failed for conftest.c configure:32157: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_LSTAT 1 | #define HAVE_RAW_DECL_MKFIFO 1 | #define HAVE_RAW_DECL_MKNOD 1 | #define HAVE_RAW_DECL_STAT 1 | #define HAVE_RAW_DECL_WAITPID 1 | #define HAVE_RAW_DECL_CHOWN 1 | #define HAVE_RAW_DECL_DUP2 1 | #define HAVE_RAW_DECL_FCHDIR 1 | #define HAVE_RAW_DECL_FCHOWNAT 1 | #define HAVE_RAW_DECL_FSYNC 1 | #define HAVE_RAW_DECL_FTRUNCATE 1 | #define HAVE_RAW_DECL_GETCWD 1 | #define HAVE_RAW_DECL_GETDTABLESIZE 1 | #define HAVE_RAW_DECL_GETGROUPS 1 | #define HAVE_RAW_DECL_GETHOSTNAME 1 | #define HAVE_RAW_DECL_GETLOGIN 1 | #define HAVE_RAW_DECL_GETLOGIN_R 1 | #define HAVE_RAW_DECL_GETPAGESIZE 1 | #define HAVE_RAW_DECL_GETUSERSHELL 1 | #define HAVE_RAW_DECL_SETUSERSHELL 1 | #define HAVE_RAW_DECL_ENDUSERSHELL 1 | #define HAVE_RAW_DECL_LCHOWN 1 | #define HAVE_RAW_DECL_LINK 1 | #define HAVE_RAW_DECL_LSEEK 1 | #define HAVE_RAW_DECL_PIPE 1 | #define HAVE_RAW_DECL_PREAD 1 | #define HAVE_RAW_DECL_PWRITE 1 | #define HAVE_RAW_DECL_READLINK 1 | #define HAVE_RAW_DECL_RMDIR 1 | #define HAVE_RAW_DECL_SLEEP 1 | #define HAVE_RAW_DECL_SYMLINK 1 | #define HAVE_RAW_DECL_TTYNAME_R 1 | #define HAVE_RAW_DECL_UNLINK 1 | #define HAVE_RAW_DECL_UNLINKAT 1 | #define HAVE_RAW_DECL_USLEEP 1 | #define USE_UNLOCKED_IO 1 | #define HAVE_UNSETENV 1 | #define GNULIB_TEST_UNSETENV 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define GNULIB_TEST_VFPRINTF_POSIX 1 | #define HAVE_VSNPRINTF 1 | #define GNULIB_TEST_VSNPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_VSPRINTF_POSIX 1 | #define HAVE_WAITID 1 | #define GNULIB_TEST_WAITPID 1 | #define HAVE_RAW_DECL_BTOWC 1 | #define HAVE_RAW_DECL_WCTOB 1 | #define HAVE_RAW_DECL_MBSINIT 1 | #define HAVE_RAW_DECL_MBRTOWC 1 | #define HAVE_RAW_DECL_MBRLEN 1 | #define HAVE_RAW_DECL_MBSRTOWCS 1 | #define HAVE_RAW_DECL_WCRTOMB 1 | #define HAVE_RAW_DECL_WCSRTOMBS 1 | #define HAVE_RAW_DECL_WCWIDTH 1 | #define HAVE_RAW_DECL_WMEMCHR 1 | #define HAVE_RAW_DECL_WMEMCMP 1 | #define HAVE_RAW_DECL_WMEMCPY 1 | #define HAVE_RAW_DECL_WMEMMOVE 1 | #define HAVE_RAW_DECL_WMEMSET 1 | #define HAVE_RAW_DECL_WCSLEN 1 | #define HAVE_RAW_DECL_WCSCPY 1 | #define HAVE_RAW_DECL_WCSNCPY 1 | #define HAVE_RAW_DECL_WCSCAT 1 | #define HAVE_RAW_DECL_WCSNCAT 1 | #define HAVE_RAW_DECL_WCSCMP 1 | #define HAVE_RAW_DECL_WCSNCMP 1 | #define HAVE_RAW_DECL_WCSCOLL 1 | #define HAVE_RAW_DECL_WCSXFRM 1 | #define HAVE_RAW_DECL_WCSCHR 1 | #define HAVE_RAW_DECL_WCSRCHR 1 | #define HAVE_RAW_DECL_WCSCSPN 1 | #define HAVE_RAW_DECL_WCSSPN 1 | #define HAVE_RAW_DECL_WCSPBRK 1 | #define HAVE_RAW_DECL_WCSSTR 1 | #define HAVE_RAW_DECL_WCSTOK 1 | #define HAVE_RAW_DECL_WCSWIDTH 1 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_WCWIDTH 1 | #define GNULIB_TEST_WCWIDTH 1 | #define HAVE_STDINT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_DUP2 1 | #define HAVE_WAITPID 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:32157: result: no configure:32157: checking vfork.h presence configure:32157: /usr/bin/cc -m64 -xc99=all -E conftest.c "conftest.c", line 505: cannot find include file: cc: acomp failed for conftest.c configure:32157: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_LSTAT 1 | #define HAVE_RAW_DECL_MKFIFO 1 | #define HAVE_RAW_DECL_MKNOD 1 | #define HAVE_RAW_DECL_STAT 1 | #define HAVE_RAW_DECL_WAITPID 1 | #define HAVE_RAW_DECL_CHOWN 1 | #define HAVE_RAW_DECL_DUP2 1 | #define HAVE_RAW_DECL_FCHDIR 1 | #define HAVE_RAW_DECL_FCHOWNAT 1 | #define HAVE_RAW_DECL_FSYNC 1 | #define HAVE_RAW_DECL_FTRUNCATE 1 | #define HAVE_RAW_DECL_GETCWD 1 | #define HAVE_RAW_DECL_GETDTABLESIZE 1 | #define HAVE_RAW_DECL_GETGROUPS 1 | #define HAVE_RAW_DECL_GETHOSTNAME 1 | #define HAVE_RAW_DECL_GETLOGIN 1 | #define HAVE_RAW_DECL_GETLOGIN_R 1 | #define HAVE_RAW_DECL_GETPAGESIZE 1 | #define HAVE_RAW_DECL_GETUSERSHELL 1 | #define HAVE_RAW_DECL_SETUSERSHELL 1 | #define HAVE_RAW_DECL_ENDUSERSHELL 1 | #define HAVE_RAW_DECL_LCHOWN 1 | #define HAVE_RAW_DECL_LINK 1 | #define HAVE_RAW_DECL_LSEEK 1 | #define HAVE_RAW_DECL_PIPE 1 | #define HAVE_RAW_DECL_PREAD 1 | #define HAVE_RAW_DECL_PWRITE 1 | #define HAVE_RAW_DECL_READLINK 1 | #define HAVE_RAW_DECL_RMDIR 1 | #define HAVE_RAW_DECL_SLEEP 1 | #define HAVE_RAW_DECL_SYMLINK 1 | #define HAVE_RAW_DECL_TTYNAME_R 1 | #define HAVE_RAW_DECL_UNLINK 1 | #define HAVE_RAW_DECL_UNLINKAT 1 | #define HAVE_RAW_DECL_USLEEP 1 | #define USE_UNLOCKED_IO 1 | #define HAVE_UNSETENV 1 | #define GNULIB_TEST_UNSETENV 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define GNULIB_TEST_VFPRINTF_POSIX 1 | #define HAVE_VSNPRINTF 1 | #define GNULIB_TEST_VSNPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_VSPRINTF_POSIX 1 | #define HAVE_WAITID 1 | #define GNULIB_TEST_WAITPID 1 | #define HAVE_RAW_DECL_BTOWC 1 | #define HAVE_RAW_DECL_WCTOB 1 | #define HAVE_RAW_DECL_MBSINIT 1 | #define HAVE_RAW_DECL_MBRTOWC 1 | #define HAVE_RAW_DECL_MBRLEN 1 | #define HAVE_RAW_DECL_MBSRTOWCS 1 | #define HAVE_RAW_DECL_WCRTOMB 1 | #define HAVE_RAW_DECL_WCSRTOMBS 1 | #define HAVE_RAW_DECL_WCWIDTH 1 | #define HAVE_RAW_DECL_WMEMCHR 1 | #define HAVE_RAW_DECL_WMEMCMP 1 | #define HAVE_RAW_DECL_WMEMCPY 1 | #define HAVE_RAW_DECL_WMEMMOVE 1 | #define HAVE_RAW_DECL_WMEMSET 1 | #define HAVE_RAW_DECL_WCSLEN 1 | #define HAVE_RAW_DECL_WCSCPY 1 | #define HAVE_RAW_DECL_WCSNCPY 1 | #define HAVE_RAW_DECL_WCSCAT 1 | #define HAVE_RAW_DECL_WCSNCAT 1 | #define HAVE_RAW_DECL_WCSCMP 1 | #define HAVE_RAW_DECL_WCSNCMP 1 | #define HAVE_RAW_DECL_WCSCOLL 1 | #define HAVE_RAW_DECL_WCSXFRM 1 | #define HAVE_RAW_DECL_WCSCHR 1 | #define HAVE_RAW_DECL_WCSRCHR 1 | #define HAVE_RAW_DECL_WCSCSPN 1 | #define HAVE_RAW_DECL_WCSSPN 1 | #define HAVE_RAW_DECL_WCSPBRK 1 | #define HAVE_RAW_DECL_WCSSTR 1 | #define HAVE_RAW_DECL_WCSTOK 1 | #define HAVE_RAW_DECL_WCSWIDTH 1 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_WCWIDTH 1 | #define GNULIB_TEST_WCWIDTH 1 | #define HAVE_STDINT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_DUP2 1 | #define HAVE_WAITPID 1 | /* end confdefs.h. */ | #include configure:32157: result: no configure:32157: checking for vfork.h configure:32157: result: no configure:32170: checking for fork configure:32170: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 541: warning: statement not reached configure:32170: $? = 0 configure:32170: result: yes configure:32170: checking for vfork configure:32170: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 542: warning: statement not reached configure:32170: $? = 0 configure:32170: result: yes configure:32181: checking for working fork configure:32203: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 548: warning: statement not reached configure:32203: $? = 0 configure:32203: ./conftest configure:32203: $? = 0 configure:32213: result: yes configure:32234: checking for working vfork configure:32344: result: yes configure:32373: checking for sys/time.h configure:32373: result: yes configure:32373: checking sys/times.h usability configure:32373: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:32373: $? = 0 configure:32373: result: yes configure:32373: checking sys/times.h presence configure:32373: /usr/bin/cc -m64 -xc99=all -E conftest.c configure:32373: $? = 0 configure:32373: result: yes configure:32373: checking for sys/times.h configure:32373: result: yes configure:32386: checking for sys/resource.h configure:32386: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:32386: $? = 0 configure:32386: result: yes configure:32406: checking for times configure:32406: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 548: warning: statement not reached configure:32406: $? = 0 configure:32406: result: yes configure:32416: checking whether getrusage is declared configure:32416: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:32416: $? = 0 configure:32416: result: yes configure:32437: checking whether times is declared configure:32437: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:32437: $? = 0 configure:32437: result: yes configure:32458: checking whether clock is declared configure:32458: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:32458: $? = 0 configure:32458: result: yes configure:32479: checking whether sysconf is declared configure:32479: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:32479: $? = 0 configure:32479: result: yes configure:32502: checking for clock_t configure:32502: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:32502: $? = 0 configure:32502: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 564: syntax error before or at: ) cc: acomp failed for conftest.c configure:32502: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_LSTAT 1 | #define HAVE_RAW_DECL_MKFIFO 1 | #define HAVE_RAW_DECL_MKNOD 1 | #define HAVE_RAW_DECL_STAT 1 | #define HAVE_RAW_DECL_WAITPID 1 | #define HAVE_RAW_DECL_CHOWN 1 | #define HAVE_RAW_DECL_DUP2 1 | #define HAVE_RAW_DECL_FCHDIR 1 | #define HAVE_RAW_DECL_FCHOWNAT 1 | #define HAVE_RAW_DECL_FSYNC 1 | #define HAVE_RAW_DECL_FTRUNCATE 1 | #define HAVE_RAW_DECL_GETCWD 1 | #define HAVE_RAW_DECL_GETDTABLESIZE 1 | #define HAVE_RAW_DECL_GETGROUPS 1 | #define HAVE_RAW_DECL_GETHOSTNAME 1 | #define HAVE_RAW_DECL_GETLOGIN 1 | #define HAVE_RAW_DECL_GETLOGIN_R 1 | #define HAVE_RAW_DECL_GETPAGESIZE 1 | #define HAVE_RAW_DECL_GETUSERSHELL 1 | #define HAVE_RAW_DECL_SETUSERSHELL 1 | #define HAVE_RAW_DECL_ENDUSERSHELL 1 | #define HAVE_RAW_DECL_LCHOWN 1 | #define HAVE_RAW_DECL_LINK 1 | #define HAVE_RAW_DECL_LSEEK 1 | #define HAVE_RAW_DECL_PIPE 1 | #define HAVE_RAW_DECL_PREAD 1 | #define HAVE_RAW_DECL_PWRITE 1 | #define HAVE_RAW_DECL_READLINK 1 | #define HAVE_RAW_DECL_RMDIR 1 | #define HAVE_RAW_DECL_SLEEP 1 | #define HAVE_RAW_DECL_SYMLINK 1 | #define HAVE_RAW_DECL_TTYNAME_R 1 | #define HAVE_RAW_DECL_UNLINK 1 | #define HAVE_RAW_DECL_UNLINKAT 1 | #define HAVE_RAW_DECL_USLEEP 1 | #define USE_UNLOCKED_IO 1 | #define HAVE_UNSETENV 1 | #define GNULIB_TEST_UNSETENV 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define GNULIB_TEST_VFPRINTF_POSIX 1 | #define HAVE_VSNPRINTF 1 | #define GNULIB_TEST_VSNPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_VSPRINTF_POSIX 1 | #define HAVE_WAITID 1 | #define GNULIB_TEST_WAITPID 1 | #define HAVE_RAW_DECL_BTOWC 1 | #define HAVE_RAW_DECL_WCTOB 1 | #define HAVE_RAW_DECL_MBSINIT 1 | #define HAVE_RAW_DECL_MBRTOWC 1 | #define HAVE_RAW_DECL_MBRLEN 1 | #define HAVE_RAW_DECL_MBSRTOWCS 1 | #define HAVE_RAW_DECL_WCRTOMB 1 | #define HAVE_RAW_DECL_WCSRTOMBS 1 | #define HAVE_RAW_DECL_WCWIDTH 1 | #define HAVE_RAW_DECL_WMEMCHR 1 | #define HAVE_RAW_DECL_WMEMCMP 1 | #define HAVE_RAW_DECL_WMEMCPY 1 | #define HAVE_RAW_DECL_WMEMMOVE 1 | #define HAVE_RAW_DECL_WMEMSET 1 | #define HAVE_RAW_DECL_WCSLEN 1 | #define HAVE_RAW_DECL_WCSCPY 1 | #define HAVE_RAW_DECL_WCSNCPY 1 | #define HAVE_RAW_DECL_WCSCAT 1 | #define HAVE_RAW_DECL_WCSNCAT 1 | #define HAVE_RAW_DECL_WCSCMP 1 | #define HAVE_RAW_DECL_WCSNCMP 1 | #define HAVE_RAW_DECL_WCSCOLL 1 | #define HAVE_RAW_DECL_WCSXFRM 1 | #define HAVE_RAW_DECL_WCSCHR 1 | #define HAVE_RAW_DECL_WCSRCHR 1 | #define HAVE_RAW_DECL_WCSCSPN 1 | #define HAVE_RAW_DECL_WCSSPN 1 | #define HAVE_RAW_DECL_WCSPBRK 1 | #define HAVE_RAW_DECL_WCSSTR 1 | #define HAVE_RAW_DECL_WCSTOK 1 | #define HAVE_RAW_DECL_WCSWIDTH 1 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_WCWIDTH 1 | #define GNULIB_TEST_WCWIDTH 1 | #define HAVE_STDINT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_DUP2 1 | #define HAVE_WAITPID 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_TIMES 1 | #define HAVE_DECL_GETRUSAGE 1 | #define HAVE_DECL_TIMES 1 | #define HAVE_DECL_CLOCK 1 | #define HAVE_DECL_SYSCONF 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 | #if HAVE_SYS_TIME_H | # include | #endif | #if HAVE_SYS_TIMES_H | # include | #endif | #if HAVE_SYS_RESOURCE_H | # include | #endif | | | int | main () | { | if (sizeof ((clock_t))) | return 0; | ; | return 0; | } configure:32502: result: yes configure:32522: checking for struct tms configure:32522: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 configure:32522: $? = 0 configure:32522: /usr/bin/cc -m64 -xc99=all -c -g conftest.c >&5 "conftest.c", line 565: syntax error before or at: ) cc: acomp failed for conftest.c configure:32522: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_LSTAT 1 | #define HAVE_RAW_DECL_MKFIFO 1 | #define HAVE_RAW_DECL_MKNOD 1 | #define HAVE_RAW_DECL_STAT 1 | #define HAVE_RAW_DECL_WAITPID 1 | #define HAVE_RAW_DECL_CHOWN 1 | #define HAVE_RAW_DECL_DUP2 1 | #define HAVE_RAW_DECL_FCHDIR 1 | #define HAVE_RAW_DECL_FCHOWNAT 1 | #define HAVE_RAW_DECL_FSYNC 1 | #define HAVE_RAW_DECL_FTRUNCATE 1 | #define HAVE_RAW_DECL_GETCWD 1 | #define HAVE_RAW_DECL_GETDTABLESIZE 1 | #define HAVE_RAW_DECL_GETGROUPS 1 | #define HAVE_RAW_DECL_GETHOSTNAME 1 | #define HAVE_RAW_DECL_GETLOGIN 1 | #define HAVE_RAW_DECL_GETLOGIN_R 1 | #define HAVE_RAW_DECL_GETPAGESIZE 1 | #define HAVE_RAW_DECL_GETUSERSHELL 1 | #define HAVE_RAW_DECL_SETUSERSHELL 1 | #define HAVE_RAW_DECL_ENDUSERSHELL 1 | #define HAVE_RAW_DECL_LCHOWN 1 | #define HAVE_RAW_DECL_LINK 1 | #define HAVE_RAW_DECL_LSEEK 1 | #define HAVE_RAW_DECL_PIPE 1 | #define HAVE_RAW_DECL_PREAD 1 | #define HAVE_RAW_DECL_PWRITE 1 | #define HAVE_RAW_DECL_READLINK 1 | #define HAVE_RAW_DECL_RMDIR 1 | #define HAVE_RAW_DECL_SLEEP 1 | #define HAVE_RAW_DECL_SYMLINK 1 | #define HAVE_RAW_DECL_TTYNAME_R 1 | #define HAVE_RAW_DECL_UNLINK 1 | #define HAVE_RAW_DECL_UNLINKAT 1 | #define HAVE_RAW_DECL_USLEEP 1 | #define USE_UNLOCKED_IO 1 | #define HAVE_UNSETENV 1 | #define GNULIB_TEST_UNSETENV 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define GNULIB_TEST_VFPRINTF_POSIX 1 | #define HAVE_VSNPRINTF 1 | #define GNULIB_TEST_VSNPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_VSPRINTF_POSIX 1 | #define HAVE_WAITID 1 | #define GNULIB_TEST_WAITPID 1 | #define HAVE_RAW_DECL_BTOWC 1 | #define HAVE_RAW_DECL_WCTOB 1 | #define HAVE_RAW_DECL_MBSINIT 1 | #define HAVE_RAW_DECL_MBRTOWC 1 | #define HAVE_RAW_DECL_MBRLEN 1 | #define HAVE_RAW_DECL_MBSRTOWCS 1 | #define HAVE_RAW_DECL_WCRTOMB 1 | #define HAVE_RAW_DECL_WCSRTOMBS 1 | #define HAVE_RAW_DECL_WCWIDTH 1 | #define HAVE_RAW_DECL_WMEMCHR 1 | #define HAVE_RAW_DECL_WMEMCMP 1 | #define HAVE_RAW_DECL_WMEMCPY 1 | #define HAVE_RAW_DECL_WMEMMOVE 1 | #define HAVE_RAW_DECL_WMEMSET 1 | #define HAVE_RAW_DECL_WCSLEN 1 | #define HAVE_RAW_DECL_WCSCPY 1 | #define HAVE_RAW_DECL_WCSNCPY 1 | #define HAVE_RAW_DECL_WCSCAT 1 | #define HAVE_RAW_DECL_WCSNCAT 1 | #define HAVE_RAW_DECL_WCSCMP 1 | #define HAVE_RAW_DECL_WCSNCMP 1 | #define HAVE_RAW_DECL_WCSCOLL 1 | #define HAVE_RAW_DECL_WCSXFRM 1 | #define HAVE_RAW_DECL_WCSCHR 1 | #define HAVE_RAW_DECL_WCSRCHR 1 | #define HAVE_RAW_DECL_WCSCSPN 1 | #define HAVE_RAW_DECL_WCSSPN 1 | #define HAVE_RAW_DECL_WCSPBRK 1 | #define HAVE_RAW_DECL_WCSSTR 1 | #define HAVE_RAW_DECL_WCSTOK 1 | #define HAVE_RAW_DECL_WCSWIDTH 1 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_WCWIDTH 1 | #define GNULIB_TEST_WCWIDTH 1 | #define HAVE_STDINT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_DUP2 1 | #define HAVE_WAITPID 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_TIMES 1 | #define HAVE_DECL_GETRUSAGE 1 | #define HAVE_DECL_TIMES 1 | #define HAVE_DECL_CLOCK 1 | #define HAVE_DECL_SYSCONF 1 | #define HAVE_CLOCK_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 | #if HAVE_SYS_TIME_H | # include | #endif | #if HAVE_SYS_TIMES_H | # include | #endif | #if HAVE_SYS_RESOURCE_H | # include | #endif | | | int | main () | { | if (sizeof ((struct tms))) | return 0; | ; | return 0; | } configure:32522: result: yes configure:32549: checking whether NLS is requested configure:32558: result: yes configure:32598: checking for msgfmt configure: trying /opt/sfw/bin/msgfmt... 0 translated messages. configure:32630: result: /opt/sfw/bin/msgfmt configure:32639: checking for gmsgfmt configure:32670: result: /opt/sfw/bin/msgfmt configure:32720: checking for xgettext configure: trying /opt/sfw/bin/xgettext... /opt/sfw/bin/xgettext: unrecognized option `--copyright-holder=' Try `/opt/sfw/bin/xgettext --help' for more information. configure: trying /usr/bin/xgettext... /usr/bin/xgettext: illegal option -- omit-header /usr/bin/xgettext: illegal option -- copyright-holder= /usr/bin/xgettext: illegal option -- msgid-bugs-address= Usage: xgettext [-a [-x exclude-file]] [-jns][-c comment-tag] [-d default-domain] [-m prefix] [-M suffix] [-p pathname] files ... xgettext -h configure:32755: result: no configure:32797: checking for msgmerge configure: trying /opt/sfw/bin/msgmerge... /opt/sfw/bin/msgmerge: unrecognized option `--update' Try `/opt/sfw/bin/msgmerge --help' for more information. configure:32831: result: no configure:32917: checking for non-GNU ld configure:32948: result: /usr/ccs/bin/ld configure:32955: checking if the linker (/usr/ccs/bin/ld) is GNU ld configure:32968: result: no configure:32975: checking for shared library run path origin configure:32988: result: done configure:33013: checking for 64-bit host configure:33036: result: yes configure:33560: checking for CFPreferencesCopyAppValue configure:33578: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c -Wl,-framework -Wl,CoreFoundation >&5 "conftest.c", line 519: cannot find include file: "conftest.c", line 523: warning: implicit function declaration: CFPreferencesCopyAppValue "conftest.c", line 523: undefined symbol: NULL cc: acomp failed for conftest.c configure:33578: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_LSTAT 1 | #define HAVE_RAW_DECL_MKFIFO 1 | #define HAVE_RAW_DECL_MKNOD 1 | #define HAVE_RAW_DECL_STAT 1 | #define HAVE_RAW_DECL_WAITPID 1 | #define HAVE_RAW_DECL_CHOWN 1 | #define HAVE_RAW_DECL_DUP2 1 | #define HAVE_RAW_DECL_FCHDIR 1 | #define HAVE_RAW_DECL_FCHOWNAT 1 | #define HAVE_RAW_DECL_FSYNC 1 | #define HAVE_RAW_DECL_FTRUNCATE 1 | #define HAVE_RAW_DECL_GETCWD 1 | #define HAVE_RAW_DECL_GETDTABLESIZE 1 | #define HAVE_RAW_DECL_GETGROUPS 1 | #define HAVE_RAW_DECL_GETHOSTNAME 1 | #define HAVE_RAW_DECL_GETLOGIN 1 | #define HAVE_RAW_DECL_GETLOGIN_R 1 | #define HAVE_RAW_DECL_GETPAGESIZE 1 | #define HAVE_RAW_DECL_GETUSERSHELL 1 | #define HAVE_RAW_DECL_SETUSERSHELL 1 | #define HAVE_RAW_DECL_ENDUSERSHELL 1 | #define HAVE_RAW_DECL_LCHOWN 1 | #define HAVE_RAW_DECL_LINK 1 | #define HAVE_RAW_DECL_LSEEK 1 | #define HAVE_RAW_DECL_PIPE 1 | #define HAVE_RAW_DECL_PREAD 1 | #define HAVE_RAW_DECL_PWRITE 1 | #define HAVE_RAW_DECL_READLINK 1 | #define HAVE_RAW_DECL_RMDIR 1 | #define HAVE_RAW_DECL_SLEEP 1 | #define HAVE_RAW_DECL_SYMLINK 1 | #define HAVE_RAW_DECL_TTYNAME_R 1 | #define HAVE_RAW_DECL_UNLINK 1 | #define HAVE_RAW_DECL_UNLINKAT 1 | #define HAVE_RAW_DECL_USLEEP 1 | #define USE_UNLOCKED_IO 1 | #define HAVE_UNSETENV 1 | #define GNULIB_TEST_UNSETENV 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define GNULIB_TEST_VFPRINTF_POSIX 1 | #define HAVE_VSNPRINTF 1 | #define GNULIB_TEST_VSNPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_VSPRINTF_POSIX 1 | #define HAVE_WAITID 1 | #define GNULIB_TEST_WAITPID 1 | #define HAVE_RAW_DECL_BTOWC 1 | #define HAVE_RAW_DECL_WCTOB 1 | #define HAVE_RAW_DECL_MBSINIT 1 | #define HAVE_RAW_DECL_MBRTOWC 1 | #define HAVE_RAW_DECL_MBRLEN 1 | #define HAVE_RAW_DECL_MBSRTOWCS 1 | #define HAVE_RAW_DECL_WCRTOMB 1 | #define HAVE_RAW_DECL_WCSRTOMBS 1 | #define HAVE_RAW_DECL_WCWIDTH 1 | #define HAVE_RAW_DECL_WMEMCHR 1 | #define HAVE_RAW_DECL_WMEMCMP 1 | #define HAVE_RAW_DECL_WMEMCPY 1 | #define HAVE_RAW_DECL_WMEMMOVE 1 | #define HAVE_RAW_DECL_WMEMSET 1 | #define HAVE_RAW_DECL_WCSLEN 1 | #define HAVE_RAW_DECL_WCSCPY 1 | #define HAVE_RAW_DECL_WCSNCPY 1 | #define HAVE_RAW_DECL_WCSCAT 1 | #define HAVE_RAW_DECL_WCSNCAT 1 | #define HAVE_RAW_DECL_WCSCMP 1 | #define HAVE_RAW_DECL_WCSNCMP 1 | #define HAVE_RAW_DECL_WCSCOLL 1 | #define HAVE_RAW_DECL_WCSXFRM 1 | #define HAVE_RAW_DECL_WCSCHR 1 | #define HAVE_RAW_DECL_WCSRCHR 1 | #define HAVE_RAW_DECL_WCSCSPN 1 | #define HAVE_RAW_DECL_WCSSPN 1 | #define HAVE_RAW_DECL_WCSPBRK 1 | #define HAVE_RAW_DECL_WCSSTR 1 | #define HAVE_RAW_DECL_WCSTOK 1 | #define HAVE_RAW_DECL_WCSWIDTH 1 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_WCWIDTH 1 | #define GNULIB_TEST_WCWIDTH 1 | #define HAVE_STDINT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_DUP2 1 | #define HAVE_WAITPID 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_TIMES 1 | #define HAVE_DECL_GETRUSAGE 1 | #define HAVE_DECL_TIMES 1 | #define HAVE_DECL_CLOCK 1 | #define HAVE_DECL_SYSCONF 1 | #define HAVE_CLOCK_T 1 | #define HAVE_STRUCT_TMS 1 | /* end confdefs.h. */ | #include | int | main () | { | CFPreferencesCopyAppValue(NULL, NULL) | ; | return 0; | } configure:33587: result: no configure:33594: checking for CFLocaleCopyCurrent configure:33612: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c -Wl,-framework -Wl,CoreFoundation >&5 "conftest.c", line 519: cannot find include file: "conftest.c", line 523: warning: implicit function declaration: CFLocaleCopyCurrent cc: acomp failed for conftest.c configure:33612: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_LSTAT 1 | #define HAVE_RAW_DECL_MKFIFO 1 | #define HAVE_RAW_DECL_MKNOD 1 | #define HAVE_RAW_DECL_STAT 1 | #define HAVE_RAW_DECL_WAITPID 1 | #define HAVE_RAW_DECL_CHOWN 1 | #define HAVE_RAW_DECL_DUP2 1 | #define HAVE_RAW_DECL_FCHDIR 1 | #define HAVE_RAW_DECL_FCHOWNAT 1 | #define HAVE_RAW_DECL_FSYNC 1 | #define HAVE_RAW_DECL_FTRUNCATE 1 | #define HAVE_RAW_DECL_GETCWD 1 | #define HAVE_RAW_DECL_GETDTABLESIZE 1 | #define HAVE_RAW_DECL_GETGROUPS 1 | #define HAVE_RAW_DECL_GETHOSTNAME 1 | #define HAVE_RAW_DECL_GETLOGIN 1 | #define HAVE_RAW_DECL_GETLOGIN_R 1 | #define HAVE_RAW_DECL_GETPAGESIZE 1 | #define HAVE_RAW_DECL_GETUSERSHELL 1 | #define HAVE_RAW_DECL_SETUSERSHELL 1 | #define HAVE_RAW_DECL_ENDUSERSHELL 1 | #define HAVE_RAW_DECL_LCHOWN 1 | #define HAVE_RAW_DECL_LINK 1 | #define HAVE_RAW_DECL_LSEEK 1 | #define HAVE_RAW_DECL_PIPE 1 | #define HAVE_RAW_DECL_PREAD 1 | #define HAVE_RAW_DECL_PWRITE 1 | #define HAVE_RAW_DECL_READLINK 1 | #define HAVE_RAW_DECL_RMDIR 1 | #define HAVE_RAW_DECL_SLEEP 1 | #define HAVE_RAW_DECL_SYMLINK 1 | #define HAVE_RAW_DECL_TTYNAME_R 1 | #define HAVE_RAW_DECL_UNLINK 1 | #define HAVE_RAW_DECL_UNLINKAT 1 | #define HAVE_RAW_DECL_USLEEP 1 | #define USE_UNLOCKED_IO 1 | #define HAVE_UNSETENV 1 | #define GNULIB_TEST_UNSETENV 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define GNULIB_TEST_VFPRINTF_POSIX 1 | #define HAVE_VSNPRINTF 1 | #define GNULIB_TEST_VSNPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_VSPRINTF_POSIX 1 | #define HAVE_WAITID 1 | #define GNULIB_TEST_WAITPID 1 | #define HAVE_RAW_DECL_BTOWC 1 | #define HAVE_RAW_DECL_WCTOB 1 | #define HAVE_RAW_DECL_MBSINIT 1 | #define HAVE_RAW_DECL_MBRTOWC 1 | #define HAVE_RAW_DECL_MBRLEN 1 | #define HAVE_RAW_DECL_MBSRTOWCS 1 | #define HAVE_RAW_DECL_WCRTOMB 1 | #define HAVE_RAW_DECL_WCSRTOMBS 1 | #define HAVE_RAW_DECL_WCWIDTH 1 | #define HAVE_RAW_DECL_WMEMCHR 1 | #define HAVE_RAW_DECL_WMEMCMP 1 | #define HAVE_RAW_DECL_WMEMCPY 1 | #define HAVE_RAW_DECL_WMEMMOVE 1 | #define HAVE_RAW_DECL_WMEMSET 1 | #define HAVE_RAW_DECL_WCSLEN 1 | #define HAVE_RAW_DECL_WCSCPY 1 | #define HAVE_RAW_DECL_WCSNCPY 1 | #define HAVE_RAW_DECL_WCSCAT 1 | #define HAVE_RAW_DECL_WCSNCAT 1 | #define HAVE_RAW_DECL_WCSCMP 1 | #define HAVE_RAW_DECL_WCSNCMP 1 | #define HAVE_RAW_DECL_WCSCOLL 1 | #define HAVE_RAW_DECL_WCSXFRM 1 | #define HAVE_RAW_DECL_WCSCHR 1 | #define HAVE_RAW_DECL_WCSRCHR 1 | #define HAVE_RAW_DECL_WCSCSPN 1 | #define HAVE_RAW_DECL_WCSSPN 1 | #define HAVE_RAW_DECL_WCSPBRK 1 | #define HAVE_RAW_DECL_WCSSTR 1 | #define HAVE_RAW_DECL_WCSTOK 1 | #define HAVE_RAW_DECL_WCSWIDTH 1 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_WCWIDTH 1 | #define GNULIB_TEST_WCWIDTH 1 | #define HAVE_STDINT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_DUP2 1 | #define HAVE_WAITPID 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_TIMES 1 | #define HAVE_DECL_GETRUSAGE 1 | #define HAVE_DECL_TIMES 1 | #define HAVE_DECL_CLOCK 1 | #define HAVE_DECL_SYSCONF 1 | #define HAVE_CLOCK_T 1 | #define HAVE_STRUCT_TMS 1 | /* end confdefs.h. */ | #include | int | main () | { | CFLocaleCopyCurrent(); | ; | return 0; | } configure:33621: result: no configure:33670: checking for GNU gettext in libc configure:33694: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 533: warning: statement not reached Undefined first referenced symbol in file _nl_domain_bindings conftest.o _nl_msg_cat_cntr conftest.o ld: fatal: Symbol referencing errors. No output written to conftest configure:33694: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_LSTAT 1 | #define HAVE_RAW_DECL_MKFIFO 1 | #define HAVE_RAW_DECL_MKNOD 1 | #define HAVE_RAW_DECL_STAT 1 | #define HAVE_RAW_DECL_WAITPID 1 | #define HAVE_RAW_DECL_CHOWN 1 | #define HAVE_RAW_DECL_DUP2 1 | #define HAVE_RAW_DECL_FCHDIR 1 | #define HAVE_RAW_DECL_FCHOWNAT 1 | #define HAVE_RAW_DECL_FSYNC 1 | #define HAVE_RAW_DECL_FTRUNCATE 1 | #define HAVE_RAW_DECL_GETCWD 1 | #define HAVE_RAW_DECL_GETDTABLESIZE 1 | #define HAVE_RAW_DECL_GETGROUPS 1 | #define HAVE_RAW_DECL_GETHOSTNAME 1 | #define HAVE_RAW_DECL_GETLOGIN 1 | #define HAVE_RAW_DECL_GETLOGIN_R 1 | #define HAVE_RAW_DECL_GETPAGESIZE 1 | #define HAVE_RAW_DECL_GETUSERSHELL 1 | #define HAVE_RAW_DECL_SETUSERSHELL 1 | #define HAVE_RAW_DECL_ENDUSERSHELL 1 | #define HAVE_RAW_DECL_LCHOWN 1 | #define HAVE_RAW_DECL_LINK 1 | #define HAVE_RAW_DECL_LSEEK 1 | #define HAVE_RAW_DECL_PIPE 1 | #define HAVE_RAW_DECL_PREAD 1 | #define HAVE_RAW_DECL_PWRITE 1 | #define HAVE_RAW_DECL_READLINK 1 | #define HAVE_RAW_DECL_RMDIR 1 | #define HAVE_RAW_DECL_SLEEP 1 | #define HAVE_RAW_DECL_SYMLINK 1 | #define HAVE_RAW_DECL_TTYNAME_R 1 | #define HAVE_RAW_DECL_UNLINK 1 | #define HAVE_RAW_DECL_UNLINKAT 1 | #define HAVE_RAW_DECL_USLEEP 1 | #define USE_UNLOCKED_IO 1 | #define HAVE_UNSETENV 1 | #define GNULIB_TEST_UNSETENV 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define GNULIB_TEST_VFPRINTF_POSIX 1 | #define HAVE_VSNPRINTF 1 | #define GNULIB_TEST_VSNPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_VSPRINTF_POSIX 1 | #define HAVE_WAITID 1 | #define GNULIB_TEST_WAITPID 1 | #define HAVE_RAW_DECL_BTOWC 1 | #define HAVE_RAW_DECL_WCTOB 1 | #define HAVE_RAW_DECL_MBSINIT 1 | #define HAVE_RAW_DECL_MBRTOWC 1 | #define HAVE_RAW_DECL_MBRLEN 1 | #define HAVE_RAW_DECL_MBSRTOWCS 1 | #define HAVE_RAW_DECL_WCRTOMB 1 | #define HAVE_RAW_DECL_WCSRTOMBS 1 | #define HAVE_RAW_DECL_WCWIDTH 1 | #define HAVE_RAW_DECL_WMEMCHR 1 | #define HAVE_RAW_DECL_WMEMCMP 1 | #define HAVE_RAW_DECL_WMEMCPY 1 | #define HAVE_RAW_DECL_WMEMMOVE 1 | #define HAVE_RAW_DECL_WMEMSET 1 | #define HAVE_RAW_DECL_WCSLEN 1 | #define HAVE_RAW_DECL_WCSCPY 1 | #define HAVE_RAW_DECL_WCSNCPY 1 | #define HAVE_RAW_DECL_WCSCAT 1 | #define HAVE_RAW_DECL_WCSNCAT 1 | #define HAVE_RAW_DECL_WCSCMP 1 | #define HAVE_RAW_DECL_WCSNCMP 1 | #define HAVE_RAW_DECL_WCSCOLL 1 | #define HAVE_RAW_DECL_WCSXFRM 1 | #define HAVE_RAW_DECL_WCSCHR 1 | #define HAVE_RAW_DECL_WCSRCHR 1 | #define HAVE_RAW_DECL_WCSCSPN 1 | #define HAVE_RAW_DECL_WCSSPN 1 | #define HAVE_RAW_DECL_WCSPBRK 1 | #define HAVE_RAW_DECL_WCSSTR 1 | #define HAVE_RAW_DECL_WCSTOK 1 | #define HAVE_RAW_DECL_WCSWIDTH 1 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_WCWIDTH 1 | #define GNULIB_TEST_WCWIDTH 1 | #define HAVE_STDINT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_DUP2 1 | #define HAVE_WAITPID 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_TIMES 1 | #define HAVE_DECL_GETRUSAGE 1 | #define HAVE_DECL_TIMES 1 | #define HAVE_DECL_CLOCK 1 | #define HAVE_DECL_SYSCONF 1 | #define HAVE_CLOCK_T 1 | #define HAVE_STRUCT_TMS 1 | /* end confdefs.h. */ | | #include | | extern int _nl_msg_cat_cntr; | extern int *_nl_domain_bindings; | | int | main () | { | | bindtextdomain ("", ""); | return * gettext ("") + * ngettext ("", "", 0) + _nl_msg_cat_cntr + *_nl_domain_bindings | | ; | return 0; | } configure:33703: result: no configure:33737: checking for iconv configure:33761: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 configure:33761: $? = 0 configure:33795: result: yes configure:33798: checking for working iconv configure:33918: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c >&5 "conftest.c", line 538: warning: argument #2 is incompatible with prototype: prototype: restrict pointer to pointer to const char : "/usr/include/iconv.h", line 27 argument : pointer to pointer to char "conftest.c", line 558: warning: argument #2 is incompatible with prototype: prototype: restrict pointer to pointer to const char : "/usr/include/iconv.h", line 27 argument : pointer to pointer to char "conftest.c", line 577: warning: argument #2 is incompatible with prototype: prototype: restrict pointer to pointer to const char : "/usr/include/iconv.h", line 27 argument : pointer to pointer to char configure:33918: $? = 0 configure:33918: ./conftest configure:33918: $? = 2 configure: program exited with status 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_LSTAT 1 | #define HAVE_RAW_DECL_MKFIFO 1 | #define HAVE_RAW_DECL_MKNOD 1 | #define HAVE_RAW_DECL_STAT 1 | #define HAVE_RAW_DECL_WAITPID 1 | #define HAVE_RAW_DECL_CHOWN 1 | #define HAVE_RAW_DECL_DUP2 1 | #define HAVE_RAW_DECL_FCHDIR 1 | #define HAVE_RAW_DECL_FCHOWNAT 1 | #define HAVE_RAW_DECL_FSYNC 1 | #define HAVE_RAW_DECL_FTRUNCATE 1 | #define HAVE_RAW_DECL_GETCWD 1 | #define HAVE_RAW_DECL_GETDTABLESIZE 1 | #define HAVE_RAW_DECL_GETGROUPS 1 | #define HAVE_RAW_DECL_GETHOSTNAME 1 | #define HAVE_RAW_DECL_GETLOGIN 1 | #define HAVE_RAW_DECL_GETLOGIN_R 1 | #define HAVE_RAW_DECL_GETPAGESIZE 1 | #define HAVE_RAW_DECL_GETUSERSHELL 1 | #define HAVE_RAW_DECL_SETUSERSHELL 1 | #define HAVE_RAW_DECL_ENDUSERSHELL 1 | #define HAVE_RAW_DECL_LCHOWN 1 | #define HAVE_RAW_DECL_LINK 1 | #define HAVE_RAW_DECL_LSEEK 1 | #define HAVE_RAW_DECL_PIPE 1 | #define HAVE_RAW_DECL_PREAD 1 | #define HAVE_RAW_DECL_PWRITE 1 | #define HAVE_RAW_DECL_READLINK 1 | #define HAVE_RAW_DECL_RMDIR 1 | #define HAVE_RAW_DECL_SLEEP 1 | #define HAVE_RAW_DECL_SYMLINK 1 | #define HAVE_RAW_DECL_TTYNAME_R 1 | #define HAVE_RAW_DECL_UNLINK 1 | #define HAVE_RAW_DECL_UNLINKAT 1 | #define HAVE_RAW_DECL_USLEEP 1 | #define USE_UNLOCKED_IO 1 | #define HAVE_UNSETENV 1 | #define GNULIB_TEST_UNSETENV 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define GNULIB_TEST_VFPRINTF_POSIX 1 | #define HAVE_VSNPRINTF 1 | #define GNULIB_TEST_VSNPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_VSPRINTF_POSIX 1 | #define HAVE_WAITID 1 | #define GNULIB_TEST_WAITPID 1 | #define HAVE_RAW_DECL_BTOWC 1 | #define HAVE_RAW_DECL_WCTOB 1 | #define HAVE_RAW_DECL_MBSINIT 1 | #define HAVE_RAW_DECL_MBRTOWC 1 | #define HAVE_RAW_DECL_MBRLEN 1 | #define HAVE_RAW_DECL_MBSRTOWCS 1 | #define HAVE_RAW_DECL_WCRTOMB 1 | #define HAVE_RAW_DECL_WCSRTOMBS 1 | #define HAVE_RAW_DECL_WCWIDTH 1 | #define HAVE_RAW_DECL_WMEMCHR 1 | #define HAVE_RAW_DECL_WMEMCMP 1 | #define HAVE_RAW_DECL_WMEMCPY 1 | #define HAVE_RAW_DECL_WMEMMOVE 1 | #define HAVE_RAW_DECL_WMEMSET 1 | #define HAVE_RAW_DECL_WCSLEN 1 | #define HAVE_RAW_DECL_WCSCPY 1 | #define HAVE_RAW_DECL_WCSNCPY 1 | #define HAVE_RAW_DECL_WCSCAT 1 | #define HAVE_RAW_DECL_WCSNCAT 1 | #define HAVE_RAW_DECL_WCSCMP 1 | #define HAVE_RAW_DECL_WCSNCMP 1 | #define HAVE_RAW_DECL_WCSCOLL 1 | #define HAVE_RAW_DECL_WCSXFRM 1 | #define HAVE_RAW_DECL_WCSCHR 1 | #define HAVE_RAW_DECL_WCSRCHR 1 | #define HAVE_RAW_DECL_WCSCSPN 1 | #define HAVE_RAW_DECL_WCSSPN 1 | #define HAVE_RAW_DECL_WCSPBRK 1 | #define HAVE_RAW_DECL_WCSSTR 1 | #define HAVE_RAW_DECL_WCSTOK 1 | #define HAVE_RAW_DECL_WCSWIDTH 1 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_WCWIDTH 1 | #define GNULIB_TEST_WCWIDTH 1 | #define HAVE_STDINT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_DUP2 1 | #define HAVE_WAITPID 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_TIMES 1 | #define HAVE_DECL_GETRUSAGE 1 | #define HAVE_DECL_TIMES 1 | #define HAVE_DECL_CLOCK 1 | #define HAVE_DECL_SYSCONF 1 | #define HAVE_CLOCK_T 1 | #define HAVE_STRUCT_TMS 1 | /* end confdefs.h. */ | | #include | #include | int main () | { | int result = 0; | /* Test against AIX 5.1 bug: Failures are not distinguishable from successful | returns. */ | { | iconv_t cd_utf8_to_88591 = iconv_open ("ISO8859-1", "UTF-8"); | if (cd_utf8_to_88591 != (iconv_t)(-1)) | { | static const char input[] = "\342\202\254"; /* EURO SIGN */ | char buf[10]; | const char *inptr = input; | size_t inbytesleft = strlen (input); | char *outptr = buf; | size_t outbytesleft = sizeof (buf); | size_t res = iconv (cd_utf8_to_88591, | (char **) &inptr, &inbytesleft, | &outptr, &outbytesleft); | if (res == 0) | result |= 1; | iconv_close (cd_utf8_to_88591); | } | } | /* Test against Solaris 10 bug: Failures are not distinguishable from | successful returns. */ | { | iconv_t cd_ascii_to_88591 = iconv_open ("ISO8859-1", "646"); | if (cd_ascii_to_88591 != (iconv_t)(-1)) | { | static const char input[] = "\263"; | char buf[10]; | const char *inptr = input; | size_t inbytesleft = strlen (input); | char *outptr = buf; | size_t outbytesleft = sizeof (buf); | size_t res = iconv (cd_ascii_to_88591, | (char **) &inptr, &inbytesleft, | &outptr, &outbytesleft); | if (res == 0) | result |= 2; | iconv_close (cd_ascii_to_88591); | } | } | /* Test against AIX 6.1..7.1 bug: Buffer overrun. */ | { | iconv_t cd_88591_to_utf8 = iconv_open ("UTF-8", "ISO-8859-1"); | if (cd_88591_to_utf8 != (iconv_t)(-1)) | { | static const char input[] = "\304"; | static char buf[2] = { (char)0xDE, (char)0xAD }; | const char *inptr = input; | size_t inbytesleft = 1; | char *outptr = buf; | size_t outbytesleft = 1; | size_t res = iconv (cd_88591_to_utf8, | (char **) &inptr, &inbytesleft, | &outptr, &outbytesleft); | if (res != (size_t)(-1) || outptr - buf > 1 || buf[1] != (char)0xAD) | result |= 4; | iconv_close (cd_88591_to_utf8); | } | } | #if 0 /* This bug could be worked around by the caller. */ | /* Test against HP-UX 11.11 bug: Positive return value instead of 0. */ | { | iconv_t cd_88591_to_utf8 = iconv_open ("utf8", "iso88591"); | if (cd_88591_to_utf8 != (iconv_t)(-1)) | { | static const char input[] = "\304rger mit b\366sen B\374bchen ohne Augenma\337"; | char buf[50]; | const char *inptr = input; | size_t inbytesleft = strlen (input); | char *outptr = buf; | size_t outbytesleft = sizeof (buf); | size_t res = iconv (cd_88591_to_utf8, | (char **) &inptr, &inbytesleft, | &outptr, &outbytesleft); | if ((int)res > 0) | result |= 8; | iconv_close (cd_88591_to_utf8); | } | } | #endif | /* Test against HP-UX 11.11 bug: No converter from EUC-JP to UTF-8 is | provided. */ | if (/* Try standardized names. */ | iconv_open ("UTF-8", "EUC-JP") == (iconv_t)(-1) | /* Try IRIX, OSF/1 names. */ | && iconv_open ("UTF-8", "eucJP") == (iconv_t)(-1) | /* Try AIX names. */ | && iconv_open ("UTF-8", "IBM-eucJP") == (iconv_t)(-1) | /* Try HP-UX names. */ | && iconv_open ("utf8", "eucJP") == (iconv_t)(-1)) | result |= 16; | return result; | } configure:33930: result: no configure:34419: checking for GNU gettext in libintl configure:34451: /usr/bin/cc -m64 -xc99=all -o conftest -g conftest.c -lintl >&5 "conftest.c", line 537: warning: statement not reached Undefined first referenced symbol in file _nl_expand_alias conftest.o _nl_msg_cat_cntr conftest.o ld: fatal: Symbol referencing errors. No output written to conftest configure:34451: $? = 2 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "2.5" | #define PACKAGE_STRING "GNU Bison 2.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "http://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2011 | #define PACKAGE "bison" | #define VERSION "2.5" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define 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 YYTEXT_POINTER 1 | #define M4 "/usr2/gnu/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SCHED_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define HAVE_DUP2 1 | #define HAVE_FCNTL 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_MEMCHR 1 | #define HAVE_LSTAT 1 | #define HAVE_PIPE 1 | #define HAVE_POSIX_SPAWN 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STRDUP 1 | #define HAVE_WCWIDTH 1 | #define HAVE_SETLOCALE 1 | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define WORDS_BIGENDIAN 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_DECL_GETENV 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE__BOOL 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_INTTYPES_H 1 | #define HAVE_DECL_IMAXABS 1 | #define HAVE_DECL_IMAXDIV 1 | #define HAVE_DECL_STRTOIMAX 1 | #define HAVE_DECL_STRTOUMAX 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_ISWBLANK 0 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define PROMOTED_MODE_T mode_t | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define USER_LABEL_PREFIX | #define restrict __restrict__ | #define HAVE_DECL_SNPRINTF 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRDUP 1 | #define HAVE_RAW_DECL_STRNCAT 1 | #define HAVE_RAW_DECL_STRPBRK 1 | #define HAVE_RAW_DECL_STRTOK_R 1 | #define HAVE_RAW_DECL_STRERROR_R 1 | #define HAVE_RAW_DECL_STRSIGNAL 1 | #define HAVE_DECL_STRNDUP 0 | #define HAVE_DECL_STRNLEN 0 | #define HAVE_DECL_CLEARERR_UNLOCKED 0 | #define HAVE_DECL_FEOF_UNLOCKED 0 | #define HAVE_DECL_FERROR_UNLOCKED 0 | #define HAVE_DECL_FFLUSH_UNLOCKED 0 | #define HAVE_DECL_FGETS_UNLOCKED 0 | #define HAVE_DECL_FPUTC_UNLOCKED 0 | #define HAVE_DECL_FPUTS_UNLOCKED 0 | #define HAVE_DECL_FREAD_UNLOCKED 0 | #define HAVE_DECL_FWRITE_UNLOCKED 0 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCLOSE 1 | #define GNULIB_TEST_FCNTL 1 | #define HAVE_RAW_DECL_FCNTL 1 | #define HAVE_RAW_DECL_OPENAT 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_SAFER 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_FPRINTF_POSIX 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define GNULIB_TEST_GETOPT_GNU 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_INLINE 1 | #define GL_TRIGGER_STDC_LIMIT_MACROS 1 | #define HAVE_RAW_DECL_IMAXABS 1 | #define HAVE_RAW_DECL_IMAXDIV 1 | #define HAVE_RAW_DECL_STRTOIMAX 1 | #define HAVE_RAW_DECL_STRTOUMAX 1 | #define HAVE_IOCTL 1 | #define GNULIB_TEST_IOCTL 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define HAVE_ISNANF_IN_LIBC 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define GNULIB_TEST_ISWBLANK 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define HAVE_RAW_DECL_ACOSL 1 | #define HAVE_RAW_DECL_ASINL 1 | #define HAVE_RAW_DECL_ATANL 1 | #define HAVE_RAW_DECL_CEILF 1 | #define HAVE_RAW_DECL_CEILL 1 | #define HAVE_RAW_DECL_COSL 1 | #define HAVE_RAW_DECL_EXPL 1 | #define HAVE_RAW_DECL_FLOORF 1 | #define HAVE_RAW_DECL_FLOORL 1 | #define HAVE_RAW_DECL_FREXPL 1 | #define HAVE_RAW_DECL_LDEXPL 1 | #define HAVE_RAW_DECL_LOGB 1 | #define HAVE_RAW_DECL_LOGL 1 | #define HAVE_RAW_DECL_ROUND 1 | #define HAVE_RAW_DECL_ROUNDF 1 | #define HAVE_RAW_DECL_ROUNDL 1 | #define HAVE_RAW_DECL_SINL 1 | #define HAVE_RAW_DECL_SQRTL 1 | #define HAVE_RAW_DECL_TANL 1 | #define HAVE_RAW_DECL_TRUNC 1 | #define HAVE_RAW_DECL_TRUNCF 1 | #define HAVE_RAW_DECL_TRUNCL 1 | #define MBRTOWC_NULL_ARG1_BUG 1 | #define MBRTOWC_RETVAL_BUG 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSCHR 1 | #define GNULIB_TEST_MBSINIT 1 | #define GNULIB_TEST_MBSRCHR 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_TEST_NONBLOCKING 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define REPLACE_PRINTF_POSIX 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define GNULIB_TEST_RAWMEMCHR 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define HAVE_RAW_DECL_SIGACTION 1 | #define HAVE_RAW_DECL_SIGADDSET 1 | #define HAVE_RAW_DECL_SIGDELSET 1 | #define HAVE_RAW_DECL_SIGEMPTYSET 1 | #define HAVE_RAW_DECL_SIGFILLSET 1 | #define HAVE_RAW_DECL_SIGISMEMBER 1 | #define HAVE_RAW_DECL_SIGPENDING 1 | #define HAVE_RAW_DECL_SIGPROCMASK 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define HAVE_RAW_DECL_POSIX_SPAWN 1 | #define HAVE_RAW_DECL_POSIX_SPAWNP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define GNULIB_TEST_STAT 1 | #define HAVE_SYS_INTTYPES_H 1 | #define BITSIZEOF_PTRDIFF_T 64 | #define BITSIZEOF_SIZE_T 64 | #define BITSIZEOF_SIG_ATOMIC_T 32 | #define BITSIZEOF_WCHAR_T 32 | #define BITSIZEOF_WINT_T 32 | #define HAVE_SIGNED_SIG_ATOMIC_T 1 | #define HAVE_SIGNED_WCHAR_T 1 | #define HAVE_SIGNED_WINT_T 1 | #define PTRDIFF_T_SUFFIX l | #define SIZE_T_SUFFIX ul | #define SIG_ATOMIC_T_SUFFIX | #define WCHAR_T_SUFFIX | #define WINT_T_SUFFIX | #define HAVE_RAW_DECL_FSEEKO 1 | #define HAVE_RAW_DECL_FTELLO 1 | #define HAVE_RAW_DECL_POPEN 1 | #define HAVE_RAW_DECL_SNPRINTF 1 | #define HAVE_RAW_DECL_TMPFILE 1 | #define HAVE_RAW_DECL_VSNPRINTF 1 | #define HAVE_RAW_DECL__EXIT 1 | #define HAVE_RAW_DECL_ATOLL 1 | #define HAVE_RAW_DECL_GETSUBOPT 1 | #define HAVE_RAW_DECL_GRANTPT 1 | #define HAVE_RAW_DECL_MKSTEMP 1 | #define HAVE_RAW_DECL_PTSNAME 1 | #define HAVE_RAW_DECL_REALPATH 1 | #define HAVE_RAW_DECL_SETENV 1 | #define HAVE_RAW_DECL_STRTOD 1 | #define HAVE_RAW_DECL_STRTOLL 1 | #define HAVE_RAW_DECL_STRTOULL 1 | #define HAVE_RAW_DECL_UNLOCKPT 1 | #define HAVE_RAW_DECL_UNSETENV 1 | #define GNULIB_TEST_STPCPY 1 | #define GNULIB_TEST_STRCHRNUL 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define GNULIB_TEST_STRNLEN 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_RAW_DECL_IOCTL 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_SA_FAMILY_T 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_RAW_DECL_SOCKET 1 | #define HAVE_RAW_DECL_CONNECT 1 | #define HAVE_RAW_DECL_ACCEPT 1 | #define HAVE_RAW_DECL_BIND 1 | #define HAVE_RAW_DECL_GETPEERNAME 1 | #define HAVE_RAW_DECL_GETSOCKNAME 1 | #define HAVE_RAW_DECL_GETSOCKOPT 1 | #define HAVE_RAW_DECL_LISTEN 1 | #define HAVE_RAW_DECL_RECV 1 | #define HAVE_RAW_DECL_SEND 1 | #define HAVE_RAW_DECL_RECVFROM 1 | #define HAVE_RAW_DECL_SENDTO 1 | #define HAVE_RAW_DECL_SETSOCKOPT 1 | #define HAVE_RAW_DECL_SHUTDOWN 1 | #define HAVE_RAW_DECL_FSTATAT 1 | #define HAVE_RAW_DECL_LSTAT 1 | #define HAVE_RAW_DECL_MKFIFO 1 | #define HAVE_RAW_DECL_MKNOD 1 | #define HAVE_RAW_DECL_STAT 1 | #define HAVE_RAW_DECL_WAITPID 1 | #define HAVE_RAW_DECL_CHOWN 1 | #define HAVE_RAW_DECL_DUP2 1 | #define HAVE_RAW_DECL_FCHDIR 1 | #define HAVE_RAW_DECL_FCHOWNAT 1 | #define HAVE_RAW_DECL_FSYNC 1 | #define HAVE_RAW_DECL_FTRUNCATE 1 | #define HAVE_RAW_DECL_GETCWD 1 | #define HAVE_RAW_DECL_GETDTABLESIZE 1 | #define HAVE_RAW_DECL_GETGROUPS 1 | #define HAVE_RAW_DECL_GETHOSTNAME 1 | #define HAVE_RAW_DECL_GETLOGIN 1 | #define HAVE_RAW_DECL_GETLOGIN_R 1 | #define HAVE_RAW_DECL_GETPAGESIZE 1 | #define HAVE_RAW_DECL_GETUSERSHELL 1 | #define HAVE_RAW_DECL_SETUSERSHELL 1 | #define HAVE_RAW_DECL_ENDUSERSHELL 1 | #define HAVE_RAW_DECL_LCHOWN 1 | #define HAVE_RAW_DECL_LINK 1 | #define HAVE_RAW_DECL_LSEEK 1 | #define HAVE_RAW_DECL_PIPE 1 | #define HAVE_RAW_DECL_PREAD 1 | #define HAVE_RAW_DECL_PWRITE 1 | #define HAVE_RAW_DECL_READLINK 1 | #define HAVE_RAW_DECL_RMDIR 1 | #define HAVE_RAW_DECL_SLEEP 1 | #define HAVE_RAW_DECL_SYMLINK 1 | #define HAVE_RAW_DECL_TTYNAME_R 1 | #define HAVE_RAW_DECL_UNLINK 1 | #define HAVE_RAW_DECL_UNLINKAT 1 | #define HAVE_RAW_DECL_USLEEP 1 | #define USE_UNLOCKED_IO 1 | #define HAVE_UNSETENV 1 | #define GNULIB_TEST_UNSETENV 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define REPLACE_VFPRINTF_POSIX 1 | #define GNULIB_TEST_VFPRINTF_POSIX 1 | #define HAVE_VSNPRINTF 1 | #define GNULIB_TEST_VSNPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define NEED_PRINTF_DIRECTIVE_A 1 | #define HAVE_NL_LANGINFO 1 | #define NEED_PRINTF_DIRECTIVE_LS 1 | #define NEED_PRINTF_FLAG_ZERO 1 | #define NEED_PRINTF_UNBOUNDED_PRECISION 1 | #define NEED_PRINTF_DOUBLE 1 | #define NEED_PRINTF_LONG_DOUBLE 1 | #define GNULIB_TEST_VSPRINTF_POSIX 1 | #define HAVE_WAITID 1 | #define GNULIB_TEST_WAITPID 1 | #define HAVE_RAW_DECL_BTOWC 1 | #define HAVE_RAW_DECL_WCTOB 1 | #define HAVE_RAW_DECL_MBSINIT 1 | #define HAVE_RAW_DECL_MBRTOWC 1 | #define HAVE_RAW_DECL_MBRLEN 1 | #define HAVE_RAW_DECL_MBSRTOWCS 1 | #define HAVE_RAW_DECL_WCRTOMB 1 | #define HAVE_RAW_DECL_WCSRTOMBS 1 | #define HAVE_RAW_DECL_WCWIDTH 1 | #define HAVE_RAW_DECL_WMEMCHR 1 | #define HAVE_RAW_DECL_WMEMCMP 1 | #define HAVE_RAW_DECL_WMEMCPY 1 | #define HAVE_RAW_DECL_WMEMMOVE 1 | #define HAVE_RAW_DECL_WMEMSET 1 | #define HAVE_RAW_DECL_WCSLEN 1 | #define HAVE_RAW_DECL_WCSCPY 1 | #define HAVE_RAW_DECL_WCSNCPY 1 | #define HAVE_RAW_DECL_WCSCAT 1 | #define HAVE_RAW_DECL_WCSNCAT 1 | #define HAVE_RAW_DECL_WCSCMP 1 | #define HAVE_RAW_DECL_WCSNCMP 1 | #define HAVE_RAW_DECL_WCSCOLL 1 | #define HAVE_RAW_DECL_WCSXFRM 1 | #define HAVE_RAW_DECL_WCSCHR 1 | #define HAVE_RAW_DECL_WCSRCHR 1 | #define HAVE_RAW_DECL_WCSCSPN 1 | #define HAVE_RAW_DECL_WCSSPN 1 | #define HAVE_RAW_DECL_WCSPBRK 1 | #define HAVE_RAW_DECL_WCSSTR 1 | #define HAVE_RAW_DECL_WCSTOK 1 | #define HAVE_RAW_DECL_WCSWIDTH 1 | #define HAVE_RAW_DECL_WCTYPE 1 | #define HAVE_RAW_DECL_ISWCTYPE 1 | #define HAVE_RAW_DECL_WCTRANS 1 | #define HAVE_RAW_DECL_TOWCTRANS 1 | #define HAVE_DECL_WCWIDTH 1 | #define GNULIB_TEST_WCWIDTH 1 | #define HAVE_STDINT_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_DUP2 1 | #define HAVE_WAITPID 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_TIMES 1 | #define HAVE_DECL_GETRUSAGE 1 | #define HAVE_DECL_TIMES 1 | #define HAVE_DECL_CLOCK 1 | #define HAVE_DECL_SYSCONF 1 | #define HAVE_CLOCK_T 1 | #define HAVE_STRUCT_TMS 1 | /* end confdefs.h. */ | | #include | | extern int _nl_msg_cat_cntr; | extern | #ifdef __cplusplus | "C" | #endif | const char *_nl_expand_alias (const char *); | | int | main () | { | | bindtextdomain ("", ""); | return * gettext ("") + * ngettext ("", "", 0) + _nl_msg_cat_cntr + *_nl_expand_alias ("") | | ; | return 0; | } configure:34496: result: no configure:34531: checking whether to use NLS configure:34533: result: no configure:34653: checking for valgrind configure:34683: result: no configure:34749: checking for g++ configure:34765: found /opt/sfw/bin/g++ configure:34776: result: g++ configure:34803: checking for C++ compiler version configure:34812: g++ --version >&5 g++ (GCC) 3.4.2 Copyright (C) 2004 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:34823: $? = 0 configure:34812: g++ -v >&5 Reading specs from /opt/sfw/lib/gcc/sparc-sun-solaris2.10/3.4.2/specs Configured with: ../gcc-3.4.2/configure --prefix=/opt/sfw --with-ld=/usr/ccs/bin/ld --with-gnu-as --with-as=/opt/sfw/bin/gas --enable-shared --disable-libgcj Thread model: posix gcc version 3.4.2 configure:34823: $? = 0 configure:34812: g++ -V >&5 g++: `-V' option must have argument configure:34823: $? = 1 configure:34812: g++ -qversion >&5 g++: unrecognized option `-qversion' g++: no input files configure:34823: $? = 1 configure:34827: checking whether we are using the GNU C++ compiler configure:34846: g++ -c conftest.cpp >&5 configure:34846: $? = 0 configure:34855: result: yes configure:34864: checking whether g++ accepts -g configure:34884: g++ -c -g conftest.cpp >&5 configure:34884: $? = 0 configure:34925: result: yes configure:34950: checking dependency style of g++ configure:35060: result: gcc3 configure:35077: checking whether g++ builds executables that work configure:35112: g++ -c -g -O2 conftest.cpp >&5 configure:35112: $? = 0 configure:35114: g++ -o conftest -g -O2 conftest.o >&5 configure:35117: $? = 0 configure:35123: ./conftest ld.so.1: ./conftest: fatal: libstdc++.so.6: open failed: No such file or directory ./configure: line 35124: 20908 Killed ./conftest$ac_exeext configure:35126: $? = 137 configure:35142: result: no configure:35173: checking for Java virtual machine configure:35253: found /usr/bin/java configure:35376: result: java configure:35423: CLASSPATH=. java conftestver configure:35471: checking for Java compiler configure:35711: found /usr/bin/javac configure:35851: javac -d . conftest.java configure:35858: javac -source 1.3 -d . conftest.java configure:35863: javac -d . conftestfail.java configure:35867: javac -source 1.3 -d . conftestfail.java conftestfail.java:1: warning: as of release 1.4, 'assert' is a keyword, and may not be used as an identifier (try -source 1.4 or higher to use 'assert' as a keyword) class conftestfail { static { assert(true); } } ^ conftestfail.java:1: cannot find symbol symbol : method assert(boolean) location: class conftestfail class conftestfail { static { assert(true); } } ^ 1 error 1 warning configure:35946: result: javac -source 1.3 configure:35957: checking for Java virtual machine configure:36160: result: java configure:36384: creating ./config.status ## ---------------------- ## ## Running config.status. ## ## ---------------------- ## This file was extended by GNU Bison config.status 2.5, which was generated by GNU Autoconf 2.65. Invocation command line was CONFIG_FILES = CONFIG_HEADERS = CONFIG_LINKS = CONFIG_COMMANDS = $ ./config.status on ssol10 config.status:2252: creating javacomp.sh config.status:2252: creating javaexec.sh config.status:2252: creating runtime-po/Makefile.in config.status:2252: creating etc/bench.pl config.status:2252: creating tests/Makefile config.status:2252: creating tests/atlocal config.status:2252: creating tests/bison config.status:2252: creating Makefile config.status:2252: creating build-aux/Makefile config.status:2252: creating po/Makefile.in config.status:2252: creating data/Makefile config.status:2252: creating etc/Makefile config.status:2252: creating examples/Makefile config.status:2252: creating examples/calc++/Makefile config.status:2252: creating lib/Makefile config.status:2252: creating src/Makefile config.status:2252: creating doc/Makefile config.status:2252: creating doc/yacc.1 config.status:2252: creating lib/config.h config.status:2503: executing depfiles commands config.status:2503: executing po-directories commands config.status:2503: executing tests/atconfig commands ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_build=sparc-sun-solaris2.10 ac_cv_c_bigendian=yes ac_cv_c_compiler_gnu=no ac_cv_c_inline=inline ac_cv_c_restrict=__restrict__ ac_cv_cxx_compiler_gnu=yes ac_cv_env_CCC_set= ac_cv_env_CCC_value= ac_cv_env_CC_set=set ac_cv_env_CC_value='/usr/bin/cc -m64' 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_LIBS_set= ac_cv_env_LIBS_value= ac_cv_env_M4_set= ac_cv_env_M4_value= ac_cv_env_YACC_set= ac_cv_env_YACC_value= ac_cv_env_YFLAGS_set= ac_cv_env_YFLAGS_value= ac_cv_env_build_alias_set= ac_cv_env_build_alias_value= ac_cv_env_host_alias_set= ac_cv_env_host_alias_value= ac_cv_env_target_alias_set= ac_cv_env_target_alias_value= ac_cv_func_alloca_works=yes ac_cv_func_dup2=yes ac_cv_func_fcntl=yes ac_cv_func_fork=yes ac_cv_func_fork_works=yes ac_cv_func_getdtablesize=yes ac_cv_func_getopt_long_only=yes ac_cv_func_ioctl=yes ac_cv_func_isascii=yes ac_cv_func_iswblank=yes ac_cv_func_iswcntrl=yes ac_cv_func_lstat=yes ac_cv_func_malloc_0_nonnull=yes ac_cv_func_mbrtowc=yes ac_cv_func_mbsinit=yes ac_cv_func_memchr=yes ac_cv_func_mmap=yes ac_cv_func_mprotect=yes ac_cv_func_nl_langinfo=yes ac_cv_func_obstack=no ac_cv_func_pipe2=no ac_cv_func_pipe=yes ac_cv_func_posix_spawn=yes ac_cv_func_rawmemchr=no ac_cv_func_setlocale=yes ac_cv_func_shutdown=no ac_cv_func_sigaction=yes ac_cv_func_sigaltstack=yes ac_cv_func_siginterrupt=yes ac_cv_func_sigprocmask=yes ac_cv_func_snprintf=yes ac_cv_func_stpcpy=no ac_cv_func_strchrnul=no ac_cv_func_strdup=yes ac_cv_func_strerror_r=yes ac_cv_func_strerror_r_char_p=no ac_cv_func_strndup=no ac_cv_func_strnlen=no ac_cv_func_strtol=yes ac_cv_func_strtoul=yes ac_cv_func_strverscmp=no ac_cv_func_times=yes ac_cv_func_unsetenv=yes ac_cv_func_vasnprintf=no ac_cv_func_vfork=yes ac_cv_func_vfork_works=yes ac_cv_func_vsnprintf=yes ac_cv_func_waitid=yes ac_cv_func_waitpid=yes ac_cv_func_wcrtomb=yes ac_cv_func_wcslen=yes ac_cv_func_wcsnlen=no ac_cv_func_wcwidth=yes ac_cv_gnu_library_2_1=no ac_cv_have_decl__Exit=yes ac_cv_have_decl__snprintf=no ac_cv_have_decl_accept=yes ac_cv_have_decl_acosl=yes ac_cv_have_decl_asinl=yes ac_cv_have_decl_atanl=yes ac_cv_have_decl_atoll=yes ac_cv_have_decl_bind=yes ac_cv_have_decl_btowc=yes ac_cv_have_decl_ceilf=yes ac_cv_have_decl_ceill=yes ac_cv_have_decl_chown=yes ac_cv_have_decl_clearerr_unlocked=no ac_cv_have_decl_clock=yes ac_cv_have_decl_connect=yes ac_cv_have_decl_cosl=yes ac_cv_have_decl_dup2=yes ac_cv_have_decl_endusershell=yes ac_cv_have_decl_expl=yes ac_cv_have_decl_fchdir=yes ac_cv_have_decl_fchownat=yes ac_cv_have_decl_fcntl=yes ac_cv_have_decl_feof_unlocked=no ac_cv_have_decl_ferror_unlocked=no ac_cv_have_decl_fflush_unlocked=no ac_cv_have_decl_fgets_unlocked=no ac_cv_have_decl_floorf=yes ac_cv_have_decl_floorl=yes ac_cv_have_decl_fputc_unlocked=no ac_cv_have_decl_fputs_unlocked=no ac_cv_have_decl_fread_unlocked=no ac_cv_have_decl_frexpl=yes ac_cv_have_decl_fseeko=yes ac_cv_have_decl_fstatat=yes ac_cv_have_decl_fsync=yes ac_cv_have_decl_ftello=yes ac_cv_have_decl_ftruncate=yes ac_cv_have_decl_fwrite_unlocked=no ac_cv_have_decl_getc_unlocked=yes ac_cv_have_decl_getchar_unlocked=yes ac_cv_have_decl_getcwd=yes ac_cv_have_decl_getdtablesize=yes ac_cv_have_decl_getenv=yes ac_cv_have_decl_getgroups=yes ac_cv_have_decl_gethostname=yes ac_cv_have_decl_getlogin=yes ac_cv_have_decl_getlogin_r=yes ac_cv_have_decl_getpagesize=yes ac_cv_have_decl_getpeername=yes ac_cv_have_decl_getrusage=yes ac_cv_have_decl_getsockname=yes ac_cv_have_decl_getsockopt=yes ac_cv_have_decl_getsubopt=yes ac_cv_have_decl_getusershell=yes ac_cv_have_decl_grantpt=yes ac_cv_have_decl_imaxabs=yes ac_cv_have_decl_imaxdiv=yes ac_cv_have_decl_ioctl=yes ac_cv_have_decl_iswblank=no ac_cv_have_decl_iswctype=yes ac_cv_have_decl_lchown=yes ac_cv_have_decl_ldexpl=yes ac_cv_have_decl_link=yes ac_cv_have_decl_listen=yes ac_cv_have_decl_logb=yes ac_cv_have_decl_logl=yes ac_cv_have_decl_lseek=yes ac_cv_have_decl_lstat=yes ac_cv_have_decl_mbrlen=yes ac_cv_have_decl_mbrtowc=yes ac_cv_have_decl_mbsinit=yes ac_cv_have_decl_mbsrtowcs=yes ac_cv_have_decl_mbswidth=no ac_cv_have_decl_mkfifo=yes ac_cv_have_decl_mknod=yes ac_cv_have_decl_mkstemp=yes ac_cv_have_decl_openat=yes ac_cv_have_decl_pipe=yes ac_cv_have_decl_popen=yes ac_cv_have_decl_posix_spawn=yes ac_cv_have_decl_posix_spawn_file_actions_addclose=yes ac_cv_have_decl_posix_spawn_file_actions_adddup2=yes ac_cv_have_decl_posix_spawn_file_actions_addopen=yes ac_cv_have_decl_posix_spawn_file_actions_destroy=yes ac_cv_have_decl_posix_spawn_file_actions_init=yes ac_cv_have_decl_posix_spawnattr_destroy=yes ac_cv_have_decl_posix_spawnattr_getflags=yes ac_cv_have_decl_posix_spawnattr_getpgroup=yes ac_cv_have_decl_posix_spawnattr_getschedparam=yes ac_cv_have_decl_posix_spawnattr_getschedpolicy=yes ac_cv_have_decl_posix_spawnattr_getsigdefault=yes ac_cv_have_decl_posix_spawnattr_getsigmask=yes ac_cv_have_decl_posix_spawnattr_init=yes ac_cv_have_decl_posix_spawnattr_setflags=yes ac_cv_have_decl_posix_spawnattr_setpgroup=yes ac_cv_have_decl_posix_spawnattr_setschedparam=yes ac_cv_have_decl_posix_spawnattr_setschedpolicy=yes ac_cv_have_decl_posix_spawnattr_setsigdefault=yes ac_cv_have_decl_posix_spawnattr_setsigmask=yes ac_cv_have_decl_posix_spawnp=yes ac_cv_have_decl_pread=yes ac_cv_have_decl_ptsname=yes ac_cv_have_decl_putc_unlocked=yes ac_cv_have_decl_putchar_unlocked=yes ac_cv_have_decl_pwrite=yes ac_cv_have_decl_readlink=yes ac_cv_have_decl_realpath=yes ac_cv_have_decl_recv=yes ac_cv_have_decl_recvfrom=yes ac_cv_have_decl_rmdir=yes ac_cv_have_decl_round=yes ac_cv_have_decl_roundf=yes ac_cv_have_decl_roundl=yes ac_cv_have_decl_send=yes ac_cv_have_decl_sendto=yes ac_cv_have_decl_setenv=yes ac_cv_have_decl_setsockopt=yes ac_cv_have_decl_setusershell=yes ac_cv_have_decl_shutdown=yes ac_cv_have_decl_sigaction=yes ac_cv_have_decl_sigaddset=yes ac_cv_have_decl_sigdelset=yes ac_cv_have_decl_sigemptyset=yes ac_cv_have_decl_sigfillset=yes ac_cv_have_decl_sigismember=yes ac_cv_have_decl_sigpending=yes ac_cv_have_decl_sigprocmask=yes ac_cv_have_decl_sinl=yes ac_cv_have_decl_sleep=yes ac_cv_have_decl_snprintf=yes ac_cv_have_decl_socket=yes ac_cv_have_decl_sqrtl=yes ac_cv_have_decl_stat=yes ac_cv_have_decl_strdup=yes ac_cv_have_decl_strerror_r=yes ac_cv_have_decl_strncat=yes ac_cv_have_decl_strndup=no ac_cv_have_decl_strnlen=no ac_cv_have_decl_strpbrk=yes ac_cv_have_decl_strsignal=yes ac_cv_have_decl_strtod=yes ac_cv_have_decl_strtoimax=yes ac_cv_have_decl_strtok_r=yes ac_cv_have_decl_strtoll=yes ac_cv_have_decl_strtoull=yes ac_cv_have_decl_strtoumax=yes ac_cv_have_decl_symlink=yes ac_cv_have_decl_sysconf=yes ac_cv_have_decl_tanl=yes ac_cv_have_decl_times=yes ac_cv_have_decl_tmpfile=yes ac_cv_have_decl_towctrans=yes ac_cv_have_decl_trunc=yes ac_cv_have_decl_truncf=yes ac_cv_have_decl_truncl=yes ac_cv_have_decl_ttyname_r=yes ac_cv_have_decl_unlink=yes ac_cv_have_decl_unlinkat=yes ac_cv_have_decl_unlockpt=yes ac_cv_have_decl_unsetenv=yes ac_cv_have_decl_usleep=yes ac_cv_have_decl_vsnprintf=yes ac_cv_have_decl_waitpid=yes ac_cv_have_decl_wcrtomb=yes ac_cv_have_decl_wcscat=yes ac_cv_have_decl_wcschr=yes ac_cv_have_decl_wcscmp=yes ac_cv_have_decl_wcscoll=yes ac_cv_have_decl_wcscpy=yes ac_cv_have_decl_wcscspn=yes ac_cv_have_decl_wcslen=yes ac_cv_have_decl_wcsncat=yes ac_cv_have_decl_wcsncmp=yes ac_cv_have_decl_wcsncpy=yes ac_cv_have_decl_wcspbrk=yes ac_cv_have_decl_wcsrchr=yes ac_cv_have_decl_wcsrtombs=yes ac_cv_have_decl_wcsspn=yes ac_cv_have_decl_wcsstr=yes ac_cv_have_decl_wcstok=yes ac_cv_have_decl_wcswidth=yes ac_cv_have_decl_wcsxfrm=yes ac_cv_have_decl_wctob=yes ac_cv_have_decl_wctrans=yes ac_cv_have_decl_wctype=yes ac_cv_have_decl_wcwidth=yes ac_cv_have_decl_wmemchr=yes ac_cv_have_decl_wmemcmp=yes ac_cv_have_decl_wmemcpy=yes ac_cv_have_decl_wmemmove=yes ac_cv_have_decl_wmemset=yes ac_cv_header_features_h=no ac_cv_header_getopt_h=yes ac_cv_header_inttypes_h=yes ac_cv_header_locale_h=yes ac_cv_header_math_h=yes ac_cv_header_memory_h=yes ac_cv_header_minix_config_h=no ac_cv_header_sched_h=yes ac_cv_header_spawn_h=yes ac_cv_header_stat_broken=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_bitypes_h=no ac_cv_header_sys_inttypes_h=yes ac_cv_header_sys_ioctl_h=yes ac_cv_header_sys_mman_h=yes ac_cv_header_sys_resource_h=yes ac_cv_header_sys_socket_h=yes ac_cv_header_sys_stat_h=yes ac_cv_header_sys_time_h=yes ac_cv_header_sys_times_h=yes ac_cv_header_sys_types_h=yes ac_cv_header_sys_wait_h=yes ac_cv_header_unistd_h=yes ac_cv_header_vfork_h=no ac_cv_header_wchar_h=yes ac_cv_header_wctype_h=yes ac_cv_host=sparc-sun-solaris2.10 ac_cv_lib_error_at_line=no ac_cv_lib_lex=-lfl ac_cv_member_struct_sigaction_sa_sigaction=yes ac_cv_member_struct_sockaddr_storage_ss_family=yes ac_cv_objext=o ac_cv_path_EGREP='/usr/xpg4/bin/grep -E' ac_cv_path_GMSGFMT=/opt/sfw/bin/msgfmt ac_cv_path_GREP=/usr/xpg4/bin/grep ac_cv_path_M4=/usr2/gnu/bin/m4 ac_cv_path_MSGFMT=/opt/sfw/bin/msgfmt ac_cv_path_MSGMERGE=: ac_cv_path_XGETTEXT=: ac_cv_path_XSLTPROC=/usr/bin/xsltproc ac_cv_path_install='/opt/sfw/bin/ginstall -c' ac_cv_path_mkdir=/opt/sfw/bin/gmkdir ac_cv_prog_AWK=gawk ac_cv_prog_CPP='/usr/bin/cc -m64 -xc99=all -E' ac_cv_prog_HAVE_JAVAC_IN_PATH=yes ac_cv_prog_HAVE_JAVA_IN_PATH=yes ac_cv_prog_LEX=flex ac_cv_prog_YACC='bison -y' ac_cv_prog_ac_ct_CC='/usr/bin/cc -m64' ac_cv_prog_ac_ct_CXX=g++ ac_cv_prog_ac_ct_RANLIB=ranlib ac_cv_prog_cc__usr_bin_cc_c_o=yes ac_cv_prog_cc_c89= ac_cv_prog_cc_c99=-xc99=all ac_cv_prog_cc_g=yes ac_cv_prog_cc_stdc=-xc99=all ac_cv_prog_cxx_g=yes ac_cv_prog_gnu_m4_debugfile=--debugfile ac_cv_prog_gnu_m4_gnu=yes ac_cv_prog_lex_root=lex.yy ac_cv_prog_lex_yytext_pointer=yes ac_cv_prog_make_make_set=yes ac_cv_safe_to_define___extensions__=yes ac_cv_type__Bool=yes ac_cv_type_clock_t=yes ac_cv_type_long_long_int=yes ac_cv_type_mbstate_t=yes ac_cv_type_mode_t=yes ac_cv_type_nlink_t=yes ac_cv_type_pid_t=yes ac_cv_type_posix_spawn_file_actions_t=yes ac_cv_type_posix_spawnattr_t=yes ac_cv_type_ptrdiff_t=yes ac_cv_type_sa_family_t=yes ac_cv_type_sig_atomic_t=yes ac_cv_type_size_t=yes ac_cv_type_socklen_t=yes ac_cv_type_struct_sockaddr_storage=yes ac_cv_type_struct_tms=yes ac_cv_type_uid_t=yes ac_cv_type_unsigned_long_long_int=yes ac_cv_type_volatile_sig_atomic_t=yes ac_cv_working_alloca_h=yes acl_cv_hardcode_direct=no acl_cv_hardcode_libdir_flag_spec='-R$libdir' acl_cv_hardcode_libdir_separator= acl_cv_hardcode_minus_L=no acl_cv_libext=a acl_cv_libname_spec='lib$name' acl_cv_library_names_spec='$libname$shrext' acl_cv_path_LD=/usr/ccs/bin/ld acl_cv_prog_gnu_ld=no acl_cv_rpath=done acl_cv_shlibext=so acl_cv_wl=-Wl, am_cv_CC_dependencies_compiler_type=none am_cv_CXX_dependencies_compiler_type=gcc3 am_cv_func_iconv=yes am_cv_func_iconv_works=no am_cv_langinfo_codeset=yes am_cv_lib_iconv=no bison_cv_cxx_works=no gl_cv_bitsizeof_ptrdiff_t=64 gl_cv_bitsizeof_sig_atomic_t=32 gl_cv_bitsizeof_size_t=64 gl_cv_bitsizeof_wchar_t=32 gl_cv_bitsizeof_wint_t=32 gl_cv_c_inline_effective=yes gl_cv_c_multiarch=no gl_cv_cc_float_expbit0='word 0 bit 23' gl_cv_decl_ioctl_in_sys_ioctl_h=no gl_cv_decl_null_works=yes gl_cv_double_slash_root=no gl_cv_func_dup2_works=yes gl_cv_func_fcntl_f_dupfd_cloexec=no gl_cv_func_fcntl_f_dupfd_works=yes gl_cv_func_fopen_slash=yes gl_cv_func_fprintf_posix=no gl_cv_func_frexp_no_libm=yes gl_cv_func_frexp_works=yes gl_cv_func_frexpl_no_libm=no gl_cv_func_getopt_gnu=no gl_cv_func_getopt_posix=yes gl_cv_func_ioctl_posix_signature=yes gl_cv_func_isnand_no_libm=yes gl_cv_func_isnanf_no_libm=yes gl_cv_func_isnanf_works=yes gl_cv_func_isnanl_no_libm=yes gl_cv_func_isnanl_works=yes gl_cv_func_iswcntrl_works=yes gl_cv_func_ldexp_no_libm=yes gl_cv_func_ldexpl_in_libm=yes gl_cv_func_ldexpl_no_libm=no gl_cv_func_ldexpl_works=yes gl_cv_func_malloc_posix=yes gl_cv_func_mbrtowc_incomplete_state='guessing yes' gl_cv_func_mbrtowc_nul_retval='guessing yes' gl_cv_func_mbrtowc_null_arg1='guessing no' gl_cv_func_mbrtowc_null_arg2='guessing yes' gl_cv_func_mbrtowc_retval='guessing no' gl_cv_func_mbrtowc_sanitycheck='guessing yes' gl_cv_func_memchr_works=yes gl_cv_func_open_slash=yes gl_cv_func_posix_spawn_works=yes gl_cv_func_printf_directive_a=no gl_cv_func_printf_directive_f=yes gl_cv_func_printf_directive_ls=no gl_cv_func_printf_directive_n=yes gl_cv_func_printf_enomem=yes gl_cv_func_printf_flag_grouping=yes gl_cv_func_printf_flag_leftadjust=yes gl_cv_func_printf_flag_zero=no gl_cv_func_printf_infinite=yes gl_cv_func_printf_infinite_long_double=yes gl_cv_func_printf_long_double=yes gl_cv_func_printf_positions=yes gl_cv_func_printf_precision=no gl_cv_func_printf_sizes_c99=yes gl_cv_func_signbit=yes gl_cv_func_signbit_gcc=no gl_cv_func_sigprocmask=1 gl_cv_func_snprintf_directive_n=yes gl_cv_func_snprintf_posix=no gl_cv_func_snprintf_retval_c99=yes gl_cv_func_snprintf_size1=yes gl_cv_func_snprintf_truncation_c99=yes gl_cv_func_snprintf_usable=yes gl_cv_func_spawnattr_setschedparam=yes gl_cv_func_spawnattr_setschedpolicy=yes gl_cv_func_sprintf_posix=no gl_cv_func_stat_dir_slash=yes gl_cv_func_stat_file_slash=yes gl_cv_func_unsetenv_works=no gl_cv_func_vfprintf_posix=no gl_cv_func_vsnprintf_posix=no gl_cv_func_vsnprintf_usable=yes gl_cv_func_vsnprintf_zerosize_c99=yes gl_cv_func_vsprintf_posix=no gl_cv_func_wcwidth_works=yes gl_cv_func_working_strerror=yes gl_cv_have_include_next=yes gl_cv_have_raw_decl__Exit=yes gl_cv_have_raw_decl_accept4=no gl_cv_have_raw_decl_accept=yes gl_cv_have_raw_decl_acosl=yes gl_cv_have_raw_decl_asinl=yes gl_cv_have_raw_decl_atanl=yes gl_cv_have_raw_decl_atoll=yes gl_cv_have_raw_decl_bind=yes gl_cv_have_raw_decl_btowc=yes gl_cv_have_raw_decl_canonicalize_file_name=no gl_cv_have_raw_decl_ceilf=yes gl_cv_have_raw_decl_ceill=yes gl_cv_have_raw_decl_chown=yes gl_cv_have_raw_decl_connect=yes gl_cv_have_raw_decl_cosl=yes gl_cv_have_raw_decl_dprintf=no gl_cv_have_raw_decl_dup2=yes gl_cv_have_raw_decl_dup3=no gl_cv_have_raw_decl_endusershell=yes gl_cv_have_raw_decl_environ=no gl_cv_have_raw_decl_euidaccess=no gl_cv_have_raw_decl_expl=yes gl_cv_have_raw_decl_faccessat=no gl_cv_have_raw_decl_fchdir=yes gl_cv_have_raw_decl_fchmodat=no gl_cv_have_raw_decl_fchownat=yes gl_cv_have_raw_decl_fcntl=yes gl_cv_have_raw_decl_floorf=yes gl_cv_have_raw_decl_floorl=yes gl_cv_have_raw_decl_fpurge=no gl_cv_have_raw_decl_frexpl=yes gl_cv_have_raw_decl_fseeko=yes gl_cv_have_raw_decl_fstatat=yes gl_cv_have_raw_decl_fsync=yes gl_cv_have_raw_decl_ftello=yes gl_cv_have_raw_decl_ftruncate=yes gl_cv_have_raw_decl_futimens=no gl_cv_have_raw_decl_getcwd=yes gl_cv_have_raw_decl_getdelim=no gl_cv_have_raw_decl_getdomainname=no gl_cv_have_raw_decl_getdtablesize=yes gl_cv_have_raw_decl_getgroups=yes gl_cv_have_raw_decl_gethostname=yes gl_cv_have_raw_decl_getline=no gl_cv_have_raw_decl_getloadavg=no gl_cv_have_raw_decl_getlogin=yes gl_cv_have_raw_decl_getlogin_r=yes gl_cv_have_raw_decl_getpagesize=yes gl_cv_have_raw_decl_getpeername=yes gl_cv_have_raw_decl_getsockname=yes gl_cv_have_raw_decl_getsockopt=yes gl_cv_have_raw_decl_getsubopt=yes gl_cv_have_raw_decl_getusershell=yes gl_cv_have_raw_decl_grantpt=yes gl_cv_have_raw_decl_imaxabs=yes gl_cv_have_raw_decl_imaxdiv=yes gl_cv_have_raw_decl_initstat_r=no gl_cv_have_raw_decl_ioctl=yes gl_cv_have_raw_decl_iswctype=yes gl_cv_have_raw_decl_lchmod=no gl_cv_have_raw_decl_lchown=yes gl_cv_have_raw_decl_ldexpl=yes gl_cv_have_raw_decl_link=yes gl_cv_have_raw_decl_linkat=no gl_cv_have_raw_decl_listen=yes gl_cv_have_raw_decl_logb=yes gl_cv_have_raw_decl_logl=yes gl_cv_have_raw_decl_lseek=yes gl_cv_have_raw_decl_lstat=yes gl_cv_have_raw_decl_mbrlen=yes gl_cv_have_raw_decl_mbrtowc=yes gl_cv_have_raw_decl_mbsinit=yes gl_cv_have_raw_decl_mbsnrtowcs=no gl_cv_have_raw_decl_mbsrtowcs=yes gl_cv_have_raw_decl_memmem=no gl_cv_have_raw_decl_mempcpy=no gl_cv_have_raw_decl_memrchr=no gl_cv_have_raw_decl_mkdirat=no gl_cv_have_raw_decl_mkdtemp=no gl_cv_have_raw_decl_mkfifo=yes gl_cv_have_raw_decl_mkfifoat=no gl_cv_have_raw_decl_mknod=yes gl_cv_have_raw_decl_mknodat=no gl_cv_have_raw_decl_mkostemp=no gl_cv_have_raw_decl_mkostemps=no gl_cv_have_raw_decl_mkstemp=yes gl_cv_have_raw_decl_mkstemps=no gl_cv_have_raw_decl_openat=yes gl_cv_have_raw_decl_pipe2=no gl_cv_have_raw_decl_pipe=yes gl_cv_have_raw_decl_popen=yes gl_cv_have_raw_decl_posix_spawn=yes gl_cv_have_raw_decl_posix_spawn_file_actions_addclose=yes gl_cv_have_raw_decl_posix_spawn_file_actions_adddup2=yes gl_cv_have_raw_decl_posix_spawn_file_actions_addopen=yes gl_cv_have_raw_decl_posix_spawn_file_actions_destroy=yes gl_cv_have_raw_decl_posix_spawn_file_actions_init=yes gl_cv_have_raw_decl_posix_spawnattr_destroy=yes gl_cv_have_raw_decl_posix_spawnattr_getflags=yes gl_cv_have_raw_decl_posix_spawnattr_getpgroup=yes gl_cv_have_raw_decl_posix_spawnattr_getschedparam=yes gl_cv_have_raw_decl_posix_spawnattr_getschedpolicy=yes gl_cv_have_raw_decl_posix_spawnattr_getsigdefault=yes gl_cv_have_raw_decl_posix_spawnattr_getsigmask=yes gl_cv_have_raw_decl_posix_spawnattr_init=yes gl_cv_have_raw_decl_posix_spawnattr_setflags=yes gl_cv_have_raw_decl_posix_spawnattr_setpgroup=yes gl_cv_have_raw_decl_posix_spawnattr_setschedparam=yes gl_cv_have_raw_decl_posix_spawnattr_setschedpolicy=yes gl_cv_have_raw_decl_posix_spawnattr_setsigdefault=yes gl_cv_have_raw_decl_posix_spawnattr_setsigmask=yes gl_cv_have_raw_decl_posix_spawnp=yes gl_cv_have_raw_decl_pread=yes gl_cv_have_raw_decl_ptsname=yes gl_cv_have_raw_decl_pwrite=yes gl_cv_have_raw_decl_random_r=no gl_cv_have_raw_decl_rawmemchr=no gl_cv_have_raw_decl_readlink=yes gl_cv_have_raw_decl_readlinkat=no gl_cv_have_raw_decl_realpath=yes gl_cv_have_raw_decl_recv=yes gl_cv_have_raw_decl_recvfrom=yes gl_cv_have_raw_decl_renameat=no gl_cv_have_raw_decl_rmdir=yes gl_cv_have_raw_decl_round=yes gl_cv_have_raw_decl_roundf=yes gl_cv_have_raw_decl_roundl=yes gl_cv_have_raw_decl_rpmatch=no gl_cv_have_raw_decl_send=yes gl_cv_have_raw_decl_sendto=yes gl_cv_have_raw_decl_setenv=yes gl_cv_have_raw_decl_setsockopt=yes gl_cv_have_raw_decl_setstate_r=no gl_cv_have_raw_decl_setusershell=yes gl_cv_have_raw_decl_shutdown=yes gl_cv_have_raw_decl_sigaction=yes gl_cv_have_raw_decl_sigaddset=yes gl_cv_have_raw_decl_sigdelset=yes gl_cv_have_raw_decl_sigemptyset=yes gl_cv_have_raw_decl_sigfillset=yes gl_cv_have_raw_decl_sigismember=yes gl_cv_have_raw_decl_sigpending=yes gl_cv_have_raw_decl_sigprocmask=yes gl_cv_have_raw_decl_sinl=yes gl_cv_have_raw_decl_sleep=yes gl_cv_have_raw_decl_snprintf=yes gl_cv_have_raw_decl_socket=yes gl_cv_have_raw_decl_sqrtl=yes gl_cv_have_raw_decl_srandom_r=no gl_cv_have_raw_decl_stat=yes gl_cv_have_raw_decl_stpcpy=no gl_cv_have_raw_decl_stpncpy=no gl_cv_have_raw_decl_strcasestr=no gl_cv_have_raw_decl_strchrnul=no gl_cv_have_raw_decl_strdup=yes gl_cv_have_raw_decl_strerror_r=yes gl_cv_have_raw_decl_strncat=yes gl_cv_have_raw_decl_strndup=no gl_cv_have_raw_decl_strnlen=no gl_cv_have_raw_decl_strpbrk=yes gl_cv_have_raw_decl_strsep=no gl_cv_have_raw_decl_strsignal=yes gl_cv_have_raw_decl_strtod=yes gl_cv_have_raw_decl_strtoimax=yes gl_cv_have_raw_decl_strtok_r=yes gl_cv_have_raw_decl_strtoll=yes gl_cv_have_raw_decl_strtoull=yes gl_cv_have_raw_decl_strtoumax=yes gl_cv_have_raw_decl_strverscmp=no gl_cv_have_raw_decl_symlink=yes gl_cv_have_raw_decl_symlinkat=no gl_cv_have_raw_decl_tanl=yes gl_cv_have_raw_decl_tmpfile=yes gl_cv_have_raw_decl_towctrans=yes gl_cv_have_raw_decl_trunc=yes gl_cv_have_raw_decl_truncf=yes gl_cv_have_raw_decl_truncl=yes gl_cv_have_raw_decl_ttyname_r=yes gl_cv_have_raw_decl_unlink=yes gl_cv_have_raw_decl_unlinkat=yes gl_cv_have_raw_decl_unlockpt=yes gl_cv_have_raw_decl_unsetenv=yes gl_cv_have_raw_decl_usleep=yes gl_cv_have_raw_decl_utimensat=no gl_cv_have_raw_decl_vdprintf=no gl_cv_have_raw_decl_vsnprintf=yes gl_cv_have_raw_decl_waitpid=yes gl_cv_have_raw_decl_wcpcpy=no gl_cv_have_raw_decl_wcpncpy=no gl_cv_have_raw_decl_wcrtomb=yes gl_cv_have_raw_decl_wcscasecmp=no gl_cv_have_raw_decl_wcscat=yes gl_cv_have_raw_decl_wcschr=yes gl_cv_have_raw_decl_wcscmp=yes gl_cv_have_raw_decl_wcscoll=yes gl_cv_have_raw_decl_wcscpy=yes gl_cv_have_raw_decl_wcscspn=yes gl_cv_have_raw_decl_wcsdup=no gl_cv_have_raw_decl_wcslen=yes gl_cv_have_raw_decl_wcsncasecmp=no gl_cv_have_raw_decl_wcsncat=yes gl_cv_have_raw_decl_wcsncmp=yes gl_cv_have_raw_decl_wcsncpy=yes gl_cv_have_raw_decl_wcsnlen=no gl_cv_have_raw_decl_wcsnrtombs=no gl_cv_have_raw_decl_wcspbrk=yes gl_cv_have_raw_decl_wcsrchr=yes gl_cv_have_raw_decl_wcsrtombs=yes gl_cv_have_raw_decl_wcsspn=yes gl_cv_have_raw_decl_wcsstr=yes gl_cv_have_raw_decl_wcstok=yes gl_cv_have_raw_decl_wcswidth=yes gl_cv_have_raw_decl_wcsxfrm=yes gl_cv_have_raw_decl_wctob=yes gl_cv_have_raw_decl_wctrans=yes gl_cv_have_raw_decl_wctype=yes gl_cv_have_raw_decl_wcwidth=yes gl_cv_have_raw_decl_wmemchr=yes gl_cv_have_raw_decl_wmemcmp=yes gl_cv_have_raw_decl_wmemcpy=yes gl_cv_have_raw_decl_wmemmove=yes gl_cv_have_raw_decl_wmemset=yes gl_cv_header_errno_h_complete=yes gl_cv_header_inttypes_h=yes gl_cv_header_math_huge_val_works=yes gl_cv_header_math_nan_works=yes gl_cv_header_stdint_h=yes gl_cv_header_sys_socket_h_selfcontained=yes gl_cv_header_wchar_h_correct_inline=yes gl_cv_header_working_fcntl_h=yes gl_cv_header_working_inttypes_h=no gl_cv_header_working_stdint_h=no gl_cv_next_fcntl_h='' gl_cv_next_getopt_h='' gl_cv_next_inttypes_h='' gl_cv_next_math_h='' gl_cv_next_signal_h='' gl_cv_next_spawn_h='' gl_cv_next_stdint_h='' gl_cv_next_stdio_h='' gl_cv_next_stdlib_h='' gl_cv_next_string_h='' gl_cv_next_sys_ioctl_h='' gl_cv_next_sys_socket_h='' gl_cv_next_sys_stat_h='' gl_cv_next_sys_wait_h='' gl_cv_next_time_h='' gl_cv_next_unistd_h='' gl_cv_next_wchar_h='' gl_cv_next_wctype_h='' gl_cv_pragma_columns=no gl_cv_prog_as_underscore=no gl_cv_promoted_mode_t=mode_t gl_cv_rpl_alloca=no gl_cv_size_max=yes gl_cv_solaris_64bit=yes gl_cv_sys_struct_timespec_in_time_h=yes gl_cv_test_INT32_MAX_LT_INTMAX_MAX=yes gl_cv_test_INT64_MAX_EQ_LONG_MAX=yes gl_cv_test_UINT32_MAX_LT_UINTMAX_MAX=yes gl_cv_test_UINT64_MAX_EQ_ULONG_MAX=yes gl_cv_type_ptrdiff_t_signed=yes gl_cv_type_ptrdiff_t_suffix=l gl_cv_type_sig_atomic_t_signed=yes gl_cv_type_sig_atomic_t_suffix= gl_cv_type_size_t_signed=no gl_cv_type_size_t_suffix=ul gl_cv_type_wchar_t_signed=yes gl_cv_type_wchar_t_suffix= gl_cv_type_wctrans_t=yes gl_cv_type_wctype_t=yes gl_cv_type_wint_t_signed=yes gl_cv_type_wint_t_suffix= gt_cv_c_intmax_t=yes gt_cv_c_wchar_t=yes gt_cv_c_wint_t=yes gt_cv_func_CFLocaleCopyCurrent=no gt_cv_func_CFPreferencesCopyAppValue=no gt_cv_func_gnugettext2_libc=no gt_cv_func_gnugettext2_libintl=no gt_cv_func_unsetenv_ret=int gt_cv_inttypes_pri_broken=no gt_cv_locale_fr_utf8=none gt_cv_locale_ja=none gt_cv_locale_zh_CN=none gt_cv_var_environ_declaration=no ## ----------------- ## ## Output variables. ## ## ----------------- ## ACLOCAL='${SHELL} /archive/sparc-solaris/bison-2.5/build-aux/missing --run aclocal-1.11' ALLOCA='' ALLOCA_H='' AMDEPBACKSLASH='\' AMDEP_FALSE='#' AMDEP_TRUE='' AMTAR='${SHELL} /archive/sparc-solaris/bison-2.5/build-aux/missing --run tar' APPLE_UNIVERSAL_BUILD='0' ASM_SYMBOL_PREFIX='""' AUTOCONF='${SHELL} /archive/sparc-solaris/bison-2.5/build-aux/missing --run autoconf' AUTOHEADER='${SHELL} /archive/sparc-solaris/bison-2.5/build-aux/missing --run autoheader' AUTOM4TE='${SHELL} /archive/sparc-solaris/bison-2.5/build-aux/missing --run autom4te' AUTOMAKE='${SHELL} /archive/sparc-solaris/bison-2.5/build-aux/missing --run automake-1.11' AWK='gawk' BISON_CXX_WORKS='exit 77' BISON_CXX_WORKS_FALSE='' BISON_CXX_WORKS_TRUE='#' BISON_LOCALEDIR='' BITSIZEOF_PTRDIFF_T='64' BITSIZEOF_SIG_ATOMIC_T='32' BITSIZEOF_SIZE_T='64' BITSIZEOF_WCHAR_T='32' BITSIZEOF_WINT_T='32' CC='/usr/bin/cc -m64 -xc99=all' CCDEPMODE='depmode=none' CFLAGS='-g' CLASSPATH='' CLASSPATH_SEPARATOR=':' CONFIG_INCLUDE='lib/config.h' CONF_JAVA='java' CONF_JAVAC='javac -source 1.3' CPP='/usr/bin/cc -m64 -xc99=all -E' CPPFLAGS='' CXX='g++' CXXDEPMODE='depmode=gcc3' CXXFLAGS='-g -O2' CYGPATH_W='echo' DEFS='' DEPDIR='.deps' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='/usr/xpg4/bin/grep -E' EMULTIHOP_HIDDEN='' EMULTIHOP_VALUE='' ENOLINK_HIDDEN='' ENOLINK_VALUE='' EOVERFLOW_HIDDEN='' EOVERFLOW_VALUE='' ERRNO_H='' EXEEXT='' FLOAT_H='' GCC='' GETOPT_H='getopt.h' GETTEXT_MACRO_VERSION='0.18' GLIBC21='no' GL_COND_LIBTOOL_FALSE='' GL_COND_LIBTOOL_TRUE='#' GL_GENERATE_ALLOCA_H_FALSE='' GL_GENERATE_ALLOCA_H_TRUE='#' GL_GENERATE_ERRNO_H_FALSE='' GL_GENERATE_ERRNO_H_TRUE='#' GL_GENERATE_FLOAT_H_FALSE='' GL_GENERATE_FLOAT_H_TRUE='#' GL_GENERATE_SCHED_H_FALSE='' GL_GENERATE_SCHED_H_TRUE='#' GL_GENERATE_STDBOOL_H_FALSE='' GL_GENERATE_STDBOOL_H_TRUE='#' GL_GENERATE_STDDEF_H_FALSE='' GL_GENERATE_STDDEF_H_TRUE='#' GL_GENERATE_STDINT_H_FALSE='#' GL_GENERATE_STDINT_H_TRUE='' GMSGFMT='/opt/sfw/bin/msgfmt' GMSGFMT_015=':' GNULIB_ACCEPT4='0' GNULIB_ACCEPT='0' GNULIB_ACOSL='0' GNULIB_ASINL='0' GNULIB_ATANL='0' GNULIB_ATOLL='0' GNULIB_BIND='0' GNULIB_BTOWC='0' GNULIB_CALLOC_POSIX='1' GNULIB_CANONICALIZE_FILE_NAME='0' GNULIB_CEIL='0' GNULIB_CEILF='0' GNULIB_CEILL='0' GNULIB_CHOWN='0' GNULIB_CLOSE='1' GNULIB_CONNECT='0' GNULIB_COSL='0' GNULIB_DPRINTF='0' GNULIB_DUP2='1' GNULIB_DUP3='0' GNULIB_ENVIRON='1' GNULIB_EUIDACCESS='0' GNULIB_EXPL='0' GNULIB_FACCESSAT='0' GNULIB_FCHDIR='0' GNULIB_FCHMODAT='0' GNULIB_FCHOWNAT='0' GNULIB_FCLOSE='1' GNULIB_FCNTL='1' GNULIB_FFLUSH='0' GNULIB_FLOOR='0' GNULIB_FLOORF='0' GNULIB_FLOORL='0' GNULIB_FOPEN='1' GNULIB_FPRINTF='1' GNULIB_FPRINTF_POSIX='1' GNULIB_FPURGE='0' GNULIB_FPUTC='1' GNULIB_FPUTS='1' GNULIB_FREOPEN='0' GNULIB_FREXP='1' GNULIB_FREXPL='1' GNULIB_FSEEK='0' GNULIB_FSEEKO='0' GNULIB_FSTATAT='0' GNULIB_FSYNC='0' GNULIB_FTELL='0' GNULIB_FTELLO='0' GNULIB_FTRUNCATE='0' GNULIB_FUTIMENS='0' GNULIB_FWRITE='1' GNULIB_GETCWD='0' GNULIB_GETDELIM='0' GNULIB_GETDOMAINNAME='0' GNULIB_GETDTABLESIZE='1' GNULIB_GETGROUPS='0' GNULIB_GETHOSTNAME='0' GNULIB_GETLINE='0' GNULIB_GETLOADAVG='0' GNULIB_GETLOGIN='0' GNULIB_GETLOGIN_R='0' GNULIB_GETPAGESIZE='0' GNULIB_GETPEERNAME='0' GNULIB_GETSOCKNAME='0' GNULIB_GETSOCKOPT='0' GNULIB_GETSUBOPT='0' GNULIB_GETUSERSHELL='0' GNULIB_GRANTPT='0' GNULIB_IMAXABS='0' GNULIB_IMAXDIV='0' GNULIB_IOCTL='1' GNULIB_ISFINITE='0' GNULIB_ISINF='0' GNULIB_ISNAN='1' GNULIB_ISNAND='1' GNULIB_ISNANF='1' GNULIB_ISNANL='1' GNULIB_ISWBLANK='1' GNULIB_ISWCTYPE='0' GNULIB_LCHMOD='0' GNULIB_LCHOWN='0' GNULIB_LDEXPL='1' GNULIB_LINK='0' GNULIB_LINKAT='0' GNULIB_LISTEN='0' GNULIB_LOGB='0' GNULIB_LOGL='0' GNULIB_LSEEK='0' GNULIB_LSTAT='0' GNULIB_MALLOC_POSIX='1' GNULIB_MBRLEN='0' GNULIB_MBRTOWC='1' GNULIB_MBSCASECMP='0' GNULIB_MBSCASESTR='0' GNULIB_MBSCHR='1' GNULIB_MBSCSPN='0' GNULIB_MBSINIT='1' GNULIB_MBSLEN='0' GNULIB_MBSNCASECMP='0' GNULIB_MBSNLEN='0' GNULIB_MBSNRTOWCS='0' GNULIB_MBSPBRK='0' GNULIB_MBSPCASECMP='0' GNULIB_MBSRCHR='1' GNULIB_MBSRTOWCS='0' GNULIB_MBSSEP='0' GNULIB_MBSSPN='0' GNULIB_MBSSTR='0' GNULIB_MBSTOK_R='0' GNULIB_MBTOWC='0' GNULIB_MEMCHR='1' GNULIB_MEMMEM='0' GNULIB_MEMPCPY='0' GNULIB_MEMRCHR='0' GNULIB_MKDIRAT='0' GNULIB_MKDTEMP='0' GNULIB_MKFIFO='0' GNULIB_MKFIFOAT='0' GNULIB_MKNOD='0' GNULIB_MKNODAT='0' GNULIB_MKOSTEMP='0' GNULIB_MKOSTEMPS='0' GNULIB_MKSTEMP='0' GNULIB_MKSTEMPS='0' GNULIB_MKTIME='0' GNULIB_NANOSLEEP='0' GNULIB_NONBLOCKING='1' GNULIB_OBSTACK_PRINTF='0' GNULIB_OBSTACK_PRINTF_POSIX='0' GNULIB_OPEN='1' GNULIB_OPENAT='0' GNULIB_PERROR='1' GNULIB_PIPE2='1' GNULIB_PIPE='1' GNULIB_POPEN='0' GNULIB_POSIX_SPAWN='0' GNULIB_POSIX_SPAWNATTR_DESTROY='1' GNULIB_POSIX_SPAWNATTR_GETFLAGS='0' GNULIB_POSIX_SPAWNATTR_GETPGROUP='0' GNULIB_POSIX_SPAWNATTR_GETSCHEDPARAM='0' GNULIB_POSIX_SPAWNATTR_GETSCHEDPOLICY='0' GNULIB_POSIX_SPAWNATTR_GETSIGDEFAULT='0' GNULIB_POSIX_SPAWNATTR_GETSIGMASK='0' GNULIB_POSIX_SPAWNATTR_INIT='1' GNULIB_POSIX_SPAWNATTR_SETFLAGS='1' GNULIB_POSIX_SPAWNATTR_SETPGROUP='0' GNULIB_POSIX_SPAWNATTR_SETSCHEDPARAM='0' GNULIB_POSIX_SPAWNATTR_SETSCHEDPOLICY='0' GNULIB_POSIX_SPAWNATTR_SETSIGDEFAULT='0' GNULIB_POSIX_SPAWNATTR_SETSIGMASK='1' GNULIB_POSIX_SPAWNP='1' GNULIB_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE='1' GNULIB_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2='1' GNULIB_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN='1' GNULIB_POSIX_SPAWN_FILE_ACTIONS_DESTROY='1' GNULIB_POSIX_SPAWN_FILE_ACTIONS_INIT='1' GNULIB_PREAD='0' GNULIB_PRINTF='1' GNULIB_PRINTF_POSIX='1' GNULIB_PTSNAME='0' GNULIB_PUTC='1' GNULIB_PUTCHAR='1' GNULIB_PUTENV='0' GNULIB_PUTS='1' GNULIB_PWRITE='0' GNULIB_RANDOM_R='0' GNULIB_RAWMEMCHR='1' GNULIB_READLINK='0' GNULIB_READLINKAT='0' GNULIB_REALLOC_POSIX='1' GNULIB_REALPATH='0' GNULIB_RECV='0' GNULIB_RECVFROM='0' GNULIB_REMOVE='0' GNULIB_RENAME='0' GNULIB_RENAMEAT='0' GNULIB_RMDIR='0' GNULIB_ROUND='0' GNULIB_ROUNDF='0' GNULIB_ROUNDL='0' GNULIB_RPMATCH='0' GNULIB_SEND='0' GNULIB_SENDTO='0' GNULIB_SETENV='0' GNULIB_SETSOCKOPT='0' GNULIB_SHUTDOWN='0' GNULIB_SIGACTION='1' GNULIB_SIGNAL_H_SIGPIPE='0' GNULIB_SIGNBIT='1' GNULIB_SIGPROCMASK='1' GNULIB_SINL='0' GNULIB_SLEEP='0' GNULIB_SNPRINTF='1' GNULIB_SOCKET='0' GNULIB_SPRINTF_POSIX='1' GNULIB_SQRTL='0' GNULIB_STAT='1' GNULIB_STDIO_H_SIGPIPE='0' GNULIB_STPCPY='1' GNULIB_STPNCPY='0' GNULIB_STRCASESTR='0' GNULIB_STRCHRNUL='1' GNULIB_STRDUP='1' GNULIB_STRERROR='1' GNULIB_STRERROR_R='0' GNULIB_STRNCAT='0' GNULIB_STRNDUP='1' GNULIB_STRNLEN='1' GNULIB_STRPBRK='0' GNULIB_STRPTIME='0' GNULIB_STRSEP='0' GNULIB_STRSIGNAL='0' GNULIB_STRSTR='0' GNULIB_STRTOD='0' GNULIB_STRTOIMAX='0' GNULIB_STRTOK_R='0' GNULIB_STRTOLL='0' GNULIB_STRTOULL='0' GNULIB_STRTOUMAX='0' GNULIB_STRVERSCMP='1' GNULIB_SYMLINK='0' GNULIB_SYMLINKAT='0' GNULIB_SYSTEM_POSIX='0' GNULIB_TANL='0' GNULIB_TIMEGM='0' GNULIB_TIME_R='0' GNULIB_TMPFILE='0' GNULIB_TOWCTRANS='0' GNULIB_TRUNC='0' GNULIB_TRUNCF='0' GNULIB_TRUNCL='0' GNULIB_TTYNAME_R='0' GNULIB_UNISTD_H_GETOPT='1' GNULIB_UNISTD_H_SIGPIPE='0' GNULIB_UNLINK='0' GNULIB_UNLINKAT='0' GNULIB_UNLOCKPT='0' GNULIB_UNSETENV='1' GNULIB_USLEEP='0' GNULIB_UTIMENSAT='0' GNULIB_VASPRINTF='0' GNULIB_VDPRINTF='0' GNULIB_VFPRINTF='1' GNULIB_VFPRINTF_POSIX='1' GNULIB_VPRINTF='1' GNULIB_VPRINTF_POSIX='0' GNULIB_VSNPRINTF='1' GNULIB_VSPRINTF_POSIX='1' GNULIB_WAITPID='1' GNULIB_WCPCPY='0' GNULIB_WCPNCPY='0' GNULIB_WCRTOMB='0' GNULIB_WCSCASECMP='0' GNULIB_WCSCAT='0' GNULIB_WCSCHR='0' GNULIB_WCSCMP='0' GNULIB_WCSCOLL='0' GNULIB_WCSCPY='0' GNULIB_WCSCSPN='0' GNULIB_WCSDUP='0' GNULIB_WCSLEN='0' GNULIB_WCSNCASECMP='0' GNULIB_WCSNCAT='0' GNULIB_WCSNCMP='0' GNULIB_WCSNCPY='0' GNULIB_WCSNLEN='0' GNULIB_WCSNRTOMBS='0' GNULIB_WCSPBRK='0' GNULIB_WCSRCHR='0' GNULIB_WCSRTOMBS='0' GNULIB_WCSSPN='0' GNULIB_WCSSTR='0' GNULIB_WCSTOK='0' GNULIB_WCSWIDTH='0' GNULIB_WCSXFRM='0' GNULIB_WCTOB='0' GNULIB_WCTOMB='0' GNULIB_WCTRANS='0' GNULIB_WCTYPE='0' GNULIB_WCWIDTH='1' GNULIB_WMEMCHR='0' GNULIB_WMEMCMP='0' GNULIB_WMEMCPY='0' GNULIB_WMEMMOVE='0' GNULIB_WMEMSET='0' GNULIB_WRITE='0' GNULIB__EXIT='0' GREP='/usr/xpg4/bin/grep' HAVE_ACCEPT4='1' HAVE_ACOSL='1' HAVE_ASINL='1' HAVE_ATANL='1' HAVE_ATOLL='1' HAVE_BTOWC='1' HAVE_CANONICALIZE_FILE_NAME='1' HAVE_CHOWN='1' HAVE_COSL='1' HAVE_DECL_ACOSL='1' HAVE_DECL_ASINL='1' HAVE_DECL_ATANL='1' HAVE_DECL_CEILF='1' HAVE_DECL_CEILL='1' HAVE_DECL_COSL='1' HAVE_DECL_ENVIRON='0' HAVE_DECL_EXPL='1' HAVE_DECL_FCHDIR='1' HAVE_DECL_FLOORF='1' HAVE_DECL_FLOORL='1' HAVE_DECL_FPURGE='1' HAVE_DECL_FREXPL='1' HAVE_DECL_FSEEKO='1' HAVE_DECL_FTELLO='1' HAVE_DECL_GETDELIM='1' HAVE_DECL_GETDOMAINNAME='1' HAVE_DECL_GETLINE='1' HAVE_DECL_GETLOADAVG='1' HAVE_DECL_GETLOGIN_R='1' HAVE_DECL_GETPAGESIZE='1' HAVE_DECL_GETUSERSHELL='1' HAVE_DECL_IMAXABS='1' HAVE_DECL_IMAXDIV='1' HAVE_DECL_LDEXPL='1' HAVE_DECL_LOCALTIME_R='1' HAVE_DECL_LOGB='1' HAVE_DECL_LOGL='1' HAVE_DECL_MEMMEM='1' HAVE_DECL_MEMRCHR='1' HAVE_DECL_OBSTACK_PRINTF='1' HAVE_DECL_ROUND='1' HAVE_DECL_ROUNDF='1' HAVE_DECL_ROUNDL='1' HAVE_DECL_SETENV='1' HAVE_DECL_SINL='1' HAVE_DECL_SNPRINTF='1' HAVE_DECL_SQRTL='1' HAVE_DECL_STRDUP='1' HAVE_DECL_STRERROR_R='1' HAVE_DECL_STRNDUP='0' HAVE_DECL_STRNLEN='0' HAVE_DECL_STRSIGNAL='1' HAVE_DECL_STRTOIMAX='1' HAVE_DECL_STRTOK_R='1' HAVE_DECL_STRTOUMAX='1' HAVE_DECL_TANL='1' HAVE_DECL_TRUNC='1' HAVE_DECL_TRUNCF='1' HAVE_DECL_TRUNCL='1' HAVE_DECL_TTYNAME_R='1' HAVE_DECL_UNSETENV='1' HAVE_DECL_VSNPRINTF='1' HAVE_DECL_WCTOB='1' HAVE_DECL_WCWIDTH='1' HAVE_DPRINTF='1' HAVE_DUP2='1' HAVE_DUP3='1' HAVE_EUIDACCESS='1' HAVE_EXPL='1' HAVE_FACCESSAT='1' HAVE_FCHDIR='1' HAVE_FCHMODAT='1' HAVE_FCHOWNAT='1' HAVE_FCNTL='1' HAVE_FEATURES_H='0' HAVE_FSEEKO='1' HAVE_FSTATAT='1' HAVE_FSYNC='1' HAVE_FTELLO='1' HAVE_FTRUNCATE='1' HAVE_FUTIMENS='1' HAVE_GCJ_C='' HAVE_GCJ_IN_PATH='' HAVE_GETDTABLESIZE='1' HAVE_GETGROUPS='1' HAVE_GETHOSTNAME='1' HAVE_GETLOGIN='1' HAVE_GETOPT_H='1' HAVE_GETPAGESIZE='1' HAVE_GETSUBOPT='1' HAVE_GIJ='' HAVE_GIJ_IN_PATH='' HAVE_GRANTPT='1' HAVE_INTTYPES_H='1' HAVE_ISNAND='1' HAVE_ISNANF='1' HAVE_ISNANL='1' HAVE_ISWBLANK='1' HAVE_ISWCNTRL='1' HAVE_JAVA='1' HAVE_JAVAC='1' HAVE_JAVAC_ENVVAR='' HAVE_JAVAC_IN_PATH='yes' HAVE_JAVA_ENVVAR='' HAVE_JAVA_IN_PATH='yes' HAVE_JIKES='' HAVE_JIKES_IN_PATH='' HAVE_JRE='' HAVE_JRE_IN_PATH='' HAVE_JVIEW='' HAVE_JVIEW_IN_PATH='' HAVE_LCHMOD='1' HAVE_LCHOWN='1' HAVE_LINK='1' HAVE_LINKAT='1' HAVE_LOGL='1' HAVE_LONG_LONG_INT='1' HAVE_LSTAT='1' HAVE_MBRLEN='1' HAVE_MBRTOWC='1' HAVE_MBSINIT='1' HAVE_MBSLEN='0' HAVE_MBSNRTOWCS='1' HAVE_MBSRTOWCS='1' HAVE_MEMCHR='1' HAVE_MEMPCPY='1' HAVE_MKDIRAT='1' HAVE_MKDTEMP='1' HAVE_MKFIFO='1' HAVE_MKFIFOAT='1' HAVE_MKNOD='1' HAVE_MKNODAT='1' HAVE_MKOSTEMP='1' HAVE_MKOSTEMPS='1' HAVE_MKSTEMP='1' HAVE_MKSTEMPS='1' HAVE_NANOSLEEP='1' HAVE_OPENAT='1' HAVE_OS_H='0' HAVE_PIPE2='0' HAVE_PIPE='1' HAVE_POSIX_SIGNALBLOCKING='1' HAVE_POSIX_SPAWN='1' HAVE_POSIX_SPAWNATTR_T='1' HAVE_POSIX_SPAWN_FILE_ACTIONS_T='1' HAVE_PREAD='1' HAVE_PTSNAME='1' HAVE_PWRITE='1' HAVE_RANDOM_H='1' HAVE_RANDOM_R='1' HAVE_RAWMEMCHR='0' HAVE_READLINK='1' HAVE_READLINKAT='1' HAVE_REALPATH='1' HAVE_RENAMEAT='1' HAVE_RPMATCH='1' HAVE_SA_FAMILY_T='1' HAVE_SCHED_H='' HAVE_SETENV='1' HAVE_SIGACTION='1' HAVE_SIGINFO_T='1' HAVE_SIGNED_SIG_ATOMIC_T='1' HAVE_SIGNED_WCHAR_T='1' HAVE_SIGNED_WINT_T='1' HAVE_SIGSET_T='1' HAVE_SINL='1' HAVE_SLEEP='1' HAVE_SPAWN_H='1' HAVE_SQRTL='1' HAVE_STDINT_H='1' HAVE_STPCPY='0' HAVE_STPNCPY='1' HAVE_STRCASESTR='1' HAVE_STRCHRNUL='0' HAVE_STRPBRK='1' HAVE_STRPTIME='1' HAVE_STRSEP='1' HAVE_STRTOD='1' HAVE_STRTOLL='1' HAVE_STRTOULL='1' HAVE_STRUCT_RANDOM_DATA='1' HAVE_STRUCT_SCHED_PARAM='' HAVE_STRUCT_SIGACTION_SA_SIGACTION='1' HAVE_STRUCT_SOCKADDR_STORAGE='1' HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY='1' HAVE_STRVERSCMP='0' HAVE_SYMLINK='1' HAVE_SYMLINKAT='1' HAVE_SYS_BITYPES_H='0' HAVE_SYS_INTTYPES_H='1' HAVE_SYS_IOCTL_H='1' HAVE_SYS_LOADAVG_H='0' HAVE_SYS_PARAM_H='0' HAVE_SYS_SOCKET_H='1' HAVE_SYS_TYPES_H='1' HAVE_TANL='1' HAVE_TIMEGM='1' HAVE_TYPE_VOLATILE_SIG_ATOMIC_T='1' HAVE_UNISTD_H='1' HAVE_UNLINKAT='1' HAVE_UNLOCKPT='1' HAVE_UNSIGNED_LONG_LONG_INT='1' HAVE_USLEEP='1' HAVE_UTIMENSAT='1' HAVE_VASPRINTF='1' HAVE_VDPRINTF='1' HAVE_WCHAR_H='1' HAVE_WCHAR_T='1' HAVE_WCPCPY='1' HAVE_WCPNCPY='1' HAVE_WCRTOMB='1' HAVE_WCSCASECMP='1' HAVE_WCSCAT='1' HAVE_WCSCHR='1' HAVE_WCSCMP='1' HAVE_WCSCOLL='1' HAVE_WCSCPY='1' HAVE_WCSCSPN='1' HAVE_WCSDUP='1' HAVE_WCSLEN='1' HAVE_WCSNCASECMP='1' HAVE_WCSNCAT='1' HAVE_WCSNCMP='1' HAVE_WCSNCPY='1' HAVE_WCSNLEN='1' HAVE_WCSNRTOMBS='1' HAVE_WCSPBRK='1' HAVE_WCSRCHR='1' HAVE_WCSRTOMBS='1' HAVE_WCSSPN='1' HAVE_WCSSTR='1' HAVE_WCSTOK='1' HAVE_WCSWIDTH='1' HAVE_WCSXFRM='1' HAVE_WCTRANS_T='1' HAVE_WCTYPE_H='1' HAVE_WCTYPE_T='1' HAVE_WINSOCK2_H='0' HAVE_WINT_T='1' HAVE_WMEMCHR='1' HAVE_WMEMCMP='1' HAVE_WMEMCPY='1' HAVE_WMEMMOVE='1' HAVE_WMEMSET='1' HAVE_WS2TCPIP_H='0' HAVE__BOOL='1' HAVE__EXIT='1' HELP2MAN='${SHELL} /archive/sparc-solaris/bison-2.5/build-aux/missing --run help2man' INCLUDE_NEXT='include_next' INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next' INSTALL_DATA='${INSTALL} -m 644' INSTALL_PROGRAM='${INSTALL}' INSTALL_SCRIPT='${INSTALL}' INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' INT32_MAX_LT_INTMAX_MAX='1' INT64_MAX_EQ_LONG_MAX='1' INTLLIBS='' INTL_MACOSX_LIBS='' ISNAND_LIBM='' ISNANF_LIBM='' ISNANL_LIBM='' ISNAN_LIBM='' LDEXPL_LIBM='-lm' LDFLAGS='' LEX='flex' LEXLIB='-lfl' LEX_OUTPUT_ROOT='lex.yy' LIBBISON_LIBDEPS='' LIBBISON_LTLIBDEPS='' LIBICONV='' LIBINTL='' LIBOBJS='' LIBS='' LIBUNISTRING_COMPILE_UNIWIDTH_WIDTH_FALSE='#' LIBUNISTRING_COMPILE_UNIWIDTH_WIDTH_TRUE='' LIBUNISTRING_UNITYPES_H='unitypes.h' LIBUNISTRING_UNIWIDTH_H='uniwidth.h' LOCALCHARSET_TESTS_ENVIRONMENT='CHARSETALIASDIR="$(top_builddir)/lib"' LOCALE_FR_UTF8='none' LOCALE_JA='none' LOCALE_ZH_CN='none' LTLIBICONV='' LTLIBINTL='' LTLIBOBJS='' M4='/usr2/gnu/bin/m4' M4_DEBUGFILE='--debugfile' M4_GNU='--gnu' MAKEINFO='${SHELL} /archive/sparc-solaris/bison-2.5/build-aux/missing --run makeinfo' MKDIR_P='/opt/sfw/bin/gmkdir -p' MSGFMT='/opt/sfw/bin/msgfmt' MSGFMT_015=':' MSGMERGE=':' NEXT_AS_FIRST_DIRECTIVE_ERRNO_H='' NEXT_AS_FIRST_DIRECTIVE_FCNTL_H='' NEXT_AS_FIRST_DIRECTIVE_FLOAT_H='' NEXT_AS_FIRST_DIRECTIVE_GETOPT_H='' NEXT_AS_FIRST_DIRECTIVE_INTTYPES_H='' NEXT_AS_FIRST_DIRECTIVE_MATH_H='' NEXT_AS_FIRST_DIRECTIVE_SCHED_H='' NEXT_AS_FIRST_DIRECTIVE_SIGNAL_H='' NEXT_AS_FIRST_DIRECTIVE_SPAWN_H='' NEXT_AS_FIRST_DIRECTIVE_STDDEF_H='' NEXT_AS_FIRST_DIRECTIVE_STDINT_H='' NEXT_AS_FIRST_DIRECTIVE_STDIO_H='' NEXT_AS_FIRST_DIRECTIVE_STDLIB_H='' NEXT_AS_FIRST_DIRECTIVE_STRING_H='' NEXT_AS_FIRST_DIRECTIVE_SYS_IOCTL_H='' NEXT_AS_FIRST_DIRECTIVE_SYS_SOCKET_H='' NEXT_AS_FIRST_DIRECTIVE_SYS_STAT_H='' NEXT_AS_FIRST_DIRECTIVE_SYS_WAIT_H='' NEXT_AS_FIRST_DIRECTIVE_TIME_H='' NEXT_AS_FIRST_DIRECTIVE_UNISTD_H='' NEXT_AS_FIRST_DIRECTIVE_WCHAR_H='' NEXT_AS_FIRST_DIRECTIVE_WCTYPE_H='' NEXT_ERRNO_H='' NEXT_FCNTL_H='' NEXT_FLOAT_H='' NEXT_GETOPT_H='' NEXT_INTTYPES_H='' NEXT_MATH_H='' NEXT_SCHED_H='' NEXT_SIGNAL_H='' NEXT_SPAWN_H='' NEXT_STDDEF_H='' NEXT_STDINT_H='' NEXT_STDIO_H='' NEXT_STDLIB_H='' NEXT_STRING_H='' NEXT_SYS_IOCTL_H='' NEXT_SYS_SOCKET_H='' NEXT_SYS_STAT_H='' NEXT_SYS_WAIT_H='' NEXT_TIME_H='' NEXT_UNISTD_H='' NEXT_WCHAR_H='' NEXT_WCTYPE_H='' O0CFLAGS='-g' O0CXXFLAGS='-g ' OBJEXT='o' PACKAGE='bison' PACKAGE_BUGREPORT='address@hidden' PACKAGE_COPYRIGHT_YEAR='2011' PACKAGE_NAME='GNU Bison' PACKAGE_STRING='GNU Bison 2.5' PACKAGE_TARNAME='bison' PACKAGE_URL='http://www.gnu.org/software/bison/' PACKAGE_VERSION='2.5' PATH_SEPARATOR=':' POSUB='' PRAGMA_COLUMNS='' PRAGMA_SYSTEM_HEADER='' PRIPTR_PREFIX='"l"' PRI_MACROS_BROKEN='0' PTHREAD_H_DEFINES_STRUCT_TIMESPEC='0' PTRDIFF_T_SUFFIX='l' RANLIB='ranlib' REPLACE_BTOWC='0' REPLACE_CALLOC='0' REPLACE_CANONICALIZE_FILE_NAME='0' REPLACE_CEIL='0' REPLACE_CEILF='0' REPLACE_CEILL='0' REPLACE_CHOWN='0' REPLACE_CLOSE='0' REPLACE_DPRINTF='0' REPLACE_DUP2='0' REPLACE_DUP='0' REPLACE_FCHOWNAT='0' REPLACE_FCLOSE='0' REPLACE_FCNTL='1' REPLACE_FFLUSH='0' REPLACE_FLOOR='0' REPLACE_FLOORF='0' REPLACE_FLOORL='0' REPLACE_FOPEN='0' REPLACE_FPRINTF='1' REPLACE_FPURGE='0' REPLACE_FREOPEN='0' REPLACE_FREXP='0' REPLACE_FREXPL='1' REPLACE_FSEEK='0' REPLACE_FSEEKO='0' REPLACE_FSTAT='0' REPLACE_FSTATAT='0' REPLACE_FTELL='0' REPLACE_FTELLO='0' REPLACE_FUTIMENS='0' REPLACE_GETCWD='0' REPLACE_GETDELIM='0' REPLACE_GETDOMAINNAME='0' REPLACE_GETGROUPS='0' REPLACE_GETLINE='0' REPLACE_GETLOGIN_R='0' REPLACE_GETPAGESIZE='0' REPLACE_HUGE_VAL='0' REPLACE_IOCTL='0' REPLACE_ISFINITE='0' REPLACE_ISINF='0' REPLACE_ISNAN='0' REPLACE_ISWBLANK='0' REPLACE_ISWCNTRL='0' REPLACE_LCHOWN='0' REPLACE_LDEXPL='0' REPLACE_LINK='0' REPLACE_LINKAT='0' REPLACE_LOCALTIME_R='GNULIB_PORTCHECK' REPLACE_LSEEK='0' REPLACE_LSTAT='0' REPLACE_MALLOC='0' REPLACE_MBRLEN='0' REPLACE_MBRTOWC='1' REPLACE_MBSINIT='0' REPLACE_MBSNRTOWCS='0' REPLACE_MBSRTOWCS='0' REPLACE_MBSTATE_T='0' REPLACE_MBTOWC='0' REPLACE_MEMCHR='0' REPLACE_MEMMEM='0' REPLACE_MKDIR='0' REPLACE_MKFIFO='0' REPLACE_MKNOD='0' REPLACE_MKSTEMP='0' REPLACE_MKTIME='GNULIB_PORTCHECK' REPLACE_NAN='0' REPLACE_NANOSLEEP='GNULIB_PORTCHECK' REPLACE_NULL='0' REPLACE_OBSTACK_PRINTF='0' REPLACE_OPEN='0' REPLACE_OPENAT='0' REPLACE_PERROR='0' REPLACE_POPEN='0' REPLACE_POSIX_SPAWN='0' REPLACE_PREAD='0' REPLACE_PRINTF='1' REPLACE_PUTENV='0' REPLACE_PWRITE='0' REPLACE_READLINK='0' REPLACE_REALLOC='0' REPLACE_REALPATH='0' REPLACE_REMOVE='0' REPLACE_RENAME='0' REPLACE_RENAMEAT='0' REPLACE_RMDIR='0' REPLACE_ROUND='0' REPLACE_ROUNDF='0' REPLACE_ROUNDL='0' REPLACE_SETENV='0' REPLACE_SIGNBIT='0' REPLACE_SIGNBIT_USING_GCC='0' REPLACE_SLEEP='0' REPLACE_SNPRINTF='1' REPLACE_SPRINTF='1' REPLACE_STAT='0' REPLACE_STDIO_WRITE_FUNCS='0' REPLACE_STPNCPY='0' REPLACE_STRCASESTR='0' REPLACE_STRDUP='0' REPLACE_STRERROR='0' REPLACE_STRERROR_R='0' REPLACE_STRNCAT='0' REPLACE_STRNDUP='0' REPLACE_STRNLEN='0' REPLACE_STRSIGNAL='0' REPLACE_STRSTR='0' REPLACE_STRTOD='0' REPLACE_STRTOK_R='0' REPLACE_SYMLINK='0' REPLACE_TIMEGM='GNULIB_PORTCHECK' REPLACE_TMPFILE='0' REPLACE_TRUNC='0' REPLACE_TRUNCF='0' REPLACE_TRUNCL='0' REPLACE_TTYNAME_R='0' REPLACE_UNLINK='0' REPLACE_UNLINKAT='0' REPLACE_UNSETENV='1' REPLACE_USLEEP='0' REPLACE_UTIMENSAT='0' REPLACE_VASPRINTF='0' REPLACE_VDPRINTF='0' REPLACE_VFPRINTF='1' REPLACE_VPRINTF='0' REPLACE_VSNPRINTF='1' REPLACE_VSPRINTF='1' REPLACE_WCRTOMB='0' REPLACE_WCSNRTOMBS='0' REPLACE_WCSRTOMBS='0' REPLACE_WCSWIDTH='0' REPLACE_WCTOB='0' REPLACE_WCTOMB='0' REPLACE_WCWIDTH='0' REPLACE_WRITE='0' SCHED_H='' SET_MAKE='' SHELL='/bin/bash' SIG_ATOMIC_T_SUFFIX='' SIZE_T_SUFFIX='ul' STDBOOL_H='' STDDEF_H='' STDINT_H='stdint.h' STRIP='' SYS_IOCTL_H_HAVE_WINSOCK2_H='0' SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS='0' SYS_TIME_H_DEFINES_STRUCT_TIMESPEC='0' TIME_H_DEFINES_STRUCT_TIMESPEC='1' UINT32_MAX_LT_UINTMAX_MAX='1' UINT64_MAX_EQ_ULONG_MAX='1' UNDEFINE_STRTOK_R='0' UNISTD_H_HAVE_WINSOCK2_H='0' UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS='0' USE_NLS='no' VALGRIND='' VERSION='2.5' WARN_CFLAGS='' WARN_CFLAGS_TEST='' WARN_CXXFLAGS='' WARN_CXXFLAGS_TEST='' WCHAR_T_SUFFIX='' WERROR_CFLAGS='' WINT_T_SUFFIX='' XGETTEXT=':' XGETTEXT_015=':' XGETTEXT_EXTRA_OPTIONS=' --flag=error:3:c-format --flag=error_at_line:5:c-format' XSLTPROC='/usr/bin/xsltproc' YACC='bison -y' YACC_LIBRARY='liby.a' YACC_SCRIPT='yacc' YFLAGS='' ac_ct_CC='/usr/bin/cc -m64' ac_ct_CXX='g++' aclocaldir='${datadir}/aclocal' am__EXEEXT_FALSE='' am__EXEEXT_TRUE='#' am__fastdepCC_FALSE='' am__fastdepCC_TRUE='#' am__fastdepCXX_FALSE='#' am__fastdepCXX_TRUE='' am__include='include' am__isrc='' am__leading_dot='.' am__quote='' am__tar='${AMTAR} chof - "$$tardir"' am__untar='${AMTAR} xf -' bindir='${exec_prefix}/bin' build='sparc-sun-solaris2.10' build_alias='' build_cpu='sparc' build_os='solaris2.10' build_vendor='sun' datadir='${datarootdir}' datarootdir='${prefix}/share' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' dvidir='${docdir}' exec_prefix='${prefix}' gl_LIBOBJS=' argmatch.o asnprintf.o basename.o basename-lgpl.o cloexec.o dirname.o dirname-lgpl.o dup-safer.o error.o fcntl.o fd-safer.o fopen-safer.o fprintf.o frexpl.o getopt.o getopt1.o hash.o mbrtowc.o obstack.o pipe-safer.o printf.o printf-args.o printf-parse.o quote.o quotearg.o rawmemchr.o snprintf.o sprintf.o stpcpy.o strchrnul.o stripslash.o strndup.o strnlen.o strverscmp.o unsetenv.o vasnprintf.o vfprintf.o vsnprintf.o vsprintf.o xmalloc.o' gl_LTLIBOBJS=' argmatch.lo asnprintf.lo basename.lo basename-lgpl.lo cloexec.lo dirname.lo dirname-lgpl.lo dup-safer.lo error.lo fcntl.lo fd-safer.lo fopen-safer.lo fprintf.lo frexpl.lo getopt.lo getopt1.lo hash.lo mbrtowc.lo obstack.lo pipe-safer.lo printf.lo printf-args.lo printf-parse.lo quote.lo quotearg.lo rawmemchr.lo snprintf.lo sprintf.lo stpcpy.lo strchrnul.lo stripslash.lo strndup.lo strnlen.lo strverscmp.lo unsetenv.lo vasnprintf.lo vfprintf.lo vsnprintf.lo vsprintf.lo xmalloc.lo' gltests_LIBOBJS='' gltests_LTLIBOBJS='' gltests_WITNESS='IN_BISON_GNULIB_TESTS' host='sparc-sun-solaris2.10' host_alias='' host_cpu='sparc' host_os='solaris2.10' host_vendor='sun' htmldir='${docdir}' includedir='${prefix}/include' infodir='${datarootdir}/info' install_sh='${SHELL} /archive/sparc-solaris/bison-2.5/build-aux/install-sh' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' lispdir='${datarootdir}/emacs/site-lisp' localedir='${datarootdir}/locale' localstatedir='${prefix}/var' mandir='${datarootdir}/man' mkdir_p='/opt/sfw/bin/gmkdir -p' oldincludedir='/usr/include' pdfdir='${docdir}' pkglibexecdir='${libexecdir}/${PACKAGE}' prefix='/usr2/gnu' program_transform_name='s,x,x,' psdir='${docdir}' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' sysconfdir='${prefix}/etc' target_alias='' ## ----------- ## ## confdefs.h. ## ## ----------- ## /* confdefs.h */ #define PACKAGE_NAME "GNU Bison" #define PACKAGE_TARNAME "bison" #define PACKAGE_VERSION "2.5" #define PACKAGE_STRING "GNU Bison 2.5" #define PACKAGE_BUGREPORT "address@hidden" #define PACKAGE_URL "http://www.gnu.org/software/bison/" #define PACKAGE_COPYRIGHT_YEAR 2011 #define PACKAGE "bison" #define VERSION "2.5" #define STDC_HEADERS 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_SYS_STAT_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STRING_H 1 #define HAVE_MEMORY_H 1 #define HAVE_STRINGS_H 1 #define HAVE_INTTYPES_H 1 #define HAVE_STDINT_H 1 #define 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 YYTEXT_POINTER 1 #define M4 "/usr2/gnu/bin/m4" #define M4_GNU_OPTION "--gnu" #define HAVE_LOCALE_H 1 #define HAVE_SYS_SOCKET_H 1 #define HAVE_UNISTD_H 1 #define HAVE_GETOPT_H 1 #define HAVE_WCHAR_H 1 #define HAVE_STDINT_H 1 #define HAVE_INTTYPES_H 1 #define HAVE_WCTYPE_H 1 #define HAVE_MATH_H 1 #define HAVE_SYS_MMAN_H 1 #define HAVE_SCHED_H 1 #define HAVE_SPAWN_H 1 #define HAVE_SYS_IOCTL_H 1 #define HAVE_SYS_STAT_H 1 #define HAVE_SYS_WAIT_H 1 #define HAVE_SYS_TIME_H 1 #define HAVE_ALLOCA_H 1 #define HAVE_ALLOCA 1 #define HAVE_DUP2 1 #define HAVE_FCNTL 1 #define HAVE_GETDTABLESIZE 1 #define HAVE_ISWCNTRL 1 #define HAVE_ISWBLANK 1 #define HAVE_MBSINIT 1 #define HAVE_MBRTOWC 1 #define HAVE_ISASCII 1 #define HAVE_MPROTECT 1 #define HAVE_MEMCHR 1 #define HAVE_LSTAT 1 #define HAVE_PIPE 1 #define HAVE_POSIX_SPAWN 1 #define HAVE_SIGACTION 1 #define HAVE_SIGALTSTACK 1 #define HAVE_SIGINTERRUPT 1 #define HAVE_STRDUP 1 #define HAVE_WCWIDTH 1 #define HAVE_SETLOCALE 1 #define HAVE_DECL_STRERROR_R 1 #define HAVE_STRERROR_R 1 #define HAVE_SIG_ATOMIC_T 1 #define HAVE_WORKING_O_NOATIME 1 #define HAVE_WORKING_O_NOFOLLOW 1 #define HAVE_STDINT_H_WITH_UINTMAX 1 #define HAVE_INTTYPES_H_WITH_UINTMAX 1 #define WORDS_BIGENDIAN 1 #define CHECK_PRINTF_SAFE 1 #define HAVE_UNSIGNED_LONG_LONG_INT 1 #define HAVE_LONG_LONG_INT 1 #define HAVE_WCHAR_T 1 #define HAVE_WINT_T 1 #define HAVE_INTMAX_T 1 #define HAVE_SNPRINTF 1 #define HAVE_WCSLEN 1 #define HAVE_MBRTOWC 1 #define HAVE_WCRTOMB 1 #define HAVE_DECL__SNPRINTF 0 #define HAVE_SNPRINTF_RETVAL_C99 1 #define HAVE_GETOPT_H 1 #define HAVE_GETOPT_LONG_ONLY 1 #define HAVE_DECL_GETENV 1 #define __GETOPT_PREFIX rpl_ #define HAVE__BOOL 1 #define HAVE_SYS_INTTYPES_H 1 #define BITSIZEOF_PTRDIFF_T 64 #define BITSIZEOF_SIZE_T 64 #define BITSIZEOF_SIG_ATOMIC_T 32 #define BITSIZEOF_WCHAR_T 32 #define BITSIZEOF_WINT_T 32 #define HAVE_SIGNED_SIG_ATOMIC_T 1 #define HAVE_SIGNED_WCHAR_T 1 #define HAVE_SIGNED_WINT_T 1 #define PTRDIFF_T_SUFFIX l #define SIZE_T_SUFFIX ul #define SIG_ATOMIC_T_SUFFIX #define WCHAR_T_SUFFIX #define WINT_T_SUFFIX #define HAVE_INTTYPES_H 1 #define HAVE_DECL_IMAXABS 1 #define HAVE_DECL_IMAXDIV 1 #define HAVE_DECL_STRTOIMAX 1 #define HAVE_DECL_STRTOUMAX 1 #define HAVE_STRUCT_SOCKADDR_STORAGE 1 #define HAVE_SA_FAMILY_T 1 #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 #define HAVE_RAW_DECL_SOCKET 1 #define HAVE_RAW_DECL_CONNECT 1 #define HAVE_RAW_DECL_ACCEPT 1 #define HAVE_RAW_DECL_BIND 1 #define HAVE_RAW_DECL_GETPEERNAME 1 #define HAVE_RAW_DECL_GETSOCKNAME 1 #define HAVE_RAW_DECL_GETSOCKOPT 1 #define HAVE_RAW_DECL_LISTEN 1 #define HAVE_RAW_DECL_RECV 1 #define HAVE_RAW_DECL_SEND 1 #define HAVE_RAW_DECL_RECVFROM 1 #define HAVE_RAW_DECL_SENDTO 1 #define HAVE_RAW_DECL_SETSOCKOPT 1 #define HAVE_RAW_DECL_SHUTDOWN 1 #define FLT_EXPBIT0_WORD 0 #define FLT_EXPBIT0_BIT 23 #define HAVE_RAW_DECL_WCTYPE 1 #define HAVE_RAW_DECL_ISWCTYPE 1 #define HAVE_RAW_DECL_WCTRANS 1 #define HAVE_RAW_DECL_TOWCTRANS 1 #define HAVE_DECL_ISWBLANK 0 #define HAVE_LANGINFO_CODESET 1 #define HAVE_DECL_GETC_UNLOCKED 1 #define HAVE_MBSTATE_T 1 #define HAVE_MAP_ANONYMOUS 1 #define PROMOTED_MODE_T mode_t #define NEED_PRINTF_DIRECTIVE_A 1 #define HAVE_NL_LANGINFO 1 #define NEED_PRINTF_DIRECTIVE_LS 1 #define NEED_PRINTF_FLAG_ZERO 1 #define NEED_PRINTF_UNBOUNDED_PRECISION 1 #define NEED_PRINTF_DOUBLE 1 #define NEED_PRINTF_LONG_DOUBLE 1 #define REPLACE_VFPRINTF_POSIX 1 #define USER_LABEL_PREFIX #define restrict __restrict__ #define HAVE_DECL_SNPRINTF 1 #define HAVE_DECL_STRDUP 1 #define HAVE_RAW_DECL_STRDUP 1 #define HAVE_RAW_DECL_STRNCAT 1 #define HAVE_RAW_DECL_STRPBRK 1 #define HAVE_RAW_DECL_STRTOK_R 1 #define HAVE_RAW_DECL_STRERROR_R 1 #define HAVE_RAW_DECL_STRSIGNAL 1 #define HAVE_DECL_STRNDUP 0 #define HAVE_DECL_STRNLEN 0 #define HAVE_DECL_CLEARERR_UNLOCKED 0 #define HAVE_DECL_FEOF_UNLOCKED 0 #define HAVE_DECL_FERROR_UNLOCKED 0 #define HAVE_DECL_FFLUSH_UNLOCKED 0 #define HAVE_DECL_FGETS_UNLOCKED 0 #define HAVE_DECL_FPUTC_UNLOCKED 0 #define HAVE_DECL_FPUTS_UNLOCKED 0 #define HAVE_DECL_FREAD_UNLOCKED 0 #define HAVE_DECL_FWRITE_UNLOCKED 0 #define HAVE_DECL_GETCHAR_UNLOCKED 1 #define HAVE_DECL_PUTC_UNLOCKED 1 #define HAVE_DECL_PUTCHAR_UNLOCKED 1 #define HAVE_DECL_UNSETENV 1 #define HAVE_DECL_VSNPRINTF 1 #define HAVE_CALLOC_POSIX 1 #define GNULIB_TEST_CALLOC_POSIX 1 #define GNULIB_TEST_CLOEXEC 1 #define GNULIB_TEST_CLOSE 1 #define GNULIB_DIRNAME 1 #define GNULIB_TEST_DUP2 1 #define GNULIB_TEST_ENVIRON 1 #define GNULIB_TEST_FCLOSE 1 #define GNULIB_TEST_FCNTL 1 #define HAVE_RAW_DECL_FCNTL 1 #define HAVE_RAW_DECL_OPENAT 1 #define GNULIB_FD_SAFER_FLAG 1 #define GNULIB_TEST_FOPEN 1 #define GNULIB_FOPEN_SAFER 1 #define NEED_PRINTF_DIRECTIVE_A 1 #define HAVE_NL_LANGINFO 1 #define NEED_PRINTF_DIRECTIVE_LS 1 #define NEED_PRINTF_FLAG_ZERO 1 #define NEED_PRINTF_UNBOUNDED_PRECISION 1 #define NEED_PRINTF_DOUBLE 1 #define NEED_PRINTF_LONG_DOUBLE 1 #define REPLACE_FPRINTF_POSIX 1 #define GNULIB_TEST_FPRINTF_POSIX 1 #define HAVE_FREXP_IN_LIBC 1 #define GNULIB_TEST_FREXP 1 #define GNULIB_TEST_FREXPL 1 #define GNULIB_TEST_GETDTABLESIZE 1 #define GNULIB_TEST_GETOPT_GNU 1 #define __GETOPT_PREFIX rpl_ #define HAVE_INLINE 1 #define GL_TRIGGER_STDC_LIMIT_MACROS 1 #define HAVE_RAW_DECL_IMAXABS 1 #define HAVE_RAW_DECL_IMAXDIV 1 #define HAVE_RAW_DECL_STRTOIMAX 1 #define HAVE_RAW_DECL_STRTOUMAX 1 #define HAVE_IOCTL 1 #define GNULIB_TEST_IOCTL 1 #define GNULIB_TEST_ISNAN 1 #define GNULIB_TEST_ISNAND 1 #define HAVE_ISNAND_IN_LIBC 1 #define GNULIB_TEST_ISNANF 1 #define HAVE_ISNANF_IN_LIBC 1 #define GNULIB_TEST_ISNANL 1 #define HAVE_ISNANL_IN_LIBC 1 #define GNULIB_TEST_ISWBLANK 1 #define HAVE_LDEXPL 1 #define GNULIB_TEST_LDEXPL 1 #define HAVE_STDLIB_H 1 #define HAVE_MALLOC_GNU 1 #define GNULIB_MALLOC_GNU 1 #define HAVE_MALLOC_POSIX 1 #define GNULIB_TEST_MALLOC_POSIX 1 #define HAVE_RAW_DECL_ACOSL 1 #define HAVE_RAW_DECL_ASINL 1 #define HAVE_RAW_DECL_ATANL 1 #define HAVE_RAW_DECL_CEILF 1 #define HAVE_RAW_DECL_CEILL 1 #define HAVE_RAW_DECL_COSL 1 #define HAVE_RAW_DECL_EXPL 1 #define HAVE_RAW_DECL_FLOORF 1 #define HAVE_RAW_DECL_FLOORL 1 #define HAVE_RAW_DECL_FREXPL 1 #define HAVE_RAW_DECL_LDEXPL 1 #define HAVE_RAW_DECL_LOGB 1 #define HAVE_RAW_DECL_LOGL 1 #define HAVE_RAW_DECL_ROUND 1 #define HAVE_RAW_DECL_ROUNDF 1 #define HAVE_RAW_DECL_ROUNDL 1 #define HAVE_RAW_DECL_SINL 1 #define HAVE_RAW_DECL_SQRTL 1 #define HAVE_RAW_DECL_TANL 1 #define HAVE_RAW_DECL_TRUNC 1 #define HAVE_RAW_DECL_TRUNCF 1 #define HAVE_RAW_DECL_TRUNCL 1 #define MBRTOWC_NULL_ARG1_BUG 1 #define MBRTOWC_RETVAL_BUG 1 #define GNULIB_TEST_MBRTOWC 1 #define GNULIB_TEST_MBSCHR 1 #define GNULIB_TEST_MBSINIT 1 #define GNULIB_TEST_MBSRCHR 1 #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 #define HAVE_MBSTATE_T 1 #define GNULIB_TEST_MEMCHR 1 #define GNULIB_TEST_NONBLOCKING 1 #define GNULIB_TEST_OPEN 1 #define GNULIB_TEST_PERROR 1 #define GNULIB_TEST_PIPE 1 #define GNULIB_TEST_PIPE2 1 #define GNULIB_PIPE2_SAFER 1 #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 #define GNULIB_TEST_POSIX_SPAWNP 1 #define HAVE_FREXP_IN_LIBC 1 #define HAVE_LDEXP_IN_LIBC 1 #define REPLACE_PRINTF_POSIX 1 #define GNULIB_TEST_PRINTF_POSIX 1 #define GNULIB_TEST_RAWMEMCHR 1 #define HAVE_REALLOC_POSIX 1 #define GNULIB_TEST_REALLOC_POSIX 1 #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 #define GNULIB_TEST_SIGACTION 1 #define HAVE_RAW_DECL_SIGACTION 1 #define HAVE_RAW_DECL_SIGADDSET 1 #define HAVE_RAW_DECL_SIGDELSET 1 #define HAVE_RAW_DECL_SIGEMPTYSET 1 #define HAVE_RAW_DECL_SIGFILLSET 1 #define HAVE_RAW_DECL_SIGISMEMBER 1 #define HAVE_RAW_DECL_SIGPENDING 1 #define HAVE_RAW_DECL_SIGPROCMASK 1 #define GNULIB_TEST_SIGNBIT 1 #define GNULIB_TEST_SIGPROCMASK 1 #define HAVE_STDINT_H 1 #define HAVE_SNPRINTF 1 #define GNULIB_TEST_SNPRINTF 1 #define GNULIB_SNPRINTF 1 #define HAVE_SNPRINTF 1 #define NEED_PRINTF_DIRECTIVE_A 1 #define HAVE_NL_LANGINFO 1 #define NEED_PRINTF_DIRECTIVE_LS 1 #define NEED_PRINTF_FLAG_ZERO 1 #define NEED_PRINTF_UNBOUNDED_PRECISION 1 #define NEED_PRINTF_DOUBLE 1 #define NEED_PRINTF_LONG_DOUBLE 1 #define HAVE_POSIX_SPAWNATTR_T 1 #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 #define HAVE_RAW_DECL_POSIX_SPAWN 1 #define HAVE_RAW_DECL_POSIX_SPAWNP 1 #define HAVE_RAW_DECL_POSIX_SPAWNATTR_INIT 1 #define HAVE_RAW_DECL_POSIX_SPAWNATTR_DESTROY 1 #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGDEFAULT 1 #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGDEFAULT 1 #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSIGMASK 1 #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSIGMASK 1 #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETFLAGS 1 #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETFLAGS 1 #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETPGROUP 1 #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETPGROUP 1 #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPOLICY 1 #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPOLICY 1 #define HAVE_RAW_DECL_POSIX_SPAWNATTR_GETSCHEDPARAM 1 #define HAVE_RAW_DECL_POSIX_SPAWNATTR_SETSCHEDPARAM 1 #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_INIT 1 #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 #define HAVE_RAW_DECL_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 #define NEED_PRINTF_DIRECTIVE_A 1 #define HAVE_NL_LANGINFO 1 #define NEED_PRINTF_DIRECTIVE_LS 1 #define NEED_PRINTF_FLAG_ZERO 1 #define NEED_PRINTF_UNBOUNDED_PRECISION 1 #define NEED_PRINTF_DOUBLE 1 #define NEED_PRINTF_LONG_DOUBLE 1 #define GNULIB_TEST_SPRINTF_POSIX 1 #define GNULIB_TEST_STAT 1 #define HAVE_SYS_INTTYPES_H 1 #define BITSIZEOF_PTRDIFF_T 64 #define BITSIZEOF_SIZE_T 64 #define BITSIZEOF_SIG_ATOMIC_T 32 #define BITSIZEOF_WCHAR_T 32 #define BITSIZEOF_WINT_T 32 #define HAVE_SIGNED_SIG_ATOMIC_T 1 #define HAVE_SIGNED_WCHAR_T 1 #define HAVE_SIGNED_WINT_T 1 #define PTRDIFF_T_SUFFIX l #define SIZE_T_SUFFIX ul #define SIG_ATOMIC_T_SUFFIX #define WCHAR_T_SUFFIX #define WINT_T_SUFFIX #define HAVE_RAW_DECL_FSEEKO 1 #define HAVE_RAW_DECL_FTELLO 1 #define HAVE_RAW_DECL_POPEN 1 #define HAVE_RAW_DECL_SNPRINTF 1 #define HAVE_RAW_DECL_TMPFILE 1 #define HAVE_RAW_DECL_VSNPRINTF 1 #define HAVE_RAW_DECL__EXIT 1 #define HAVE_RAW_DECL_ATOLL 1 #define HAVE_RAW_DECL_GETSUBOPT 1 #define HAVE_RAW_DECL_GRANTPT 1 #define HAVE_RAW_DECL_MKSTEMP 1 #define HAVE_RAW_DECL_PTSNAME 1 #define HAVE_RAW_DECL_REALPATH 1 #define HAVE_RAW_DECL_SETENV 1 #define HAVE_RAW_DECL_STRTOD 1 #define HAVE_RAW_DECL_STRTOLL 1 #define HAVE_RAW_DECL_STRTOULL 1 #define HAVE_RAW_DECL_UNLOCKPT 1 #define HAVE_RAW_DECL_UNSETENV 1 #define GNULIB_TEST_STPCPY 1 #define GNULIB_TEST_STRCHRNUL 1 #define GNULIB_TEST_STRDUP 1 #define GNULIB_TEST_STRERROR 1 #define GNULIB_TEST_STRNDUP 1 #define GNULIB_TEST_STRNLEN 1 #define HAVE_STRTOL 1 #define HAVE_STRTOUL 1 #define GNULIB_TEST_STRVERSCMP 1 #define HAVE_RAW_DECL_IOCTL 1 #define HAVE_STRUCT_SOCKADDR_STORAGE 1 #define HAVE_SA_FAMILY_T 1 #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 #define HAVE_RAW_DECL_SOCKET 1 #define HAVE_RAW_DECL_CONNECT 1 #define HAVE_RAW_DECL_ACCEPT 1 #define HAVE_RAW_DECL_BIND 1 #define HAVE_RAW_DECL_GETPEERNAME 1 #define HAVE_RAW_DECL_GETSOCKNAME 1 #define HAVE_RAW_DECL_GETSOCKOPT 1 #define HAVE_RAW_DECL_LISTEN 1 #define HAVE_RAW_DECL_RECV 1 #define HAVE_RAW_DECL_SEND 1 #define HAVE_RAW_DECL_RECVFROM 1 #define HAVE_RAW_DECL_SENDTO 1 #define HAVE_RAW_DECL_SETSOCKOPT 1 #define HAVE_RAW_DECL_SHUTDOWN 1 #define HAVE_RAW_DECL_FSTATAT 1 #define HAVE_RAW_DECL_LSTAT 1 #define HAVE_RAW_DECL_MKFIFO 1 #define HAVE_RAW_DECL_MKNOD 1 #define HAVE_RAW_DECL_STAT 1 #define HAVE_RAW_DECL_WAITPID 1 #define HAVE_RAW_DECL_CHOWN 1 #define HAVE_RAW_DECL_DUP2 1 #define HAVE_RAW_DECL_FCHDIR 1 #define HAVE_RAW_DECL_FCHOWNAT 1 #define HAVE_RAW_DECL_FSYNC 1 #define HAVE_RAW_DECL_FTRUNCATE 1 #define HAVE_RAW_DECL_GETCWD 1 #define HAVE_RAW_DECL_GETDTABLESIZE 1 #define HAVE_RAW_DECL_GETGROUPS 1 #define HAVE_RAW_DECL_GETHOSTNAME 1 #define HAVE_RAW_DECL_GETLOGIN 1 #define HAVE_RAW_DECL_GETLOGIN_R 1 #define HAVE_RAW_DECL_GETPAGESIZE 1 #define HAVE_RAW_DECL_GETUSERSHELL 1 #define HAVE_RAW_DECL_SETUSERSHELL 1 #define HAVE_RAW_DECL_ENDUSERSHELL 1 #define HAVE_RAW_DECL_LCHOWN 1 #define HAVE_RAW_DECL_LINK 1 #define HAVE_RAW_DECL_LSEEK 1 #define HAVE_RAW_DECL_PIPE 1 #define HAVE_RAW_DECL_PREAD 1 #define HAVE_RAW_DECL_PWRITE 1 #define HAVE_RAW_DECL_READLINK 1 #define HAVE_RAW_DECL_RMDIR 1 #define HAVE_RAW_DECL_SLEEP 1 #define HAVE_RAW_DECL_SYMLINK 1 #define HAVE_RAW_DECL_TTYNAME_R 1 #define HAVE_RAW_DECL_UNLINK 1 #define HAVE_RAW_DECL_UNLINKAT 1 #define HAVE_RAW_DECL_USLEEP 1 #define USE_UNLOCKED_IO 1 #define HAVE_UNSETENV 1 #define GNULIB_TEST_UNSETENV 1 #define NEED_PRINTF_DIRECTIVE_A 1 #define HAVE_NL_LANGINFO 1 #define NEED_PRINTF_DIRECTIVE_LS 1 #define NEED_PRINTF_FLAG_ZERO 1 #define NEED_PRINTF_UNBOUNDED_PRECISION 1 #define NEED_PRINTF_DOUBLE 1 #define NEED_PRINTF_LONG_DOUBLE 1 #define REPLACE_VFPRINTF_POSIX 1 #define GNULIB_TEST_VFPRINTF_POSIX 1 #define HAVE_VSNPRINTF 1 #define GNULIB_TEST_VSNPRINTF 1 #define HAVE_VSNPRINTF 1 #define NEED_PRINTF_DIRECTIVE_A 1 #define HAVE_NL_LANGINFO 1 #define NEED_PRINTF_DIRECTIVE_LS 1 #define NEED_PRINTF_FLAG_ZERO 1 #define NEED_PRINTF_UNBOUNDED_PRECISION 1 #define NEED_PRINTF_DOUBLE 1 #define NEED_PRINTF_LONG_DOUBLE 1 #define NEED_PRINTF_DIRECTIVE_A 1 #define HAVE_NL_LANGINFO 1 #define NEED_PRINTF_DIRECTIVE_LS 1 #define NEED_PRINTF_FLAG_ZERO 1 #define NEED_PRINTF_UNBOUNDED_PRECISION 1 #define NEED_PRINTF_DOUBLE 1 #define NEED_PRINTF_LONG_DOUBLE 1 #define GNULIB_TEST_VSPRINTF_POSIX 1 #define HAVE_WAITID 1 #define GNULIB_TEST_WAITPID 1 #define HAVE_RAW_DECL_BTOWC 1 #define HAVE_RAW_DECL_WCTOB 1 #define HAVE_RAW_DECL_MBSINIT 1 #define HAVE_RAW_DECL_MBRTOWC 1 #define HAVE_RAW_DECL_MBRLEN 1 #define HAVE_RAW_DECL_MBSRTOWCS 1 #define HAVE_RAW_DECL_WCRTOMB 1 #define HAVE_RAW_DECL_WCSRTOMBS 1 #define HAVE_RAW_DECL_WCWIDTH 1 #define HAVE_RAW_DECL_WMEMCHR 1 #define HAVE_RAW_DECL_WMEMCMP 1 #define HAVE_RAW_DECL_WMEMCPY 1 #define HAVE_RAW_DECL_WMEMMOVE 1 #define HAVE_RAW_DECL_WMEMSET 1 #define HAVE_RAW_DECL_WCSLEN 1 #define HAVE_RAW_DECL_WCSCPY 1 #define HAVE_RAW_DECL_WCSNCPY 1 #define HAVE_RAW_DECL_WCSCAT 1 #define HAVE_RAW_DECL_WCSNCAT 1 #define HAVE_RAW_DECL_WCSCMP 1 #define HAVE_RAW_DECL_WCSNCMP 1 #define HAVE_RAW_DECL_WCSCOLL 1 #define HAVE_RAW_DECL_WCSXFRM 1 #define HAVE_RAW_DECL_WCSCHR 1 #define HAVE_RAW_DECL_WCSRCHR 1 #define HAVE_RAW_DECL_WCSCSPN 1 #define HAVE_RAW_DECL_WCSSPN 1 #define HAVE_RAW_DECL_WCSPBRK 1 #define HAVE_RAW_DECL_WCSSTR 1 #define HAVE_RAW_DECL_WCSTOK 1 #define HAVE_RAW_DECL_WCSWIDTH 1 #define HAVE_RAW_DECL_WCTYPE 1 #define HAVE_RAW_DECL_ISWCTYPE 1 #define HAVE_RAW_DECL_WCTRANS 1 #define HAVE_RAW_DECL_TOWCTRANS 1 #define HAVE_DECL_WCWIDTH 1 #define GNULIB_TEST_WCWIDTH 1 #define HAVE_STDINT_H 1 #define HAVE_SYS_WAIT_H 1 #define HAVE_DUP2 1 #define HAVE_WAITPID 1 #define HAVE_FORK 1 #define HAVE_VFORK 1 #define HAVE_WORKING_VFORK 1 #define HAVE_WORKING_FORK 1 #define HAVE_SYS_TIME_H 1 #define HAVE_SYS_TIMES_H 1 #define HAVE_SYS_RESOURCE_H 1 #define HAVE_TIMES 1 #define HAVE_DECL_GETRUSAGE 1 #define HAVE_DECL_TIMES 1 #define HAVE_DECL_CLOCK 1 #define HAVE_DECL_SYSCONF 1 #define HAVE_CLOCK_T 1 #define HAVE_STRUCT_TMS 1 configure: exit 0