This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by jscoverage configure 0.4, which was generated by GNU Autoconf 2.65. Invocation command line was $ ./configure ## --------- ## ## Platform. ## ## --------- ## hostname = sunfang-laptop uname -m = i686 uname -r = 2.6.32-22-generic uname -s = Linux uname -v = #33-Ubuntu SMP Wed Apr 28 13:27:30 UTC 2010 /usr/bin/uname -p = unknown /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /usr/local/sbin PATH: /usr/local/bin PATH: /usr/sbin PATH: /usr/bin PATH: /sbin PATH: /bin PATH: /usr/games PATH: /usr/java/jdk1.7.0_02 PATH: /usr/java/jdk1.7.0_02/bin ## ----------- ## ## Core tests. ## ## ----------- ## configure:2213: checking for a BSD-compatible install configure:2281: result: /usr/bin/install -c configure:2292: checking whether build environment is sane configure:2329: result: yes configure:2354: checking for a thread-safe mkdir -p configure:2393: result: /bin/mkdir -p configure:2406: checking for gawk configure:2422: found /usr/bin/gawk configure:2433: result: gawk configure:2444: checking whether make sets $(MAKE) configure:2466: result: yes configure:2655: checking build system type configure:2669: result: i686-pc-linux-gnu configure:2689: checking host system type configure:2702: result: i686-pc-linux-gnu configure:2772: checking for gcc configure:2788: found /usr/bin/gcc configure:2799: result: gcc configure:3028: checking for C compiler version configure:3037: gcc --version >&5 gcc (Ubuntu 4.4.3-4ubuntu5) 4.4.3 Copyright (C) 2009 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:3048: $? = 0 configure:3037: gcc -v >&5 Using built-in specs. Target: i486-linux-gnu Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.4.3-4ubuntu5' --with-bugurl=file:///usr/share/doc/gcc-4.4/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --enable-shared --enable-multiarch --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.4 --program-suffix=-4.4 --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-plugin --enable-objc-gc --enable-targets=all --disable-werror --with-arch-32=i486 --with-tune=generic --enable-checking=release --build=i486-linux-gnu --host=i486-linux-gnu --target=i486-linux-gnu Thread model: posix gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) configure:3048: $? = 0 configure:3037: gcc -V >&5 gcc: '-V' option must have argument configure:3048: $? = 1 configure:3037: gcc -qversion >&5 gcc: unrecognized option '-qversion' gcc: no input files configure:3048: $? = 1 configure:3068: checking whether the C compiler works configure:3090: gcc conftest.c >&5 configure:3094: $? = 0 configure:3143: result: yes configure:3146: checking for C compiler default output file name configure:3148: result: a.out configure:3154: checking for suffix of executables configure:3161: gcc -o conftest conftest.c >&5 configure:3165: $? = 0 configure:3187: result: configure:3209: checking whether we are cross compiling configure:3217: gcc -o conftest conftest.c >&5 configure:3221: $? = 0 configure:3228: ./conftest configure:3232: $? = 0 configure:3247: result: no configure:3252: checking for suffix of object files configure:3274: gcc -c conftest.c >&5 configure:3278: $? = 0 configure:3299: result: o configure:3303: checking whether we are using the GNU C compiler configure:3322: gcc -c conftest.c >&5 configure:3322: $? = 0 configure:3331: result: yes configure:3340: checking whether gcc accepts -g configure:3360: gcc -c -g conftest.c >&5 configure:3360: $? = 0 configure:3401: result: yes configure:3418: checking for gcc option to accept ISO C89 configure:3482: gcc -c -g -O2 conftest.c >&5 configure:3482: $? = 0 configure:3495: result: none needed configure:3526: checking for style of include used by make configure:3554: result: GNU configure:3579: checking dependency style of gcc configure:3670: result: gcc3 configure:3685: checking for gcc option to accept ISO C99 configure:3834: gcc -c -g -O2 conftest.c >&5 conftest.c:61: error: expected ';', ',' or ')' before 'text' conftest.c: In function 'main': conftest.c:115: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'newvar' conftest.c:115: error: 'newvar' undeclared (first use in this function) conftest.c:115: error: (Each undeclared identifier is reported only once conftest.c:115: error: for each function it appears in.) conftest.c:125: error: 'for' loop initial declarations are only allowed in C99 mode conftest.c:125: note: use option -std=c99 or -std=gnu99 to compile your code configure:3834: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "jscoverage" | #define PACKAGE_TARNAME "jscoverage" | #define PACKAGE_VERSION "0.4" | #define PACKAGE_STRING "jscoverage 0.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "jscoverage" | #define VERSION "0.4" | /* 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:3834: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:3834: $? = 0 configure:3854: result: -std=gnu99 configure:3920: checking for g++ configure:3936: found /usr/bin/g++ configure:3947: result: g++ configure:3974: checking for C++ compiler version configure:3983: g++ --version >&5 g++ (Ubuntu 4.4.3-4ubuntu5) 4.4.3 Copyright (C) 2009 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:3994: $? = 0 configure:3983: g++ -v >&5 Using built-in specs. Target: i486-linux-gnu Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.4.3-4ubuntu5' --with-bugurl=file:///usr/share/doc/gcc-4.4/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --enable-shared --enable-multiarch --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.4 --program-suffix=-4.4 --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-plugin --enable-objc-gc --enable-targets=all --disable-werror --with-arch-32=i486 --with-tune=generic --enable-checking=release --build=i486-linux-gnu --host=i486-linux-gnu --target=i486-linux-gnu Thread model: posix gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) configure:3994: $? = 0 configure:3983: g++ -V >&5 g++: '-V' option must have argument configure:3994: $? = 1 configure:3983: g++ -qversion >&5 g++: unrecognized option '-qversion' g++: no input files configure:3994: $? = 1 configure:3998: checking whether we are using the GNU C++ compiler configure:4017: g++ -c conftest.cpp >&5 configure:4017: $? = 0 configure:4026: result: yes configure:4035: checking whether g++ accepts -g configure:4055: g++ -c -g conftest.cpp >&5 configure:4055: $? = 0 configure:4096: result: yes configure:4121: checking dependency style of g++ configure:4212: result: gcc3 configure:4269: checking for ld used by GCC configure:4333: result: /usr/bin/ld configure:4340: checking if the linker (/usr/bin/ld) is GNU ld configure:4353: result: yes configure:4360: checking for shared library run path origin configure:4373: result: done configure:4882: checking for iconv configure:4904: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4904: $? = 0 configure:4936: result: yes configure:4939: checking for working iconv configure:5015: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:5015: $? = 0 configure:5015: ./conftest configure:5015: $? = 0 configure:5027: result: yes configure:5055: checking for iconv declaration configure:5084: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5084: $? = 0 configure:5095: result: install-shextern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); configure:5112: checking how to run the C preprocessor configure:5143: gcc -std=gnu99 -E conftest.c configure:5143: $? = 0 configure:5157: gcc -std=gnu99 -E conftest.c conftest.c:13:28: error: ac_nonexistent.h: No such file or directory configure:5157: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "jscoverage" | #define PACKAGE_TARNAME "jscoverage" | #define PACKAGE_VERSION "0.4" | #define PACKAGE_STRING "jscoverage 0.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "jscoverage" | #define VERSION "0.4" | #define HAVE_ICONV 1 | #define ICONV_CONST | /* end confdefs.h. */ | #include configure:5182: result: gcc -std=gnu99 -E configure:5202: gcc -std=gnu99 -E conftest.c configure:5202: $? = 0 configure:5216: gcc -std=gnu99 -E conftest.c conftest.c:13:28: error: ac_nonexistent.h: No such file or directory configure:5216: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "jscoverage" | #define PACKAGE_TARNAME "jscoverage" | #define PACKAGE_VERSION "0.4" | #define PACKAGE_STRING "jscoverage 0.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "jscoverage" | #define VERSION "0.4" | #define HAVE_ICONV 1 | #define ICONV_CONST | /* end confdefs.h. */ | #include configure:5245: checking for grep that handles long lines and -e configure:5303: result: /bin/grep configure:5308: checking for egrep configure:5370: result: /bin/grep -E configure:5375: checking for ANSI C header files configure:5395: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5395: $? = 0 configure:5468: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:5468: $? = 0 configure:5468: ./conftest configure:5468: $? = 0 configure:5479: result: yes configure:5492: checking for sys/types.h configure:5492: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5492: $? = 0 configure:5492: result: yes configure:5492: checking for sys/stat.h configure:5492: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5492: $? = 0 configure:5492: result: yes configure:5492: checking for stdlib.h configure:5492: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5492: $? = 0 configure:5492: result: yes configure:5492: checking for string.h configure:5492: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5492: $? = 0 configure:5492: result: yes configure:5492: checking for memory.h configure:5492: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5492: $? = 0 configure:5492: result: yes configure:5492: checking for strings.h configure:5492: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5492: $? = 0 configure:5492: result: yes configure:5492: checking for inttypes.h configure:5492: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5492: $? = 0 configure:5492: result: yes configure:5492: checking for stdint.h configure:5492: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5492: $? = 0 configure:5492: result: yes configure:5492: checking for unistd.h configure:5492: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5492: $? = 0 configure:5492: result: yes configure:5507: checking pthread.h usability configure:5507: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5507: $? = 0 configure:5507: result: yes configure:5507: checking pthread.h presence configure:5507: gcc -std=gnu99 -E conftest.c configure:5507: $? = 0 configure:5507: result: yes configure:5507: checking for pthread.h configure:5507: result: yes configure:5519: checking iconv.h usability configure:5519: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5519: $? = 0 configure:5519: result: yes configure:5519: checking iconv.h presence configure:5519: gcc -std=gnu99 -E conftest.c configure:5519: $? = 0 configure:5519: result: yes configure:5519: checking for iconv.h configure:5519: result: yes configure:5531: checking windows.h usability configure:5531: gcc -std=gnu99 -c -g -O2 conftest.c >&5 conftest.c:58:21: error: windows.h: No such file or directory configure:5531: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "jscoverage" | #define PACKAGE_TARNAME "jscoverage" | #define PACKAGE_VERSION "0.4" | #define PACKAGE_STRING "jscoverage 0.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "jscoverage" | #define VERSION "0.4" | #define HAVE_ICONV 1 | #define ICONV_CONST | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_PTHREAD_H 1 | #define HAVE_ICONV_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:5531: result: no configure:5531: checking windows.h presence configure:5531: gcc -std=gnu99 -E conftest.c conftest.c:25:21: error: windows.h: No such file or directory configure:5531: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "jscoverage" | #define PACKAGE_TARNAME "jscoverage" | #define PACKAGE_VERSION "0.4" | #define PACKAGE_STRING "jscoverage 0.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "jscoverage" | #define VERSION "0.4" | #define HAVE_ICONV 1 | #define ICONV_CONST | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_PTHREAD_H 1 | #define HAVE_ICONV_H 1 | /* end confdefs.h. */ | #include configure:5531: result: no configure:5531: checking for windows.h configure:5531: result: no configure:5543: checking whether byte ordering is bigendian configure:5558: gcc -std=gnu99 -c -g -O2 conftest.c >&5 conftest.c:26: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'a' configure:5558: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "jscoverage" | #define PACKAGE_TARNAME "jscoverage" | #define PACKAGE_VERSION "0.4" | #define PACKAGE_STRING "jscoverage 0.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "jscoverage" | #define VERSION "0.4" | #define HAVE_ICONV 1 | #define ICONV_CONST | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_PTHREAD_H 1 | #define HAVE_ICONV_H 1 | /* end confdefs.h. */ | #ifndef __APPLE_CC__ | not a universal capable compiler | #endif | typedef int dummy; | configure:5603: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5603: $? = 0 configure:5621: gcc -std=gnu99 -c -g -O2 conftest.c >&5 conftest.c: In function 'main': conftest.c:32: error: 'not' undeclared (first use in this function) conftest.c:32: error: (Each undeclared identifier is reported only once conftest.c:32: error: for each function it appears in.) conftest.c:32: error: expected ';' before 'big' configure:5621: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "jscoverage" | #define PACKAGE_TARNAME "jscoverage" | #define PACKAGE_VERSION "0.4" | #define PACKAGE_STRING "jscoverage 0.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "jscoverage" | #define VERSION "0.4" | #define HAVE_ICONV 1 | #define ICONV_CONST | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_PTHREAD_H 1 | #define HAVE_ICONV_H 1 | /* end confdefs.h. */ | #include | #include | | int | main () | { | #if BYTE_ORDER != BIG_ENDIAN | not big endian | #endif | | ; | return 0; | } configure:5749: result: no configure:5772: checking for getaddrinfo configure:5772: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:5772: $? = 0 configure:5772: result: yes configure:5772: checking for gethostbyname_r configure:5772: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:5772: $? = 0 configure:5772: result: yes configure:5772: checking for inet_aton configure:5772: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:5772: $? = 0 configure:5772: result: yes configure:5772: checking for strndup configure:5772: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 conftest.c:51: warning: conflicting types for built-in function 'strndup' configure:5772: $? = 0 configure:5772: result: yes configure:5772: checking for vasprintf configure:5772: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:5772: $? = 0 configure:5772: result: yes configure:5772: checking for asprintf configure:5772: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:5772: $? = 0 configure:5772: result: yes configure:5782: checking for MultiByteToWideChar configure:5801: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 conftest.c:31:21: error: windows.h: No such file or directory conftest.c: In function 'main': conftest.c:35: warning: implicit declaration of function 'MultiByteToWideChar' configure:5801: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "jscoverage" | #define PACKAGE_TARNAME "jscoverage" | #define PACKAGE_VERSION "0.4" | #define PACKAGE_STRING "jscoverage 0.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "jscoverage" | #define VERSION "0.4" | #define HAVE_ICONV 1 | #define ICONV_CONST | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_PTHREAD_H 1 | #define HAVE_ICONV_H 1 | #define HAVE_GETADDRINFO 1 | #define HAVE_GETHOSTBYNAME_R 1 | #define HAVE_INET_ATON 1 | #define HAVE_STRNDUP 1 | #define HAVE_VASPRINTF 1 | #define HAVE_ASPRINTF 1 | /* end confdefs.h. */ | #include | int | main () | { | MultiByteToWideChar(0,0,0,0,0,0); | ; | return 0; | } configure:5810: result: no configure:5969: creating ./config.status ## ---------------------- ## ## Running config.status. ## ## ---------------------- ## This file was extended by jscoverage config.status 0.4, which was generated by GNU Autoconf 2.65. Invocation command line was CONFIG_FILES = CONFIG_HEADERS = CONFIG_LINKS = CONFIG_COMMANDS = $ ./config.status on sunfang-laptop config.status:881: creating Makefile config.status:881: creating make-dist.sh config.status:881: creating make-bin-dist.sh config.status:881: creating tests/Makefile config.status:881: creating config.h config.status:1053: config.h is unchanged config.status:1101: executing depfiles commands ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_build=i686-pc-linux-gnu ac_cv_c_bigendian=no ac_cv_c_compiler_gnu=yes ac_cv_cxx_compiler_gnu=yes ac_cv_env_CCC_set= ac_cv_env_CCC_value= ac_cv_env_CC_set= ac_cv_env_CC_value= ac_cv_env_CFLAGS_set= ac_cv_env_CFLAGS_value= ac_cv_env_CPPFLAGS_set= ac_cv_env_CPPFLAGS_value= ac_cv_env_CPP_set= ac_cv_env_CPP_value= ac_cv_env_CXXFLAGS_set= ac_cv_env_CXXFLAGS_value= ac_cv_env_CXX_set= ac_cv_env_CXX_value= ac_cv_env_LDFLAGS_set= ac_cv_env_LDFLAGS_value= ac_cv_env_LIBS_set= ac_cv_env_LIBS_value= ac_cv_env_build_alias_set= ac_cv_env_build_alias_value= ac_cv_env_host_alias_set= ac_cv_env_host_alias_value= ac_cv_env_target_alias_set= ac_cv_env_target_alias_value= ac_cv_func_asprintf=yes ac_cv_func_getaddrinfo=yes ac_cv_func_gethostbyname_r=yes ac_cv_func_inet_aton=yes ac_cv_func_strndup=yes ac_cv_func_vasprintf=yes ac_cv_header_iconv_h=yes ac_cv_header_inttypes_h=yes ac_cv_header_memory_h=yes ac_cv_header_pthread_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_stat_h=yes ac_cv_header_sys_types_h=yes ac_cv_header_unistd_h=yes ac_cv_header_windows_h=no ac_cv_host=i686-pc-linux-gnu ac_cv_objext=o ac_cv_path_EGREP='/bin/grep -E' ac_cv_path_GREP=/bin/grep ac_cv_path_install='/usr/bin/install -c' ac_cv_path_mkdir=/bin/mkdir ac_cv_prog_AWK=gawk ac_cv_prog_CPP='gcc -std=gnu99 -E' ac_cv_prog_ac_ct_CC=gcc ac_cv_prog_ac_ct_CXX=g++ ac_cv_prog_cc_c89= ac_cv_prog_cc_c99=-std=gnu99 ac_cv_prog_cc_g=yes ac_cv_prog_cxx_g=yes ac_cv_prog_make_make_set=yes acl_cv_hardcode_direct=no acl_cv_hardcode_libdir_flag_spec='${wl}-rpath ${wl}$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/bin/ld acl_cv_prog_gnu_ld=yes acl_cv_rpath=done acl_cv_shlibext=so acl_cv_wl=-Wl, am_cv_CC_dependencies_compiler_type=gcc3 am_cv_CXX_dependencies_compiler_type=gcc3 am_cv_func_iconv=yes am_cv_func_iconv_works=yes am_cv_lib_iconv=no am_cv_proto_iconv='extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);' am_cv_proto_iconv_arg1= ## ----------------- ## ## Output variables. ## ## ----------------- ## ACLOCAL='${SHELL} /root/node-jscoverage/missing --run aclocal-1.10' AMDEPBACKSLASH='\' AMDEP_FALSE='#' AMDEP_TRUE='' AMTAR='${SHELL} /root/node-jscoverage/missing --run tar' AUTOCONF='${SHELL} /root/node-jscoverage/missing --run autoconf' AUTOHEADER='${SHELL} /root/node-jscoverage/missing --run autoheader' AUTOMAKE='${SHELL} /root/node-jscoverage/missing --run automake-1.10' AWK='gawk' CC='gcc -std=gnu99' CCDEPMODE='depmode=gcc3' CFLAGS='-g -O2' CPP='gcc -std=gnu99 -E' CPPFLAGS='' CXX='g++' CXXDEPMODE='depmode=gcc3' CXXFLAGS='-g -O2' CYGPATH_W='echo' DEFS='-DHAVE_CONFIG_H' DEPDIR='.deps' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='/bin/grep -E' EXEEXT='' EXTRA_SOCKET_LIBS='' EXTRA_THREAD_LIBS='-lpthread' EXTRA_TIMER_LIBS='' GREP='/bin/grep' INSTALL_DATA='${INSTALL} -m 644' INSTALL_PROGRAM='${INSTALL}' INSTALL_SCRIPT='${INSTALL}' INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' LDFLAGS='' LIBICONV='' LIBOBJS='' LIBS='' LTLIBICONV='' LTLIBOBJS='' MAKEINFO='${SHELL} /root/node-jscoverage/missing --run makeinfo' MKDIR_P='/bin/mkdir -p' OBJEXT='o' PACKAGE='jscoverage' PACKAGE_BUGREPORT='' PACKAGE_NAME='jscoverage' PACKAGE_STRING='jscoverage 0.4' PACKAGE_TARNAME='jscoverage' PACKAGE_URL='' PACKAGE_VERSION='0.4' PATH_SEPARATOR=':' SET_MAKE='' SHELL='/bin/bash' STRIP='' VERSION='0.4' XP_DEF='-DXP_UNIX' ac_ct_CC='gcc' ac_ct_CXX='g++' 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='i686-pc-linux-gnu' build_alias='' build_cpu='i686' build_os='linux-gnu' build_vendor='pc' datadir='${datarootdir}' datarootdir='${prefix}/share' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' dvidir='${docdir}' exec_prefix='${prefix}' host='i686-pc-linux-gnu' host_alias='' host_cpu='i686' host_os='linux-gnu' host_vendor='pc' htmldir='${docdir}' includedir='${prefix}/include' infodir='${datarootdir}/info' install_sh='$(SHELL) /root/node-jscoverage/install-sh' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' localedir='${datarootdir}/locale' localstatedir='${prefix}/var' mandir='${datarootdir}/man' mkdir_p='/bin/mkdir -p' oldincludedir='/usr/include' pdfdir='${docdir}' prefix='/usr/local' program_transform_name='s,x,x,' psdir='${docdir}' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' sysconfdir='${prefix}/etc' target_alias='' ## ----------- ## ## confdefs.h. ## ## ----------- ## /* confdefs.h */ #define PACKAGE_NAME "jscoverage" #define PACKAGE_TARNAME "jscoverage" #define PACKAGE_VERSION "0.4" #define PACKAGE_STRING "jscoverage 0.4" #define PACKAGE_BUGREPORT "" #define PACKAGE_URL "" #define PACKAGE "jscoverage" #define VERSION "0.4" #define HAVE_ICONV 1 #define ICONV_CONST #define STDC_HEADERS 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_SYS_STAT_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STRING_H 1 #define HAVE_MEMORY_H 1 #define HAVE_STRINGS_H 1 #define HAVE_INTTYPES_H 1 #define HAVE_STDINT_H 1 #define HAVE_UNISTD_H 1 #define HAVE_PTHREAD_H 1 #define HAVE_ICONV_H 1 #define HAVE_GETADDRINFO 1 #define HAVE_GETHOSTBYNAME_R 1 #define HAVE_INET_ATON 1 #define HAVE_STRNDUP 1 #define HAVE_VASPRINTF 1 #define HAVE_ASPRINTF 1 configure: exit 0