This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by GD configure 2.2.5, which was generated by GNU Autoconf 2.69. Invocation command line was $ ./configure --with-png=/usr/local/ ## --------- ## ## Platform. ## ## --------- ## hostname = nwpi.krc.karelia.ru uname -m = i386 uname -r = 8.3-RELEASE uname -s = FreeBSD uname -v = FreeBSD 8.3-RELEASE #0: Tue Apr 23 15:15:23 MSK 2013 root@:/usr/src/sys/i386/compile/mykernel /usr/bin/uname -p = i386 /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: /sbin PATH: /bin PATH: /usr/sbin PATH: /usr/bin PATH: /usr/games PATH: /usr/local/sbin PATH: /usr/local/bin PATH: /usr/local/apache/htdocs/wwwroot/whsea/bin PATH: /usr/local/lib/ ## ----------- ## ## Core tests. ## ## ----------- ## configure:2399: checking build system type configure:2413: result: i386-unknown-freebsd8.3 configure:2433: checking host system type configure:2446: result: i386-unknown-freebsd8.3 configure:2517: checking for a BSD-compatible install configure:2585: result: /usr/bin/install -c configure:2596: checking whether build environment is sane configure:2651: result: yes configure:2802: checking for a thread-safe mkdir -p configure:2841: result: config/install-sh -c -d configure:2848: checking for gawk configure:2878: result: no configure:2848: checking for mawk configure:2878: result: no configure:2848: checking for nawk configure:2864: found /usr/bin/nawk configure:2875: result: nawk configure:2886: checking whether make sets $(MAKE) configure:2908: result: yes configure:2937: checking whether make supports nested variables configure:2954: result: yes configure:3095: checking for style of include used by make configure:3123: result: GNU configure:3194: checking for gcc configure:3210: found /usr/bin/gcc configure:3221: result: gcc configure:3450: checking for C compiler version configure:3459: gcc --version >&5 gcc (GCC) 4.2.2 20070831 prerelease [FreeBSD] Copyright (C) 2007 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:3470: $? = 0 configure:3459: gcc -v >&5 Using built-in specs. Target: i386-undermydesk-freebsd Configured with: FreeBSD/i386 system compiler Thread model: posix gcc version 4.2.2 20070831 prerelease [FreeBSD] configure:3470: $? = 0 configure:3459: gcc -V >&5 gcc: '-V' option must have argument configure:3470: $? = 1 configure:3459: gcc -qversion >&5 gcc: unrecognized option '-qversion' gcc: No input files specified configure:3470: $? = 1 configure:3490: checking whether the C compiler works configure:3512: gcc conftest.c >&5 configure:3516: $? = 0 configure:3564: result: yes configure:3567: checking for C compiler default output file name configure:3569: result: a.out configure:3575: checking for suffix of executables configure:3582: gcc -o conftest conftest.c >&5 configure:3586: $? = 0 configure:3608: result: configure:3630: checking whether we are cross compiling configure:3638: gcc -o conftest conftest.c >&5 configure:3642: $? = 0 configure:3649: ./conftest configure:3653: $? = 0 configure:3668: result: no configure:3673: checking for suffix of object files configure:3695: gcc -c conftest.c >&5 configure:3699: $? = 0 configure:3720: result: o configure:3724: checking whether we are using the GNU C compiler configure:3743: gcc -c conftest.c >&5 configure:3743: $? = 0 configure:3752: result: yes configure:3761: checking whether gcc accepts -g configure:3781: gcc -c -g conftest.c >&5 configure:3781: $? = 0 configure:3822: result: yes configure:3839: checking for gcc option to accept ISO C89 configure:3902: gcc -c -g -O2 conftest.c >&5 configure:3902: $? = 0 configure:3915: result: none needed configure:3940: checking whether gcc understands -c and -o together configure:3962: gcc -c conftest.c -o conftest2.o configure:3965: $? = 0 configure:3962: gcc -c conftest.c -o conftest2.o configure:3965: $? = 0 configure:3977: result: yes configure:3996: checking dependency style of gcc configure:4107: result: gcc3 configure:4172: checking for ar configure:4188: found /usr/bin/ar configure:4199: result: ar configure:4225: checking the archiver (ar) interface configure:4241: gcc -c -g -O2 conftest.c >&5 configure:4241: $? = 0 configure:4243: ar cru libconftest.a conftest.o >&5 configure:4246: $? = 0 configure:4274: result: ar configure:4298: checking for gcc option to accept ISO C99 configure:4447: 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 declaration used outside C99 mode configure:4447: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GD" | #define PACKAGE_TARNAME "libgd" | #define PACKAGE_VERSION "2.2.5" | #define PACKAGE_STRING "GD 2.2.5" | #define PACKAGE_BUGREPORT "https://github.com/libgd/libgd/issues" | #define PACKAGE_URL "http://lib.gd" | #define PACKAGE "libgd" | #define VERSION "2.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:4447: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:4447: $? = 0 configure:4467: result: -std=gnu99 configure:4568: checking for gcc -std=gnu99 option to accept ISO Standard C configure:4582: result: -std=gnu99 configure:4634: checking how to print strings configure:4661: result: printf configure:4682: checking for a sed that does not truncate output configure:4746: result: /usr/bin/sed configure:4764: checking for grep that handles long lines and -e configure:4822: result: /usr/bin/grep configure:4827: checking for egrep configure:4889: result: /usr/bin/grep -E configure:4894: checking for fgrep configure:4956: result: /usr/bin/grep -F configure:4991: checking for ld used by gcc -std=gnu99 configure:5058: result: /usr/bin/ld configure:5065: checking if the linker (/usr/bin/ld) is GNU ld configure:5080: result: yes configure:5092: checking for BSD- or MS-compatible name lister (nm) configure:5146: result: /usr/bin/nm -B configure:5276: checking the name lister (/usr/bin/nm -B) interface configure:5283: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5286: /usr/bin/nm -B "conftest.o" configure:5289: output 00000000 B some_variable configure:5296: result: BSD nm configure:5299: checking whether ln -s works configure:5303: result: yes configure:5311: checking the maximum length of command line arguments configure:5442: result: 196608 configure:5490: checking how to convert i386-unknown-freebsd8.3 file names to i386-unknown-freebsd8.3 format configure:5530: result: func_convert_file_noop configure:5537: checking how to convert i386-unknown-freebsd8.3 file names to toolchain format configure:5557: result: func_convert_file_noop configure:5564: checking for /usr/bin/ld option to reload object files configure:5571: result: -r configure:5645: checking for objdump configure:5661: found /usr/bin/objdump configure:5672: result: objdump configure:5704: checking how to recognize dependent libraries configure:5904: result: pass_all configure:5989: checking for dlltool configure:6019: result: no configure:6049: checking how to associate runtime and link libraries configure:6076: result: printf %s\n configure:6200: checking for archiver @FILE support configure:6217: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:6217: $? = 0 configure:6220: ar cru libconftest.a @conftest.lst >&5 ar: warning: can't open file: @conftest.lst: No such file or directory configure:6223: $? = 0 configure:6228: ar cru libconftest.a @conftest.lst >&5 ar: warning: can't open file: @conftest.lst: No such file or directory configure:6231: $? = 0 configure:6243: result: no configure:6301: checking for strip configure:6317: found /usr/bin/strip configure:6328: result: strip configure:6400: checking for ranlib configure:6416: found /usr/bin/ranlib configure:6427: result: ranlib configure:6529: checking command to parse /usr/bin/nm -B output from gcc -std=gnu99 object configure:6682: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:6685: $? = 0 configure:6689: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm configure:6692: $? = 0 configure:6758: gcc -std=gnu99 -o conftest -g -O2 conftest.c conftstm.o >&5 configure:6761: $? = 0 configure:6799: result: ok configure:6846: checking for sysroot configure:6876: result: no configure:6883: checking for a working dd configure:6921: result: /bin/dd configure:6925: checking how to truncate binary pipes configure:6940: result: /bin/dd bs=4096 count=1 configure:7269: checking for mt configure:7285: found /usr/bin/mt configure:7296: result: mt configure:7319: checking if mt is a manifest tool configure:7325: mt '-?' mt: illegal option -- ? usage: mt [-f device] command [count] configure:7333: result: no configure:8010: checking how to run the C preprocessor configure:8041: gcc -std=gnu99 -E conftest.c configure:8041: $? = 0 configure:8055: gcc -std=gnu99 -E conftest.c conftest.c:11:28: error: ac_nonexistent.h: No such file or directory configure:8055: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GD" | #define PACKAGE_TARNAME "libgd" | #define PACKAGE_VERSION "2.2.5" | #define PACKAGE_STRING "GD 2.2.5" | #define PACKAGE_BUGREPORT "https://github.com/libgd/libgd/issues" | #define PACKAGE_URL "http://lib.gd" | #define PACKAGE "libgd" | #define VERSION "2.2.5" | /* end confdefs.h. */ | #include configure:8080: result: gcc -std=gnu99 -E configure:8100: gcc -std=gnu99 -E conftest.c configure:8100: $? = 0 configure:8114: gcc -std=gnu99 -E conftest.c conftest.c:11:28: error: ac_nonexistent.h: No such file or directory configure:8114: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GD" | #define PACKAGE_TARNAME "libgd" | #define PACKAGE_VERSION "2.2.5" | #define PACKAGE_STRING "GD 2.2.5" | #define PACKAGE_BUGREPORT "https://github.com/libgd/libgd/issues" | #define PACKAGE_URL "http://lib.gd" | #define PACKAGE "libgd" | #define VERSION "2.2.5" | /* end confdefs.h. */ | #include configure:8143: checking for ANSI C header files configure:8163: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:8163: $? = 0 configure:8236: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:8236: $? = 0 configure:8236: ./conftest configure:8236: $? = 0 configure:8247: result: yes configure:8260: checking for sys/types.h configure:8260: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:8260: $? = 0 configure:8260: result: yes configure:8260: checking for sys/stat.h configure:8260: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:8260: $? = 0 configure:8260: result: yes configure:8260: checking for stdlib.h configure:8260: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:8260: $? = 0 configure:8260: result: yes configure:8260: checking for string.h configure:8260: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:8260: $? = 0 configure:8260: result: yes configure:8260: checking for memory.h configure:8260: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:8260: $? = 0 configure:8260: result: yes configure:8260: checking for strings.h configure:8260: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:8260: $? = 0 configure:8260: result: yes configure:8260: checking for inttypes.h configure:8260: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:8260: $? = 0 configure:8260: result: yes configure:8260: checking for stdint.h configure:8260: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:8260: $? = 0 configure:8260: result: yes configure:8260: checking for unistd.h configure:8260: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:8260: $? = 0 configure:8260: result: yes configure:8274: checking for dlfcn.h configure:8274: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:8274: $? = 0 configure:8274: result: yes configure:8530: checking for objdir configure:8545: result: .libs configure:8809: checking if gcc -std=gnu99 supports -fno-rtti -fno-exceptions configure:8827: gcc -std=gnu99 -c -g -O2 -fno-rtti -fno-exceptions conftest.c >&5 cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ but not for C configure:8831: $? = 0 configure:8844: result: no configure:9202: checking for gcc -std=gnu99 option to produce PIC configure:9209: result: -fPIC -DPIC configure:9217: checking if gcc -std=gnu99 PIC flag -fPIC -DPIC works configure:9235: gcc -std=gnu99 -c -g -O2 -fPIC -DPIC -DPIC conftest.c >&5 configure:9239: $? = 0 configure:9252: result: yes configure:9281: checking if gcc -std=gnu99 static flag -static works configure:9309: result: yes configure:9324: checking if gcc -std=gnu99 supports -c -o file.o configure:9345: gcc -std=gnu99 -c -g -O2 -o out/conftest2.o conftest.c >&5 configure:9349: $? = 0 configure:9371: result: yes configure:9379: checking if gcc -std=gnu99 supports -c -o file.o configure:9426: result: yes configure:9459: checking whether the gcc -std=gnu99 linker (/usr/bin/ld) supports shared libraries configure:10722: result: yes configure:10759: checking whether -lc should be explicitly linked in configure:10767: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:10770: $? = 0 configure:10785: gcc -std=gnu99 -shared -fPIC -DPIC conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /usr/bin/grep -lc \>/dev/null 2\>\&1 configure:10788: $? = 0 configure:10802: result: no configure:10962: checking dynamic linker characteristics configure:11792: result: freebsd8.3 ld.so configure:11914: checking how to hardcode library paths into programs configure:11939: result: immediate configure:12487: checking whether stripping libraries is possible configure:12492: result: yes configure:12527: checking if libtool supports shared libraries configure:12529: result: yes configure:12532: checking whether to build shared libraries configure:12557: result: yes configure:12560: checking whether to build static libraries configure:12564: result: yes configure:12601: checking whether ln -s works configure:12605: result: yes configure:12612: checking whether make sets $(MAKE) configure:12634: result: yes configure:12698: checking for pkg-config configure:12731: result: no configure:12765: checking for X configure:12873: gcc -std=gnu99 -E conftest.c conftest.c:23:22: error: X11/Xlib.h: No such file or directory configure:12873: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GD" | #define PACKAGE_TARNAME "libgd" | #define PACKAGE_VERSION "2.2.5" | #define PACKAGE_STRING "GD 2.2.5" | #define PACKAGE_BUGREPORT "https://github.com/libgd/libgd/issues" | #define PACKAGE_URL "http://lib.gd" | #define PACKAGE "libgd" | #define VERSION "2.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 HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | /* end confdefs.h. */ | #include configure:12904: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lX11 >&5 conftest.c:23:22: error: X11/Xlib.h: No such file or directory conftest.c: In function 'main': conftest.c:27: warning: implicit declaration of function 'XrmInitialize' configure:12904: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GD" | #define PACKAGE_TARNAME "libgd" | #define PACKAGE_VERSION "2.2.5" | #define PACKAGE_STRING "GD 2.2.5" | #define PACKAGE_BUGREPORT "https://github.com/libgd/libgd/issues" | #define PACKAGE_URL "http://lib.gd" | #define PACKAGE "libgd" | #define VERSION "2.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 HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | /* end confdefs.h. */ | #include | int | main () | { | XrmInitialize () | ; | return 0; | } configure:12943: result: no configure:12966: checking for ANSI C header files configure:13070: result: yes configure:13084: checking for dirent.h configure:13084: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:13084: $? = 0 configure:13084: result: yes configure:13084: checking for errno.h configure:13084: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:13084: $? = 0 configure:13084: result: yes configure:13084: checking for inttypes.h configure:13084: result: yes configure:13084: checking for limits.h configure:13084: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:13084: $? = 0 configure:13084: result: yes configure:13084: checking for stddef.h configure:13084: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:13084: $? = 0 configure:13084: result: yes configure:13084: checking for stdint.h configure:13084: result: yes configure:13084: checking for stdlib.h configure:13084: result: yes configure:13084: checking for string.h configure:13084: result: yes configure:13084: checking for strings.h configure:13084: result: yes configure:13084: checking for unistd.h configure:13084: result: yes configure:13084: checking for sys/stat.h configure:13084: result: yes configure:13084: checking for sys/types.h configure:13084: result: yes configure:13163: checking for ld used by gcc -std=gnu99 configure:13230: result: /usr/bin/ld configure:13237: checking if the linker (/usr/bin/ld) is GNU ld configure:13252: result: yes configure:13259: checking for shared library run path origin configure:13272: result: done configure:13850: checking for iconv configure:13874: gcc -std=gnu99 -o conftest -g -O2 -I/usr/local/include conftest.c >&5 conftest.c:38:19: error: iconv.h: No such file or directory conftest.c: In function 'main': conftest.c:43: error: 'iconv_t' undeclared (first use in this function) conftest.c:43: error: (Each undeclared identifier is reported only once conftest.c:43: error: for each function it appears in.) conftest.c:43: error: expected ';' before 'cd' conftest.c:44: warning: implicit declaration of function 'iconv' conftest.c:44: error: 'cd' undeclared (first use in this function) conftest.c:45: warning: implicit declaration of function 'iconv_close' configure:13874: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GD" | #define PACKAGE_TARNAME "libgd" | #define PACKAGE_VERSION "2.2.5" | #define PACKAGE_STRING "GD 2.2.5" | #define PACKAGE_BUGREPORT "https://github.com/libgd/libgd/issues" | #define PACKAGE_URL "http://lib.gd" | #define PACKAGE "libgd" | #define VERSION "2.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 HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | /* end confdefs.h. */ | | #include | #include | | int | main () | { | iconv_t cd = iconv_open("",""); | iconv(cd,NULL,NULL,NULL,NULL); | iconv_close(cd); | ; | return 0; | } configure:13898: gcc -std=gnu99 -o conftest -g -O2 -I/usr/local/include conftest.c /usr/local/lib/libiconv.so -Wl,-rpath -Wl,/usr/local/lib >&5 conftest.c:38:19: error: iconv.h: No such file or directory conftest.c: In function 'main': conftest.c:43: error: 'iconv_t' undeclared (first use in this function) conftest.c:43: error: (Each undeclared identifier is reported only once conftest.c:43: error: for each function it appears in.) conftest.c:43: error: expected ';' before 'cd' conftest.c:44: warning: implicit declaration of function 'iconv' conftest.c:44: error: 'cd' undeclared (first use in this function) conftest.c:45: warning: implicit declaration of function 'iconv_close' configure:13898: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GD" | #define PACKAGE_TARNAME "libgd" | #define PACKAGE_VERSION "2.2.5" | #define PACKAGE_STRING "GD 2.2.5" | #define PACKAGE_BUGREPORT "https://github.com/libgd/libgd/issues" | #define PACKAGE_URL "http://lib.gd" | #define PACKAGE "libgd" | #define VERSION "2.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 HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | /* end confdefs.h. */ | | #include | #include | | int | main () | { | iconv_t cd = iconv_open("",""); | iconv(cd,NULL,NULL,NULL,NULL); | iconv_close(cd); | ; | return 0; | } configure:13908: result: no, consider installing GNU libiconv configure:14137: checking iconv.h usability configure:14137: gcc -std=gnu99 -c -g -O2 conftest.c >&5 conftest.c:69:19: error: iconv.h: No such file or directory configure:14137: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GD" | #define PACKAGE_TARNAME "libgd" | #define PACKAGE_VERSION "2.2.5" | #define PACKAGE_STRING "GD 2.2.5" | #define PACKAGE_BUGREPORT "https://github.com/libgd/libgd/issues" | #define PACKAGE_URL "http://lib.gd" | #define PACKAGE "libgd" | #define VERSION "2.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 HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_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:14137: result: no configure:14137: checking iconv.h presence configure:14137: gcc -std=gnu99 -E conftest.c conftest.c:36:19: error: iconv.h: No such file or directory configure:14137: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GD" | #define PACKAGE_TARNAME "libgd" | #define PACKAGE_VERSION "2.2.5" | #define PACKAGE_STRING "GD 2.2.5" | #define PACKAGE_BUGREPORT "https://github.com/libgd/libgd/issues" | #define PACKAGE_URL "http://lib.gd" | #define PACKAGE "libgd" | #define VERSION "2.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 HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | /* end confdefs.h. */ | #include configure:14137: result: no configure:14137: checking for iconv.h configure:14137: result: no configure:14178: checking for sin configure:14178: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 conftest.c:59: warning: conflicting types for built-in function 'sin' /var/tmp//ccGn4q3w.o(.text+0x12): In function `main': /usr/local/apache/htdocs/wwwroot/whsea/gd/libgd-2.2.5/conftest.c:70: undefined reference to `sin' configure:14178: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GD" | #define PACKAGE_TARNAME "libgd" | #define PACKAGE_VERSION "2.2.5" | #define PACKAGE_STRING "GD 2.2.5" | #define PACKAGE_BUGREPORT "https://github.com/libgd/libgd/issues" | #define PACKAGE_URL "http://lib.gd" | #define PACKAGE "libgd" | #define VERSION "2.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 HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | /* end confdefs.h. */ | /* Define sin to an innocuous variant, in case declares sin. | For example, HP-UX 11i declares gettimeofday. */ | #define sin innocuous_sin | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char sin (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef sin | | /* 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 sin (); | /* 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_sin || defined __stub___sin | choke me | #endif | | int | main () | { | return sin (); | ; | return 0; | } configure:14178: result: no configure:14182: checking for sin in -lm configure:14207: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lm >&5 conftest.c:43: warning: conflicting types for built-in function 'sin' configure:14207: $? = 0 configure:14216: result: yes configure:14413: checking whether gcc -std=gnu99 is Clang configure:14438: result: no configure:14561: checking whether pthreads work with -pthread configure:14655: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -lm >&5 configure:14655: $? = 0 configure:14664: result: yes configure:14683: checking for joinable pthread attribute configure:14701: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -lm >&5 configure:14701: $? = 0 configure:14709: result: PTHREAD_CREATE_JOINABLE configure:14723: checking whether more special flags are required for pthreads configure:14736: result: no configure:14744: checking for PTHREAD_PRIO_INHERIT configure:14760: gcc -std=gnu99 -o conftest -g -O2 -pthread conftest.c -lm >&5 configure:14760: $? = 0 configure:14769: result: yes configure:14873: checking for OpenMP flag of C compiler configure:14913: gcc -std=gnu99 -o conftest -g -O2 -fopenmp conftest.c -lm >&5 configure:14913: $? = 0 configure:14922: result: -fopenmp configure:14940: checking whether to support zlib configure:14950: result: auto configure:14974: checking for LIBZ configure:15075: result: no configure:15077: checking for deflate in -lz configure:15102: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lz -lm >&5 configure:15102: $? = 0 configure:15111: result: yes configure:15159: checking whether to support png configure:15169: result: /usr/local/ configure:15193: checking for LIBPNG configure:15259: result: no configure:15308: checking whether to support freetype configure:15318: result: auto configure:15342: checking for LIBFREETYPE configure:15408: result: no configure:15441: Disabling support for freetype configure:15462: checking whether to support fontconfig configure:15472: result: auto configure:15496: checking for LIBFONTCONFIG configure:15598: result: no configure:15601: checking for FcInit in -lfontconfig configure:15626: gcc -std=gnu99 -o conftest -g -O2 -I/usr/local//include -I/usr/local/include/libpng -O2 -pipe -fno-strict-aliasing conftest.c -lfontconfig -lm -lz -L/usr/local//lib -L/usr/local/lib -lpng -lz -lm >&5 configure:15626: $? = 0 configure:15635: result: yes configure:15683: checking whether to support jpeg configure:15693: result: auto configure:15716: checking for jpeg_set_defaults in -ljpeg configure:15741: gcc -std=gnu99 -o conftest -g -O2 -I/usr/local//include -I/usr/local/include/libpng -O2 -pipe -fno-strict-aliasing conftest.c -ljpeg -lm -lz -L/usr/local//lib -L/usr/local/lib -lpng -lz -lm -lfontconfig >&5 configure:15741: $? = 0 configure:15750: result: yes configure:15789: checking whether to support liq configure:15799: result: auto configure:15822: checking libimagequant.h usability configure:15822: gcc -std=gnu99 -c -g -O2 -I/usr/local//include -I/usr/local/include/libpng -O2 -pipe -fno-strict-aliasing conftest.c >&5 conftest.c:77:27: error: libimagequant.h: No such file or directory configure:15822: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GD" | #define PACKAGE_TARNAME "libgd" | #define PACKAGE_VERSION "2.2.5" | #define PACKAGE_STRING "GD 2.2.5" | #define PACKAGE_BUGREPORT "https://github.com/libgd/libgd/issues" | #define PACKAGE_URL "http://lib.gd" | #define PACKAGE "libgd" | #define VERSION "2.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 HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_LIBM 1 | #define HAVE_PTHREAD_PRIO_INHERIT 1 | #define HAVE_PTHREAD 1 | #define HAVE_OPENMP 1 | #define HAVE_LIBZ 1 | #define HAVE_LIBPNG 1 | #define HAVE_LIBFONTCONFIG 1 | #define HAVE_LIBJPEG 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:15822: result: no configure:15822: checking libimagequant.h presence configure:15822: gcc -std=gnu99 -E -I/usr/local//include -I/usr/local/include/libpng -O2 -pipe -fno-strict-aliasing conftest.c conftest.c:44:27: error: libimagequant.h: No such file or directory configure:15822: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GD" | #define PACKAGE_TARNAME "libgd" | #define PACKAGE_VERSION "2.2.5" | #define PACKAGE_STRING "GD 2.2.5" | #define PACKAGE_BUGREPORT "https://github.com/libgd/libgd/issues" | #define PACKAGE_URL "http://lib.gd" | #define PACKAGE "libgd" | #define VERSION "2.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 HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_LIBM 1 | #define HAVE_PTHREAD_PRIO_INHERIT 1 | #define HAVE_PTHREAD 1 | #define HAVE_OPENMP 1 | #define HAVE_LIBZ 1 | #define HAVE_LIBPNG 1 | #define HAVE_LIBFONTCONFIG 1 | #define HAVE_LIBJPEG 1 | /* end confdefs.h. */ | #include configure:15822: result: no configure:15822: checking for libimagequant.h configure:15822: result: no configure:15890: Disabling support for liq configure:15905: checking whether to support xpm configure:15915: result: auto configure:15939: checking for LIBXPM configure:16041: result: no configure:16044: checking for XpmReadFileToXpmImage in -lXpm configure:16069: gcc -std=gnu99 -o conftest -g -O2 -I/usr/local//include -I/usr/local/include/libpng -O2 -pipe -fno-strict-aliasing conftest.c -lXpm -lm -lz -L/usr/local//lib -L/usr/local/lib -lpng -lz -lm -lfontconfig -ljpeg >&5 configure:16069: $? = 0 configure:16078: result: yes configure:16126: checking whether to support tiff configure:16136: result: auto configure:16160: checking for LIBTIFF configure:16262: result: no configure:16265: checking for TIFFClientOpen in -ltiff configure:16290: gcc -std=gnu99 -o conftest -g -O2 -I/usr/local//include -I/usr/local/include/libpng -O2 -pipe -fno-strict-aliasing conftest.c -ltiff -lm -lz -L/usr/local//lib -L/usr/local/lib -lpng -lz -lm -lfontconfig -ljpeg -lXpm >&5 configure:16290: $? = 0 configure:16299: result: yes configure:16347: checking whether to support webp configure:16357: result: auto configure:16380: checking for WebPGetInfo in -lwebp configure:16405: gcc -std=gnu99 -o conftest -g -O2 -I/usr/local//include -I/usr/local/include/libpng -O2 -pipe -fno-strict-aliasing conftest.c -lwebp -lm -lz -L/usr/local//lib -L/usr/local/lib -lpng -lz -lm -lfontconfig -ljpeg -lXpm -ltiff >&5 /usr/bin/ld: cannot find -lwebp configure:16405: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GD" | #define PACKAGE_TARNAME "libgd" | #define PACKAGE_VERSION "2.2.5" | #define PACKAGE_STRING "GD 2.2.5" | #define PACKAGE_BUGREPORT "https://github.com/libgd/libgd/issues" | #define PACKAGE_URL "http://lib.gd" | #define PACKAGE "libgd" | #define VERSION "2.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 HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_LIBM 1 | #define HAVE_PTHREAD_PRIO_INHERIT 1 | #define HAVE_PTHREAD 1 | #define HAVE_OPENMP 1 | #define HAVE_LIBZ 1 | #define HAVE_LIBPNG 1 | #define HAVE_LIBFONTCONFIG 1 | #define HAVE_LIBJPEG 1 | #define HAVE_LIBXPM 1 | #define HAVE_LIBTIFF 1 | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char WebPGetInfo (); | int | main () | { | return WebPGetInfo (); | ; | return 0; | } configure:16414: result: no configure:16438: Disabling support for webp configure:16458: checking for simple visibility declarations configure:16480: gcc -std=gnu99 -c -g -O2 -fvisibility=hidden -I/usr/local//include -I/usr/local/include/libpng -O2 -pipe -fno-strict-aliasing conftest.c >&5 configure:16480: $? = 0 configure:16489: result: yes configure:16506: checking whether we are building for a Win32 host configure:16518: gcc -std=gnu99 -c -g -O2 -fvisibility=hidden -I/usr/local//include -I/usr/local/include/libpng -O2 -pipe -fno-strict-aliasing conftest.c >&5 configure:16518: $? = 0 configure:16525: result: no configure:16540: checking CFLAGS for maximum warnings configure:16560: gcc -std=gnu99 -c -g -O2 -fvisibility=hidden -warn all -warn all -I/usr/local//include -I/usr/local/include/libpng -O2 -pipe -fno-strict-aliasing conftest.c >&5 gcc: all: No such file or directory gcc: all: No such file or directory gcc: unrecognized option '-warn' gcc: unrecognized option '-warn' configure:16560: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GD" | #define PACKAGE_TARNAME "libgd" | #define PACKAGE_VERSION "2.2.5" | #define PACKAGE_STRING "GD 2.2.5" | #define PACKAGE_BUGREPORT "https://github.com/libgd/libgd/issues" | #define PACKAGE_URL "http://lib.gd" | #define PACKAGE "libgd" | #define VERSION "2.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 HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_LIBM 1 | #define HAVE_PTHREAD_PRIO_INHERIT 1 | #define HAVE_PTHREAD 1 | #define HAVE_OPENMP 1 | #define HAVE_LIBZ 1 | #define HAVE_LIBPNG 1 | #define HAVE_LIBFONTCONFIG 1 | #define HAVE_LIBJPEG 1 | #define HAVE_LIBXPM 1 | #define HAVE_LIBTIFF 1 | #define HAVE_VISIBILITY 1 | /* end confdefs.h. */ | | int | main () | { | | ; | return 0; | } configure:16560: gcc -std=gnu99 -c -g -O2 -fvisibility=hidden -pedantic -Wall -I/usr/local//include -I/usr/local/include/libpng -O2 -pipe -fno-strict-aliasing conftest.c >&5 configure:16560: $? = 0 configure:16568: result: -Wall configure:16588: : CFLAGS="$CFLAGS" configure:16591: $? = 0 configure:16641: result: ** Configuration summary for libgd 2.2.5: Support for Zlib: yes Support for PNG library: yes Support for JPEG library: yes Support for WebP library: no Support for TIFF library: yes Support for Freetype 2.x library: no Support for Fontconfig library: yes Support for Xpm library: yes Support for liq library: no Support for pthreads: yes configure:16769: checking that generated files are newer than configure configure:16775: result: done configure:16834: creating ./config.status ## ---------------------- ## ## Running config.status. ## ## ---------------------- ## This file was extended by GD config.status 2.2.5, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = CONFIG_HEADERS = CONFIG_LINKS = CONFIG_COMMANDS = $ ./config.status on nwpi.krc.karelia.ru config.status:1162: creating Makefile config.status:1162: creating src/Makefile config.status:1162: creating tests/Makefile config.status:1162: creating config/Makefile config.status:1162: creating config/gdlib-config config.status:1162: creating config/gdlib.pc config.status:1162: creating src/config.h config.status:1343: src/config.h is unchanged config.status:1391: executing depfiles commands config.status:1391: executing libtool commands ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_build=i386-unknown-freebsd8.3 ac_cv_c_compiler_gnu=yes ac_cv_cflags_warn_all=-Wall ac_cv_env_CC_set= ac_cv_env_CC_value= ac_cv_env_CFLAGS_set= ac_cv_env_CFLAGS_value= ac_cv_env_CPPFLAGS_set= ac_cv_env_CPPFLAGS_value= ac_cv_env_CPP_set= ac_cv_env_CPP_value= ac_cv_env_LDFLAGS_set= ac_cv_env_LDFLAGS_value= ac_cv_env_LIBFONTCONFIG_CFLAGS_set= ac_cv_env_LIBFONTCONFIG_CFLAGS_value= ac_cv_env_LIBFONTCONFIG_LIBS_set= ac_cv_env_LIBFONTCONFIG_LIBS_value= ac_cv_env_LIBFREETYPE_CFLAGS_set= ac_cv_env_LIBFREETYPE_CFLAGS_value= ac_cv_env_LIBFREETYPE_LIBS_set= ac_cv_env_LIBFREETYPE_LIBS_value= ac_cv_env_LIBPNG_CFLAGS_set= ac_cv_env_LIBPNG_CFLAGS_value= ac_cv_env_LIBPNG_LIBS_set= ac_cv_env_LIBPNG_LIBS_value= ac_cv_env_LIBS_set= ac_cv_env_LIBS_value= ac_cv_env_LIBTIFF_CFLAGS_set= ac_cv_env_LIBTIFF_CFLAGS_value= ac_cv_env_LIBTIFF_LIBS_set= ac_cv_env_LIBTIFF_LIBS_value= ac_cv_env_LIBXPM_CFLAGS_set= ac_cv_env_LIBXPM_CFLAGS_value= ac_cv_env_LIBXPM_LIBS_set= ac_cv_env_LIBXPM_LIBS_value= ac_cv_env_LIBZ_CFLAGS_set= ac_cv_env_LIBZ_CFLAGS_value= ac_cv_env_LIBZ_LIBS_set= ac_cv_env_LIBZ_LIBS_value= ac_cv_env_LT_SYS_LIBRARY_PATH_set= ac_cv_env_LT_SYS_LIBRARY_PATH_value= ac_cv_env_PKG_CONFIG_LIBDIR_set= ac_cv_env_PKG_CONFIG_LIBDIR_value= ac_cv_env_PKG_CONFIG_PATH_set= ac_cv_env_PKG_CONFIG_PATH_value= ac_cv_env_PKG_CONFIG_set= ac_cv_env_PKG_CONFIG_value= ac_cv_env_XMKMF_set= ac_cv_env_XMKMF_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_sin=no ac_cv_have_x=have_x=no ac_cv_header_dirent_h=yes ac_cv_header_dlfcn_h=yes ac_cv_header_errno_h=yes ac_cv_header_iconv_h=no ac_cv_header_inttypes_h=yes ac_cv_header_libimagequant_h=no ac_cv_header_limits_h=yes ac_cv_header_memory_h=yes ac_cv_header_stdc=yes ac_cv_header_stddef_h=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_host=i386-unknown-freebsd8.3 ac_cv_lib_Xpm_XpmReadFileToXpmImage=yes ac_cv_lib_fontconfig_FcInit=yes ac_cv_lib_jpeg_jpeg_set_defaults=yes ac_cv_lib_m_sin=yes ac_cv_lib_tiff_TIFFClientOpen=yes ac_cv_lib_webp_WebPGetInfo=no ac_cv_lib_z_deflate=yes ac_cv_objext=o ac_cv_path_EGREP='/usr/bin/grep -E' ac_cv_path_FGREP='/usr/bin/grep -F' ac_cv_path_GREP=/usr/bin/grep ac_cv_path_SED=/usr/bin/sed ac_cv_path_install='/usr/bin/install -c' ac_cv_path_lt_DD=/bin/dd ac_cv_prog_AWK=nawk ac_cv_prog_CPP='gcc -std=gnu99 -E' ac_cv_prog_ac_ct_AR=ar ac_cv_prog_ac_ct_CC=gcc ac_cv_prog_ac_ct_MANIFEST_TOOL=mt ac_cv_prog_ac_ct_OBJDUMP=objdump ac_cv_prog_ac_ct_RANLIB=ranlib ac_cv_prog_ac_ct_STRIP=strip ac_cv_prog_cc_c89= ac_cv_prog_cc_c99=-std=gnu99 ac_cv_prog_cc_g=yes ac_cv_prog_cc_stdc=-std=gnu99 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_ar_interface=ar am_cv_func_iconv='no, consider installing GNU libiconv' am_cv_lib_iconv=no am_cv_make_support_nested_variables=yes am_cv_prog_cc_c_o=yes ax_cv_PTHREAD_CLANG=no ax_cv_PTHREAD_JOINABLE_ATTR=PTHREAD_CREATE_JOINABLE ax_cv_PTHREAD_PRIO_INHERIT=yes ax_cv_PTHREAD_SPECIAL_FLAGS=no ax_cv_c_openmp=-fopenmp gl_cv_cc_visibility=yes lt_cv_ar_at_file=no lt_cv_archive_cmds_need_lc=no lt_cv_deplibs_check_method=pass_all lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_ld_reload_flag=-r lt_cv_nm_interface='BSD nm' lt_cv_objdir=.libs lt_cv_path_LD=/usr/bin/ld lt_cv_path_NM='/usr/bin/nm -B' lt_cv_path_mainfest_tool=no lt_cv_prog_compiler_c_o=yes lt_cv_prog_compiler_pic='-fPIC -DPIC' lt_cv_prog_compiler_pic_works=yes lt_cv_prog_compiler_rtti_exceptions=no lt_cv_prog_compiler_static_works=yes lt_cv_prog_gnu_ld=yes lt_cv_sharedlib_from_linklib_cmd='printf %s\n' lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\''' lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"\1", (void *) \&\1},/p'\''' lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(lib.*\)$/ {"\1", (void *) \&\1},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"lib\1", (void *) \&\1},/p'\''' lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\''' lt_cv_sys_global_symbol_to_import= lt_cv_sys_max_cmd_len=196608 lt_cv_to_host_file_cmd=func_convert_file_noop lt_cv_to_tool_file_cmd=func_convert_file_noop lt_cv_truncate_bin='/bin/dd bs=4096 count=1' mingw_cv_win32_host=no ## ----------------- ## ## Output variables. ## ## ----------------- ## ACLOCAL='${SHELL} /usr/local/apache/htdocs/wwwroot/whsea/gd/libgd-2.2.5/config/missing aclocal-1.15' AMDEPBACKSLASH='\' AMDEP_FALSE='#' AMDEP_TRUE='' AMTAR='$${TAR-tar}' AM_BACKSLASH='\' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' AM_DEFAULT_VERBOSITY='1' AM_V='$(V)' AR='ar' AUTOCONF='${SHELL} /usr/local/apache/htdocs/wwwroot/whsea/gd/libgd-2.2.5/config/missing autoconf' AUTOHEADER='${SHELL} /usr/local/apache/htdocs/wwwroot/whsea/gd/libgd-2.2.5/config/missing autoheader' AUTOMAKE='${SHELL} /usr/local/apache/htdocs/wwwroot/whsea/gd/libgd-2.2.5/config/missing automake-1.15' AWK='nawk' CC='gcc -std=gnu99' CCDEPMODE='depmode=gcc3' CFLAGS='-g -O2 -fvisibility=hidden -Wall' CFLAG_VISIBILITY='-fvisibility=hidden' CPP='gcc -std=gnu99 -E' CPPFLAGS=' -I/usr/local//include -I/usr/local/include/libpng -O2 -pipe -fno-strict-aliasing ' CYGPATH_W='echo' DEFS='-DHAVE_CONFIG_H' DEPDIR='.deps' DLLTOOL='false' DSYMUTIL='' DUMPBIN='' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='/usr/bin/grep -E' EXEEXT='' FEATURES='GD_GIF GD_GIFANIM GD_OPENPOLYGON GD_ZLIB GD_PNG GD_FONTCONFIG GD_JPEG GD_XPM GD_TIFF' FGREP='/usr/bin/grep -F' GDLIB_EXTRA='' GDLIB_LT_AGE='0' GDLIB_LT_CURRENT='3' GDLIB_LT_REVISION='5' GDLIB_MAJOR='2' GDLIB_MINOR='2' GDLIB_REVISION='5' GDLIB_VERSION='2.2.5' GREP='/usr/bin/grep' HAVE_LIBFONTCONFIG_FALSE='#' HAVE_LIBFONTCONFIG_TRUE='' HAVE_LIBFREETYPE_FALSE='' HAVE_LIBFREETYPE_TRUE='#' HAVE_LIBIMAGEQUANT_FALSE='' HAVE_LIBIMAGEQUANT_TRUE='#' HAVE_LIBJPEG_FALSE='#' HAVE_LIBJPEG_TRUE='' HAVE_LIBPNG_FALSE='#' HAVE_LIBPNG_TRUE='' HAVE_LIBTIFF_FALSE='#' HAVE_LIBTIFF_TRUE='' HAVE_LIBWEBP_FALSE='' HAVE_LIBWEBP_TRUE='#' HAVE_LIBXPM_FALSE='#' HAVE_LIBXPM_TRUE='' HAVE_LIBZ_FALSE='#' HAVE_LIBZ_TRUE='' HAVE_VISIBILITY='1' INSTALL_DATA='${INSTALL} -m 644' INSTALL_PROGRAM='${INSTALL}' INSTALL_SCRIPT='${INSTALL}' INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' LD='/usr/bin/ld' LDFLAGS='' LIBFONTCONFIG_CFLAGS=' ' LIBFONTCONFIG_LIBS=' -lfontconfig' LIBFREETYPE_CFLAGS='' LIBFREETYPE_LIBS='' LIBICONV='' LIBOBJS='' LIBPNG_CFLAGS='-I/usr/local//include -I/usr/local/include/libpng -O2 -pipe -fno-strict-aliasing' LIBPNG_LIBS='-L/usr/local//lib -L/usr/local/lib -lpng -lz -lm' LIBS='-lm -lz -L/usr/local//lib -L/usr/local/lib -lpng -lz -lm -lfontconfig -ljpeg -lXpm -ltiff' LIBTIFF_CFLAGS=' ' LIBTIFF_LIBS=' -ltiff' LIBTOOL='$(SHELL) $(top_builddir)/libtool' LIBXPM_CFLAGS=' ' LIBXPM_LIBS=' -lXpm' LIBZ_CFLAGS=' ' LIBZ_LIBS=' -lz' LIPO='' LN_S='ln -s' LTLIBICONV='' LTLIBOBJS='' LT_SYS_LIBRARY_PATH='' MAKEINFO='${SHELL} /usr/local/apache/htdocs/wwwroot/whsea/gd/libgd-2.2.5/config/missing makeinfo' MANIFEST_TOOL=':' MKDIR_P='config/install-sh -c -d' NM='/usr/bin/nm -B' NMEDIT='' OBJDUMP='objdump' OBJEXT='o' OTOOL64='' OTOOL='' PACKAGE='libgd' PACKAGE_BUGREPORT='https://github.com/libgd/libgd/issues' PACKAGE_NAME='GD' PACKAGE_STRING='GD 2.2.5' PACKAGE_TARNAME='libgd' PACKAGE_URL='http://lib.gd' PACKAGE_VERSION='2.2.5' PATH_SEPARATOR=':' PKG_CONFIG='' PKG_CONFIG_LIBDIR='' PKG_CONFIG_PATH='' PTHREAD_CC='gcc -std=gnu99' PTHREAD_CFLAGS='-pthread' PTHREAD_LIBS='' RANLIB='ranlib' SED='/usr/bin/sed' SET_MAKE='' SHELL='/usr/local/sbin/bash' STRIP='strip' VERSION='2.2.5' XMKMF='' ac_ct_AR='ar' ac_ct_CC='gcc' ac_ct_DUMPBIN='' am__EXEEXT_FALSE='' am__EXEEXT_TRUE='#' am__fastdepCC_FALSE='#' am__fastdepCC_TRUE='' am__include='include' am__isrc='' am__leading_dot='.' am__nodep='_no' am__quote='' am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' ax_pthread_config='' bindir='${exec_prefix}/bin' build='i386-unknown-freebsd8.3' build_alias='' build_cpu='i386' build_os='freebsd8.3' build_vendor='unknown' datadir='${datarootdir}' datarootdir='${prefix}/share' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' dvidir='${docdir}' exec_prefix='${prefix}' host='i386-unknown-freebsd8.3' host_alias='' host_cpu='i386' host_os='freebsd8.3' host_vendor='unknown' htmldir='${docdir}' includedir='${prefix}/include' infodir='${datarootdir}/info' install_sh='${SHELL} /usr/local/apache/htdocs/wwwroot/whsea/gd/libgd-2.2.5/config/install-sh' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' localedir='${datarootdir}/locale' localstatedir='${prefix}/var' mandir='${datarootdir}/man' mkdir_p='$(MKDIR_P)' oldincludedir='/usr/include' pdfdir='${docdir}' prefix='/usr/local' program_transform_name='s,x,x,' psdir='${docdir}' runstatedir='${localstatedir}/run' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' sysconfdir='${prefix}/etc' target_alias='' ## ----------- ## ## confdefs.h. ## ## ----------- ## /* confdefs.h */ #define PACKAGE_NAME "GD" #define PACKAGE_TARNAME "libgd" #define PACKAGE_VERSION "2.2.5" #define PACKAGE_STRING "GD 2.2.5" #define PACKAGE_BUGREPORT "https://github.com/libgd/libgd/issues" #define PACKAGE_URL "http://lib.gd" #define PACKAGE "libgd" #define VERSION "2.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 HAVE_DLFCN_H 1 #define LT_OBJDIR ".libs/" #define STDC_HEADERS 1 #define HAVE_DIRENT_H 1 #define HAVE_ERRNO_H 1 #define HAVE_INTTYPES_H 1 #define HAVE_LIMITS_H 1 #define HAVE_STDDEF_H 1 #define HAVE_STDINT_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STRING_H 1 #define HAVE_STRINGS_H 1 #define HAVE_UNISTD_H 1 #define HAVE_SYS_STAT_H 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_LIBM 1 #define HAVE_PTHREAD_PRIO_INHERIT 1 #define HAVE_PTHREAD 1 #define HAVE_OPENMP 1 #define HAVE_LIBZ 1 #define HAVE_LIBPNG 1 #define HAVE_LIBFONTCONFIG 1 #define HAVE_LIBJPEG 1 #define HAVE_LIBXPM 1 #define HAVE_LIBTIFF 1 #define HAVE_VISIBILITY 1 configure: exit 0