This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by ImageMagick configure 6.5.4, which was generated by GNU Autoconf 2.63. Invocation command line was $ ./configure --enable-delegate-build --with-gs-font-dir=/usr/local/share/ghostscript/fonts ## --------- ## ## Platform. ## ## --------- ## hostname = server1 uname -m = x86_64 uname -r = 2.6.24-23-xen uname -s = Linux uname -v = #1 SMP Mon Jan 26 03:09:12 UTC 2009 /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 ## ----------- ## ## Core tests. ## ## ----------- ## configure:2598: checking build system type configure:2616: result: x86_64-unknown-linux-gnu configure:2638: checking host system type configure:2653: result: x86_64-unknown-linux-gnu configure:2675: checking target system type configure:2690: result: x86_64-unknown-linux-gnu configure:2723: checking whether build environment is sane configure:2783: result: yes configure:2802: checking for a BSD-compatible install configure:2870: result: /usr/bin/install -c configure:3020: checking for a thread-safe mkdir -p configure:3059: result: /bin/mkdir -p configure:3072: checking for gawk configure:3102: result: no configure:3072: checking for mawk configure:3088: found /usr/bin/mawk configure:3099: result: mawk configure:3110: checking whether make sets $(MAKE) configure:3132: result: yes configure:3377: checking for gcc configure:3393: found /usr/bin/gcc configure:3404: result: gcc configure:3636: checking for C compiler version configure:3644: gcc --version >&5 gcc (GCC) 4.2.4 (Ubuntu 4.2.4-1ubuntu4) 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:3648: $? = 0 configure:3655: gcc -v >&5 Using built-in specs. Target: x86_64-linux-gnu Configured with: ../src/configure -v --enable-languages=c,c++,fortran,objc,obj-c++,treelang --prefix=/usr --enable-shared --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --enable-nls --with-gxx-include-dir=/usr/include/c++/4.2 --program-suffix=-4.2 --enable-clocale=gnu --enable-libstdcxx-debug --enable-objc-gc --enable-mpfr --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu Thread model: posix gcc version 4.2.4 (Ubuntu 4.2.4-1ubuntu4) configure:3659: $? = 0 configure:3666: gcc -V >&5 gcc: '-V' option must have argument configure:3670: $? = 1 configure:3693: checking for C compiler default output file name configure:3715: gcc conftest.c >&5 configure:3719: $? = 0 configure:3757: result: a.out configure:3776: checking whether the C compiler works configure:3786: ./a.out configure:3790: $? = 0 configure:3809: result: yes configure:3816: checking whether we are cross compiling configure:3818: result: no configure:3821: checking for suffix of executables configure:3828: gcc -o conftest conftest.c >&5 configure:3832: $? = 0 configure:3858: result: configure:3864: checking for suffix of object files configure:3890: gcc -c conftest.c >&5 configure:3894: $? = 0 configure:3919: result: o configure:3923: checking whether we are using the GNU C compiler configure:3952: gcc -c conftest.c >&5 configure:3959: $? = 0 configure:3976: result: yes configure:3985: checking whether gcc accepts -g configure:4015: gcc -c -g conftest.c >&5 configure:4022: $? = 0 configure:4123: result: yes configure:4140: checking for gcc option to accept ISO C89 configure:4214: gcc -c -g -O2 conftest.c >&5 configure:4221: $? = 0 configure:4244: result: none needed configure:4273: checking for style of include used by make configure:4301: result: GNU configure:4326: checking dependency style of gcc configure:4436: result: gcc3 configure:4453: checking for gcc option to accept ISO C99 configure:4612: gcc -c -g -O2 conftest.c >&5 conftest.c:58: error: expected ';', ',' or ')' before 'text' conftest.c: In function 'main': conftest.c:112: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'newvar' conftest.c:112: error: 'newvar' undeclared (first use in this function) conftest.c:112: error: (Each undeclared identifier is reported only once conftest.c:112: error: for each function it appears in.) conftest.c:122: error: 'for' loop initial declaration used outside C99 mode configure:4619: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | /* 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:4612: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:4619: $? = 0 configure:4649: result: -std=gnu99 configure:4780: checking for gcc -std=gnu99 option to accept ISO Standard C configure:4791: result: -std=gnu99 configure:4801: checking how to run the C preprocessor configure:4841: gcc -std=gnu99 -E conftest.c configure:4848: $? = 0 configure:4879: gcc -std=gnu99 -E conftest.c conftest.c:8:28: error: ac_nonexistent.h: No such file or directory configure:4886: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | /* end confdefs.h. */ | #include configure:4919: result: gcc -std=gnu99 -E configure:4948: gcc -std=gnu99 -E conftest.c configure:4955: $? = 0 configure:4986: gcc -std=gnu99 -E conftest.c conftest.c:8:28: error: ac_nonexistent.h: No such file or directory configure:4993: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | /* end confdefs.h. */ | #include configure:5032: checking for a sed that does not truncate output configure:5098: result: /bin/sed configure:5116: checking for grep that handles long lines and -e configure:5176: result: /bin/grep configure:5181: checking for egrep configure:5245: result: /bin/grep -E configure:5250: checking for fgrep configure:5314: result: /bin/grep -F configure:5349: checking for ld used by gcc -std=gnu99 configure:5416: result: /usr/bin/ld configure:5425: checking if the linker (/usr/bin/ld) is GNU ld configure:5440: result: yes configure:5495: checking for ranlib configure:5511: found /usr/bin/ranlib configure:5522: result: ranlib configure:5546: checking whether gcc -std=gnu99 and cc understand -c and -o together configure:5581: gcc -std=gnu99 -c conftest.c -o conftest2.o >&5 configure:5585: $? = 0 configure:5591: gcc -std=gnu99 -c conftest.c -o conftest2.o >&5 configure:5595: $? = 0 configure:5606: cc -c conftest.c >&5 configure:5610: $? = 0 configure:5618: cc -c conftest.c -o conftest2.o >&5 configure:5622: $? = 0 configure:5628: cc -c conftest.c -o conftest2.o >&5 configure:5632: $? = 0 configure:5650: result: yes configure:5691: checking for a BSD-compatible install configure:5759: result: /usr/bin/install -c configure:5770: checking whether make sets $(MAKE) configure:5792: result: yes configure:5859: checking for g++ configure:5875: found /usr/bin/g++ configure:5886: result: g++ configure:5913: checking for C++ compiler version configure:5921: g++ --version >&5 g++ (GCC) 4.2.4 (Ubuntu 4.2.4-1ubuntu4) 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:5925: $? = 0 configure:5932: g++ -v >&5 Using built-in specs. Target: x86_64-linux-gnu Configured with: ../src/configure -v --enable-languages=c,c++,fortran,objc,obj-c++,treelang --prefix=/usr --enable-shared --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --enable-nls --with-gxx-include-dir=/usr/include/c++/4.2 --program-suffix=-4.2 --enable-clocale=gnu --enable-libstdcxx-debug --enable-objc-gc --enable-mpfr --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu Thread model: posix gcc version 4.2.4 (Ubuntu 4.2.4-1ubuntu4) configure:5936: $? = 0 configure:5943: g++ -V >&5 g++: '-V' option must have argument configure:5947: $? = 1 configure:5950: checking whether we are using the GNU C++ compiler configure:5979: g++ -c conftest.cpp >&5 configure:5986: $? = 0 configure:6003: result: yes configure:6012: checking whether g++ accepts -g configure:6042: g++ -c -g conftest.cpp >&5 configure:6049: $? = 0 configure:6150: result: yes configure:6175: checking dependency style of g++ configure:6285: result: gcc3 configure:6301: checking maximum warning verbosity option configure:6339: result: -Wall -W for C++ -Wall -W for C configure:6344: checking whether ln -s works configure:6348: result: yes configure:6355: checking if malloc debugging is wanted configure:6375: result: no configure:6429: checking for pkg-config configure:6462: result: no configure:6502: checking for ANSI C header files configure:6532: gcc -std=gnu99 -c -g -O2 -Wall -W conftest.c >&5 configure:6539: $? = 0 configure:6638: gcc -std=gnu99 -o conftest -g -O2 -Wall -W conftest.c >&5 configure:6642: $? = 0 configure:6648: ./conftest configure:6652: $? = 0 configure:6670: result: yes configure:6694: checking for sys/types.h configure:6715: gcc -std=gnu99 -c -g -O2 -Wall -W conftest.c >&5 configure:6722: $? = 0 configure:6739: result: yes configure:6694: checking for sys/stat.h configure:6715: gcc -std=gnu99 -c -g -O2 -Wall -W conftest.c >&5 configure:6722: $? = 0 configure:6739: result: yes configure:6694: checking for stdlib.h configure:6715: gcc -std=gnu99 -c -g -O2 -Wall -W conftest.c >&5 configure:6722: $? = 0 configure:6739: result: yes configure:6694: checking for string.h configure:6715: gcc -std=gnu99 -c -g -O2 -Wall -W conftest.c >&5 configure:6722: $? = 0 configure:6739: result: yes configure:6694: checking for memory.h configure:6715: gcc -std=gnu99 -c -g -O2 -Wall -W conftest.c >&5 configure:6722: $? = 0 configure:6739: result: yes configure:6694: checking for strings.h configure:6715: gcc -std=gnu99 -c -g -O2 -Wall -W conftest.c >&5 configure:6722: $? = 0 configure:6739: result: yes configure:6694: checking for inttypes.h configure:6715: gcc -std=gnu99 -c -g -O2 -Wall -W conftest.c >&5 configure:6722: $? = 0 configure:6739: result: yes configure:6694: checking for stdint.h configure:6715: gcc -std=gnu99 -c -g -O2 -Wall -W conftest.c >&5 configure:6722: $? = 0 configure:6739: result: yes configure:6694: checking for unistd.h configure:6715: gcc -std=gnu99 -c -g -O2 -Wall -W conftest.c >&5 configure:6722: $? = 0 configure:6739: result: yes configure:6764: checking minix/config.h usability configure:6781: gcc -std=gnu99 -c -g -O2 -Wall -W conftest.c >&5 conftest.c:51:26: error: minix/config.h: No such file or directory configure:6788: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define 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:6802: result: no configure:6806: checking minix/config.h presence configure:6821: gcc -std=gnu99 -E conftest.c conftest.c:18:26: error: minix/config.h: No such file or directory configure:6828: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define 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:6842: result: no configure:6875: checking for minix/config.h configure:6882: result: no configure:6913: checking whether it is safe to define __EXTENSIONS__ configure:6941: gcc -std=gnu99 -c -g -O2 -Wall -W conftest.c >&5 configure:6948: $? = 0 configure:6963: result: yes configure:7079: checking for linker lazyload option configure:7095: result: none configure:7355: checking for the pthreads library -lpthreads configure:7398: gcc -std=gnu99 -o conftest -g -O2 -Wall -W conftest.c -lpthreads >&5 conftest.c: In function 'main': conftest.c:28: warning: null argument where non-null required (argument 1) conftest.c:29: warning: null argument where non-null required (argument 1) conftest.c:29: warning: null argument where non-null required (argument 3) conftest.c:27: warning: 'th' is used uninitialized in this function /usr/bin/ld: cannot find -lpthreads collect2: ld returned 1 exit status configure:7405: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | /* end confdefs.h. */ | #include | int | main () | { | pthread_t th; pthread_join(th, 0); | pthread_attr_init(0); pthread_cleanup_push(0, 0); | pthread_create(0,0,0,0); pthread_cleanup_pop(0); | ; | return 0; | } configure:7428: result: no configure:7300: checking whether pthreads work without any flags configure:7398: gcc -std=gnu99 -o conftest -g -O2 -Wall -W conftest.c >&5 conftest.c: In function 'main': conftest.c:28: warning: null argument where non-null required (argument 1) conftest.c:29: warning: null argument where non-null required (argument 1) conftest.c:29: warning: null argument where non-null required (argument 3) conftest.c:27: warning: 'th' is used uninitialized in this function /tmp/ccQQyvBk.o: In function `main': /root/ImageMagick-6.5.4-5/conftest.c:27: undefined reference to `pthread_join' /root/ImageMagick-6.5.4-5/conftest.c:28: undefined reference to `__pthread_register_cancel' /root/ImageMagick-6.5.4-5/conftest.c:29: undefined reference to `pthread_create' /root/ImageMagick-6.5.4-5/conftest.c:29: undefined reference to `__pthread_unregister_cancel' collect2: ld returned 1 exit status configure:7405: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | /* end confdefs.h. */ | #include | int | main () | { | pthread_t th; pthread_join(th, 0); | pthread_attr_init(0); pthread_cleanup_push(0, 0); | pthread_create(0,0,0,0); pthread_cleanup_pop(0); | ; | return 0; | } configure:7428: result: no configure:7305: checking whether pthreads work with -Kthread configure:7398: gcc -std=gnu99 -o conftest -g -O2 -Wall -W -Kthread conftest.c >&5 gcc: unrecognized option '-Kthread' conftest.c: In function 'main': conftest.c:28: warning: null argument where non-null required (argument 1) conftest.c:29: warning: null argument where non-null required (argument 1) conftest.c:29: warning: null argument where non-null required (argument 3) conftest.c:27: warning: 'th' is used uninitialized in this function /tmp/ccydABCF.o: In function `main': /root/ImageMagick-6.5.4-5/conftest.c:27: undefined reference to `pthread_join' /root/ImageMagick-6.5.4-5/conftest.c:28: undefined reference to `__pthread_register_cancel' /root/ImageMagick-6.5.4-5/conftest.c:29: undefined reference to `pthread_create' /root/ImageMagick-6.5.4-5/conftest.c:29: undefined reference to `__pthread_unregister_cancel' collect2: ld returned 1 exit status configure:7405: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | /* end confdefs.h. */ | #include | int | main () | { | pthread_t th; pthread_join(th, 0); | pthread_attr_init(0); pthread_cleanup_push(0, 0); | pthread_create(0,0,0,0); pthread_cleanup_pop(0); | ; | return 0; | } configure:7428: result: no configure:7305: checking whether pthreads work with -kthread configure:7398: gcc -std=gnu99 -o conftest -g -O2 -Wall -W -kthread conftest.c >&5 gcc: unrecognized option '-kthread' conftest.c: In function 'main': conftest.c:28: warning: null argument where non-null required (argument 1) conftest.c:29: warning: null argument where non-null required (argument 1) conftest.c:29: warning: null argument where non-null required (argument 3) conftest.c:27: warning: 'th' is used uninitialized in this function /tmp/cc8v9MBX.o: In function `main': /root/ImageMagick-6.5.4-5/conftest.c:27: undefined reference to `pthread_join' /root/ImageMagick-6.5.4-5/conftest.c:28: undefined reference to `__pthread_register_cancel' /root/ImageMagick-6.5.4-5/conftest.c:29: undefined reference to `pthread_create' /root/ImageMagick-6.5.4-5/conftest.c:29: undefined reference to `__pthread_unregister_cancel' collect2: ld returned 1 exit status configure:7405: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | /* end confdefs.h. */ | #include | int | main () | { | pthread_t th; pthread_join(th, 0); | pthread_attr_init(0); pthread_cleanup_push(0, 0); | pthread_create(0,0,0,0); pthread_cleanup_pop(0); | ; | return 0; | } configure:7428: result: no configure:7355: checking for the pthreads library -llthread configure:7398: gcc -std=gnu99 -o conftest -g -O2 -Wall -W conftest.c -llthread >&5 conftest.c: In function 'main': conftest.c:28: warning: null argument where non-null required (argument 1) conftest.c:29: warning: null argument where non-null required (argument 1) conftest.c:29: warning: null argument where non-null required (argument 3) conftest.c:27: warning: 'th' is used uninitialized in this function /usr/bin/ld: cannot find -llthread collect2: ld returned 1 exit status configure:7405: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | /* end confdefs.h. */ | #include | int | main () | { | pthread_t th; pthread_join(th, 0); | pthread_attr_init(0); pthread_cleanup_push(0, 0); | pthread_create(0,0,0,0); pthread_cleanup_pop(0); | ; | return 0; | } configure:7428: result: no configure:7305: checking whether pthreads work with -pthread configure:7398: gcc -std=gnu99 -o conftest -g -O2 -Wall -W -pthread conftest.c >&5 conftest.c: In function 'main': conftest.c:28: warning: null argument where non-null required (argument 1) conftest.c:29: warning: null argument where non-null required (argument 1) conftest.c:29: warning: null argument where non-null required (argument 3) conftest.c:27: warning: 'th' is used uninitialized in this function configure:7405: $? = 0 configure:7428: result: yes configure:7447: checking for joinable pthread attribute configure:7472: gcc -std=gnu99 -o conftest -g -O2 -Wall -W -pthread conftest.c >&5 configure:7479: $? = 0 configure:7499: result: PTHREAD_CREATE_JOINABLE configure:7509: checking if more special flags are required for pthreads configure:7516: result: no configure:7713: checking for gcc -std=gnu99 option to support OpenMP configure:7733: gcc -std=gnu99 -o conftest -g -O2 -Wall -W -pthread conftest.c >&5 conftest.c:3: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'me' In file included from conftest.c:5: /usr/lib/gcc/x86_64-linux-gnu/4.2.4/include/omp.h:68: error: expected ')' before '*' token /usr/lib/gcc/x86_64-linux-gnu/4.2.4/include/omp.h:69: error: expected ')' before '*' token /usr/lib/gcc/x86_64-linux-gnu/4.2.4/include/omp.h:70: error: expected ')' before '*' token /usr/lib/gcc/x86_64-linux-gnu/4.2.4/include/omp.h:71: error: expected ')' before '*' token /usr/lib/gcc/x86_64-linux-gnu/4.2.4/include/omp.h:72: error: expected ')' before '*' token configure:7740: $? = 1 configure: failed program was: | | #ifndef _OPENMP | choke me | #endif | #include | int main () { return omp_get_num_threads (); } | configure:7772: gcc -std=gnu99 -o conftest -g -O2 -Wall -W -pthread -fopenmp conftest.c >&5 configure:7779: $? = 0 configure:7809: result: -fopenmp configure:7836: checking for special C compiler options needed for large files configure:7931: result: no configure:7937: checking for _FILE_OFFSET_BITS value needed for large files configure:7972: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:7979: $? = 0 configure:8048: result: no configure:8185: checking for _LARGEFILE_SOURCE value needed for large files configure:8214: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:8221: $? = 0 configure:8294: result: no configure:8322: checking for native large file support configure:8345: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 conftest.c:2: warning: return type defaults to 'int' conftest.c: In function 'main': conftest.c:3: warning: implicit declaration of function 'exit' conftest.c:3: warning: incompatible implicit declaration of built-in function 'exit' configure:8349: $? = 0 configure:8355: ./conftest configure:8359: $? = 0 configure:8365: result: yes configure:8424: checking for BSD- or MS-compatible name lister (nm) configure:8473: result: /usr/bin/nm -B configure:8591: checking the name lister (/usr/bin/nm -B) interface configure:8598: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:8601: /usr/bin/nm -B "conftest.o" configure:8604: output 0000000000000000 B some_variable configure:8611: result: BSD nm configure:8615: checking the maximum length of command line arguments configure:8735: result: 98304 configure:8752: checking whether the shell understands some XSI constructs configure:8762: result: yes configure:8766: checking whether the shell understands "+=" configure:8772: result: yes configure:8807: checking for /usr/bin/ld option to reload object files configure:8814: result: -r configure:8883: checking for objdump configure:8899: found /usr/bin/objdump configure:8910: result: objdump configure:8939: checking how to recognize dependent libraries configure:9135: result: pass_all configure:9195: checking for ar configure:9211: found /usr/bin/ar configure:9222: result: ar configure:9300: checking for strip configure:9316: found /usr/bin/strip configure:9327: result: strip configure:9399: checking for ranlib configure:9426: result: ranlib configure:9516: checking command to parse /usr/bin/nm -B output from gcc -std=gnu99 object configure:9634: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:9637: $? = 0 configure:9641: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm configure:9644: $? = 0 configure:9698: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c conftstm.o >&5 configure:9701: $? = 0 configure:9739: result: ok configure:9834: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:9837: $? = 0 configure:10604: checking for dlfcn.h configure:10625: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:10632: $? = 0 configure:10649: result: yes configure:10776: checking for C++ compiler version configure:10784: g++ --version >&5 g++ (GCC) 4.2.4 (Ubuntu 4.2.4-1ubuntu4) 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:10788: $? = 0 configure:10795: g++ -v >&5 Using built-in specs. Target: x86_64-linux-gnu Configured with: ../src/configure -v --enable-languages=c,c++,fortran,objc,obj-c++,treelang --prefix=/usr --enable-shared --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --enable-nls --with-gxx-include-dir=/usr/include/c++/4.2 --program-suffix=-4.2 --enable-clocale=gnu --enable-libstdcxx-debug --enable-objc-gc --enable-mpfr --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu Thread model: posix gcc version 4.2.4 (Ubuntu 4.2.4-1ubuntu4) configure:10799: $? = 0 configure:10806: g++ -V >&5 g++: '-V' option must have argument configure:10810: $? = 1 configure:10813: checking whether we are using the GNU C++ compiler configure:10866: result: yes configure:10875: checking whether g++ accepts -g configure:11013: result: yes configure:11038: checking dependency style of g++ configure:11148: result: gcc3 configure:11171: checking how to run the C++ preprocessor configure:11207: g++ -E conftest.cpp configure:11214: $? = 0 configure:11245: g++ -E conftest.cpp conftest.cpp:27:28: error: ac_nonexistent.h: No such file or directory configure:11252: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | /* end confdefs.h. */ | #include configure:11285: result: g++ -E configure:11314: g++ -E conftest.cpp configure:11321: $? = 0 configure:11352: g++ -E conftest.cpp conftest.cpp:27:28: error: ac_nonexistent.h: No such file or directory configure:11359: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | /* end confdefs.h. */ | #include configure:11869: checking for objdir configure:11884: result: .libs configure:12180: checking if gcc -std=gnu99 supports -fno-rtti -fno-exceptions configure:12198: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread -fno-rtti -fno-exceptions conftest.c >&5 cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ but not for C configure:12202: $? = 0 configure:12215: result: no configure:12235: checking for gcc -std=gnu99 option to produce PIC configure:12507: result: -fPIC -DPIC configure:12519: checking if gcc -std=gnu99 PIC flag -fPIC -DPIC works configure:12537: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread -fPIC -DPIC -DPIC conftest.c >&5 configure:12541: $? = 0 configure:12554: result: yes configure:12578: checking if gcc -std=gnu99 static flag -static works configure:12606: result: yes configure:12621: checking if gcc -std=gnu99 supports -c -o file.o configure:12642: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread -o out/conftest2.o conftest.c >&5 configure:12646: $? = 0 configure:12668: result: yes configure:12676: checking if gcc -std=gnu99 supports -c -o file.o configure:12723: result: yes configure:12756: checking whether the gcc -std=gnu99 linker (/usr/bin/ld) supports shared libraries configure:13830: result: yes configure:13867: checking whether -lc should be explicitly linked in configure:13872: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:13875: $? = 0 configure:13890: gcc -std=gnu99 -shared conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep -lc \>/dev/null 2\>\&1 configure:13893: $? = 0 configure:13905: result: no configure:14069: checking dynamic linker characteristics configure:14512: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread -Wl,-rpath -Wl,/foo conftest.c >&5 configure:14519: $? = 0 configure:14755: result: GNU/Linux ld.so configure:14857: checking how to hardcode library paths into programs configure:14882: result: immediate configure:15005: checking for shl_load configure:15061: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 /tmp/ccsN5RiK.o: In function `main': /root/ImageMagick-6.5.4-5/conftest.c:62: undefined reference to `shl_load' collect2: ld returned 1 exit status configure:15068: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | /* end confdefs.h. */ | /* Define shl_load to an innocuous variant, in case declares shl_load. | For example, HP-UX 11i declares gettimeofday. */ | #define shl_load innocuous_shl_load | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char shl_load (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef shl_load | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char shl_load (); | /* 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_shl_load || defined __stub___shl_load | choke me | #endif | | int | main () | { | return shl_load (); | ; | return 0; | } configure:15088: result: no configure:15093: checking for shl_load in -ldld configure:15128: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldld >&5 /usr/bin/ld: cannot find -ldld collect2: ld returned 1 exit status configure:15135: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char shl_load (); | int | main () | { | return shl_load (); | ; | return 0; | } configure:15156: result: no configure:15161: checking for dlopen configure:15217: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 /tmp/ccaQbBgf.o: In function `main': /root/ImageMagick-6.5.4-5/conftest.c:62: undefined reference to `dlopen' collect2: ld returned 1 exit status configure:15224: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | /* end confdefs.h. */ | /* Define dlopen to an innocuous variant, in case declares dlopen. | For example, HP-UX 11i declares gettimeofday. */ | #define dlopen innocuous_dlopen | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char dlopen (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef dlopen | | /* 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 dlopen (); | /* 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_dlopen || defined __stub___dlopen | choke me | #endif | | int | main () | { | return dlopen (); | ; | return 0; | } configure:15244: result: no configure:15249: checking for dlopen in -ldl configure:15284: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:15291: $? = 0 configure:15312: result: yes configure:15489: checking whether a program can dlopen itself configure:15559: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread -DHAVE_DLFCN_H -Wl,--export-dynamic conftest.c -ldl >&5 configure: In function 'fnord': configure:15540: warning: unused variable 'i' configure:15562: $? = 0 configure:15580: result: yes configure:15585: checking whether a statically linked program can dlopen itself configure:15655: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread -DHAVE_DLFCN_H -Wl,--export-dynamic -static conftest.c -ldl >&5 configure: In function 'fnord': configure:15636: warning: unused variable 'i' /tmp/cc6qJZRS.o: In function `main': /root/ImageMagick-6.5.4-5/configure:15639: warning: Using 'dlopen' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking configure:15658: $? = 0 /lib/: cannot read file data: Is a directory configure:15676: result: no configure:15715: checking whether stripping libraries is possible configure:15720: result: yes configure:15755: checking if libtool supports shared libraries configure:15757: result: yes configure:15760: checking whether to build shared libraries configure:15781: result: yes configure:15784: checking whether to build static libraries configure:15788: result: yes configure:15938: checking for ld used by g++ configure:16005: result: /usr/bin/ld configure:16014: checking if the linker (/usr/bin/ld) is GNU ld configure:16029: result: yes configure:16084: checking whether the g++ linker (/usr/bin/ld) supports shared libraries configure:17059: result: yes configure:17087: g++ -c -g -O2 -Wall -W -pthread conftest.cpp >&5 configure:17090: $? = 0 configure:17272: checking for g++ option to produce PIC configure:17589: result: -fPIC -DPIC configure:17598: checking if g++ PIC flag -fPIC -DPIC works configure:17616: g++ -c -g -O2 -Wall -W -pthread -fPIC -DPIC -DPIC conftest.cpp >&5 configure:17620: $? = 0 configure:17633: result: yes configure:17654: checking if g++ static flag -static works configure:17682: result: yes configure:17694: checking if g++ supports -c -o file.o configure:17715: g++ -c -g -O2 -Wall -W -pthread -o out/conftest2.o conftest.cpp >&5 configure:17719: $? = 0 configure:17741: result: yes configure:17746: checking if g++ supports -c -o file.o configure:17793: result: yes configure:17823: checking whether the g++ linker (/usr/bin/ld) supports shared libraries configure:17849: result: yes configure:17986: checking dynamic linker characteristics configure:18377: g++ -o conftest -g -O2 -Wall -W -pthread -Wl,-rpath -Wl,/foo conftest.cpp >&5 configure:18384: $? = 0 configure:18620: result: GNU/Linux ld.so configure:18671: checking how to hardcode library paths into programs configure:18696: result: immediate configure:18766: checking which extension is used for runtime loadable modules configure:18776: result: .so configure:18786: checking which variable specifies run-time module search path configure:18793: result: LD_LIBRARY_PATH configure:18803: checking for the default library search path configure:18810: result: /lib64 /usr/lib64 /lib /usr/lib /usr/local/lib /lib/x86_64-linux-gnu /usr/lib/x86_64-linux-gnu configure:18840: checking for library containing dlopen configure:18881: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 /tmp/ccgZ8C5P.o: In function `main': /root/ImageMagick-6.5.4-5/conftest.c:42: undefined reference to `dlopen' collect2: ld returned 1 exit status configure:18888: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | /* 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 dlopen (); | int | main () | { | return dlopen (); | ; | return 0; | } configure:18881: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:18888: $? = 0 configure:18919: result: -ldl configure:19075: checking for dlerror configure:19131: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl -ldl >&5 configure:19138: $? = 0 configure:19160: result: yes configure:19177: checking for shl_load configure:19260: result: no configure:19270: checking for shl_load in -ldld configure:19333: result: no configure:19525: checking for dld_link in -ldld configure:19560: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldld -ldl >&5 /usr/bin/ld: cannot find -ldld collect2: ld returned 1 exit status configure:19567: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 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 dld_link (); | int | main () | { | return dld_link (); | ; | return 0; | } configure:19588: result: no configure:19626: checking for _ prefix in compiled symbols configure:19636: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 conftest.c: In function 'main': conftest.c:2: warning: statement with no effect configure:19639: $? = 0 configure:19643: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm configure:19646: $? = 0 configure:19668: result: no configure:19784: checking whether deplibs are loaded by dlopen configure:19878: result: yes configure:19894: checking for argz.h configure:19915: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:19922: $? = 0 configure:19939: result: yes configure:19953: checking for error_t configure:19984: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:19991: $? = 0 configure:20021: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 conftest.c: In function 'main': conftest.c:42: error: expected expression before ')' token configure:20028: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | /* end confdefs.h. */ | #if defined(HAVE_ARGZ_H) | # include | #endif | | int | main () | { | if (sizeof ((error_t))) | return 0; | ; | return 0; | } configure:20051: result: yes configure:20086: checking for argz_add configure:20142: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:20149: $? = 0 configure:20171: result: yes configure:20086: checking for argz_append configure:20142: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:20149: $? = 0 configure:20171: result: yes configure:20086: checking for argz_count configure:20142: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:20149: $? = 0 configure:20171: result: yes configure:20086: checking for argz_create_sep configure:20142: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:20149: $? = 0 configure:20171: result: yes configure:20086: checking for argz_insert configure:20142: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:20149: $? = 0 configure:20171: result: yes configure:20086: checking for argz_next configure:20142: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:20149: $? = 0 configure:20171: result: yes configure:20086: checking for argz_stringify configure:20142: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:20149: $? = 0 configure:20171: result: yes configure:20190: checking if argz actually works configure:20221: result: yes configure:20242: checking whether libtool supports -dlopen/-dlpreopen configure:20254: result: yes configure:20285: checking for ltdl.h configure:20307: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 conftest.c:80:18: error: ltdl.h: No such file or directory configure:20314: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 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:20329: result: no configure:20556: checking where to find libltdl headers configure:20558: result: -I${top_srcdir}/ltdl configure:20560: checking where to find libltdl library configure:20562: result: ${top_build_prefix}ltdl/libltdlc.la configure:20617: checking for unistd.h configure:20662: result: yes configure:20617: checking for dl.h configure:20638: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 conftest.c:80:16: error: dl.h: No such file or directory configure:20645: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 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:20662: result: no configure:20617: checking for sys/dl.h configure:20638: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 conftest.c:80:20: error: sys/dl.h: No such file or directory configure:20645: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 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:20662: result: no configure:20617: checking for dld.h configure:20638: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 conftest.c:80:17: error: dld.h: No such file or directory configure:20645: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 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:20662: result: no configure:20617: checking for mach-o/dyld.h configure:20638: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 conftest.c:80:25: error: mach-o/dyld.h: No such file or directory configure:20645: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 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:20662: result: no configure:20617: checking for dirent.h configure:20638: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:20645: $? = 0 configure:20662: result: yes configure:20682: checking for closedir configure:20738: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:20745: $? = 0 configure:20767: result: yes configure:20682: checking for opendir configure:20738: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:20745: $? = 0 configure:20767: result: yes configure:20682: checking for readdir configure:20738: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:20745: $? = 0 configure:20767: result: yes configure:20789: checking for strlcat configure:20845: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 /tmp/ccchA0Ys.o: In function `main': /root/ImageMagick-6.5.4-5/conftest.c:84: undefined reference to `strlcat' collect2: ld returned 1 exit status configure:20852: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | /* end confdefs.h. */ | /* Define strlcat to an innocuous variant, in case declares strlcat. | For example, HP-UX 11i declares gettimeofday. */ | #define strlcat innocuous_strlcat | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char strlcat (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef strlcat | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char strlcat (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined __stub_strlcat || defined __stub___strlcat | choke me | #endif | | int | main () | { | return strlcat (); | ; | return 0; | } configure:20874: result: no configure:20789: checking for strlcpy configure:20845: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 /tmp/ccKr721s.o: In function `main': /root/ImageMagick-6.5.4-5/conftest.c:84: undefined reference to `strlcpy' collect2: ld returned 1 exit status configure:20852: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | /* end confdefs.h. */ | /* Define strlcpy to an innocuous variant, in case declares strlcpy. | For example, HP-UX 11i declares gettimeofday. */ | #define strlcpy innocuous_strlcpy | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char strlcpy (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef strlcpy | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char strlcpy (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined __stub_strlcpy || defined __stub___strlcpy | choke me | #endif | | int | main () | { | return strlcpy (); | ; | return 0; | } configure:20874: result: no configure:21130: checking whether to enable maintainer-specific portions of Makefiles configure:21139: result: no configure:21350: checking whether gcc -std=gnu99 needs -traditional configure:21392: result: no configure:21437: checking for ANSI C header files configure:21605: result: yes configure:21631: checking for dirent.h that defines DIR configure:21660: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:21667: $? = 0 configure:21684: result: yes configure:21699: checking for library containing opendir configure:21740: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:21747: $? = 0 configure:21778: result: none required configure:21918: checking arm/limits.h usability configure:21935: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 conftest.c:91:24: error: arm/limits.h: No such file or directory configure:21942: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | #include configure:21956: result: no configure:21960: checking arm/limits.h presence configure:21975: gcc -std=gnu99 -E conftest.c conftest.c:58:24: error: arm/limits.h: No such file or directory configure:21982: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | /* end confdefs.h. */ | #include configure:21996: result: no configure:22029: checking for arm/limits.h configure:22038: result: no configure:21918: checking complex.h usability configure:21935: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:21942: $? = 0 configure:21956: result: yes configure:21960: checking complex.h presence configure:21975: gcc -std=gnu99 -E conftest.c configure:21982: $? = 0 configure:21996: result: yes configure:22029: checking for complex.h configure:22038: result: yes configure:21918: checking errno.h usability configure:21935: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:21942: $? = 0 configure:21956: result: yes configure:21960: checking errno.h presence configure:21975: gcc -std=gnu99 -E conftest.c configure:21982: $? = 0 configure:21996: result: yes configure:22029: checking for errno.h configure:22038: result: yes configure:21918: checking fcntl.h usability configure:21935: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:21942: $? = 0 configure:21956: result: yes configure:21960: checking fcntl.h presence configure:21975: gcc -std=gnu99 -E conftest.c configure:21982: $? = 0 configure:21996: result: yes configure:22029: checking for fcntl.h configure:22038: result: yes configure:21907: checking for inttypes.h configure:21914: result: yes configure:21918: checking limits.h usability configure:21935: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:21942: $? = 0 configure:21956: result: yes configure:21960: checking limits.h presence configure:21975: gcc -std=gnu99 -E conftest.c configure:21982: $? = 0 configure:21996: result: yes configure:22029: checking for limits.h configure:22038: result: yes configure:21918: checking linux/unistd.h usability configure:21935: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:21942: $? = 0 configure:21956: result: yes configure:21960: checking linux/unistd.h presence configure:21975: gcc -std=gnu99 -E conftest.c configure:21982: $? = 0 configure:21996: result: yes configure:22029: checking for linux/unistd.h configure:22038: result: yes configure:21918: checking locale.h usability configure:21935: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:21942: $? = 0 configure:21956: result: yes configure:21960: checking locale.h presence configure:21975: gcc -std=gnu99 -E conftest.c configure:21982: $? = 0 configure:21996: result: yes configure:22029: checking for locale.h configure:22038: result: yes configure:21918: checking machine/param.h usability configure:21935: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 conftest.c:98:27: error: machine/param.h: No such file or directory configure:21942: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_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:21956: result: no configure:21960: checking machine/param.h presence configure:21975: gcc -std=gnu99 -E conftest.c conftest.c:65:27: error: machine/param.h: No such file or directory configure:21982: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | /* end confdefs.h. */ | #include configure:21996: result: no configure:22029: checking for machine/param.h configure:22038: result: no configure:21907: checking for mach-o/dyld.h configure:21914: result: no configure:21918: checking OS.h usability configure:21935: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 conftest.c:98:16: error: OS.h: No such file or directory configure:21942: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_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:21956: result: no configure:21960: checking OS.h presence configure:21975: gcc -std=gnu99 -E conftest.c conftest.c:65:16: error: OS.h: No such file or directory configure:21982: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | /* end confdefs.h. */ | #include configure:21996: result: no configure:22029: checking for OS.h configure:22038: result: no configure:21918: checking stdarg.h usability configure:21935: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:21942: $? = 0 configure:21956: result: yes configure:21960: checking stdarg.h presence configure:21975: gcc -std=gnu99 -E conftest.c configure:21982: $? = 0 configure:21996: result: yes configure:22029: checking for stdarg.h configure:22038: result: yes configure:21918: checking stddef.h usability configure:21935: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:21942: $? = 0 configure:21956: result: yes configure:21960: checking stddef.h presence configure:21975: gcc -std=gnu99 -E conftest.c configure:21982: $? = 0 configure:21996: result: yes configure:22029: checking for stddef.h configure:22038: result: yes configure:21907: checking for string.h configure:21914: result: yes configure:21907: checking for strings.h configure:21914: result: yes configure:21918: checking sys/ipc.h usability configure:21935: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:21942: $? = 0 configure:21956: result: yes configure:21960: checking sys/ipc.h presence configure:21975: gcc -std=gnu99 -E conftest.c configure:21982: $? = 0 configure:21996: result: yes configure:22029: checking for sys/ipc.h configure:22038: result: yes configure:21918: checking sys/resource.h usability configure:21935: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:21942: $? = 0 configure:21956: result: yes configure:21960: checking sys/resource.h presence configure:21975: gcc -std=gnu99 -E conftest.c configure:21982: $? = 0 configure:21996: result: yes configure:22029: checking for sys/resource.h configure:22038: result: yes configure:21918: checking sys/syslimits.h usability configure:21935: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 conftest.c:104:27: error: sys/syslimits.h: No such file or directory configure:21942: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_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:21956: result: no configure:21960: checking sys/syslimits.h presence configure:21975: gcc -std=gnu99 -E conftest.c conftest.c:71:27: error: sys/syslimits.h: No such file or directory configure:21982: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | /* end confdefs.h. */ | #include configure:21996: result: no configure:22029: checking for sys/syslimits.h configure:22038: result: no configure:21918: checking sys/time.h usability configure:21935: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:21942: $? = 0 configure:21956: result: yes configure:21960: checking sys/time.h presence configure:21975: gcc -std=gnu99 -E conftest.c configure:21982: $? = 0 configure:21996: result: yes configure:22029: checking for sys/time.h configure:22038: result: yes configure:21918: checking sys/timeb.h usability configure:21935: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:21942: $? = 0 configure:21956: result: yes configure:21960: checking sys/timeb.h presence configure:21975: gcc -std=gnu99 -E conftest.c configure:21982: $? = 0 configure:21996: result: yes configure:22029: checking for sys/timeb.h configure:22038: result: yes configure:21918: checking sys/times.h usability configure:21935: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:21942: $? = 0 configure:21956: result: yes configure:21960: checking sys/times.h presence configure:21975: gcc -std=gnu99 -E conftest.c configure:21982: $? = 0 configure:21996: result: yes configure:22029: checking for sys/times.h configure:22038: result: yes configure:21907: checking for sys/types.h configure:21914: result: yes configure:21918: checking sys/wait.h usability configure:21935: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:21942: $? = 0 configure:21956: result: yes configure:21960: checking sys/wait.h presence configure:21975: gcc -std=gnu99 -E conftest.c configure:21982: $? = 0 configure:21996: result: yes configure:22029: checking for sys/wait.h configure:22038: result: yes configure:21907: checking for unistd.h configure:21914: result: yes configure:21918: checking wchar.h usability configure:21935: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:21942: $? = 0 configure:21956: result: yes configure:21960: checking wchar.h presence configure:21975: gcc -std=gnu99 -E conftest.c configure:21982: $? = 0 configure:21996: result: yes configure:22029: checking for wchar.h configure:22038: result: yes configure:22060: checking for stdbool.h that conforms to C99 configure:22155: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 conftest.c:105: warning: the address of 's' will always evaluate as 'true' conftest.c: In function 'main': conftest.c:149: warning: the address of 'a' will always evaluate as 'true' conftest.c:149: warning: the address of 'b' will always evaluate as 'true' conftest.c:149: warning: the address of 'c' will always evaluate as 'true' conftest.c:149: warning: the address of 'd' will always evaluate as 'true' conftest.c:149: warning: the address of 'f' will always evaluate as 'true' conftest.c:149: warning: the address of 'g' will always evaluate as 'true' conftest.c:149: warning: the address of 'h' will always evaluate as 'true' conftest.c:149: warning: the address of 'i' will always evaluate as 'true' conftest.c:150: warning: the address of 'n' will always evaluate as 'true' conftest.c:150: warning: the address of 'o' will always evaluate as 'true' conftest.c:150: warning: the address of 'p' will always evaluate as 'true' configure:22162: $? = 0 configure:22177: result: yes configure:22179: checking for _Bool configure:22207: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:22214: $? = 0 configure:22241: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 conftest.c: In function 'main': conftest.c:114: error: expected expression before ')' token configure:22248: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((_Bool))) | return 0; | ; | return 0; | } configure:22271: result: yes configure:22290: checking for working volatile configure:22319: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:22326: $? = 0 configure:22341: result: yes configure:22351: checking for preprocessor stringizing operator configure:22375: result: yes configure:22385: checking whether stat file-mode macros are broken configure:22422: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:22429: $? = 0 configure:22444: result: no configure:22454: checking whether time.h and sys/time.h may both be included configure:22484: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:22491: $? = 0 configure:22506: result: yes configure:22516: checking whether struct tm is in sys/time.h or time.h configure:22546: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:22553: $? = 0 configure:22568: result: time.h configure:22578: checking whether #! works in shell scripts configure:22595: result: yes configure:22602: checking for an ANSI C-conforming const configure:22677: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 conftest.c: In function 'main': conftest.c:111: warning: 't' is used uninitialized in this function conftest.c:127: warning: 'b' is used uninitialized in this function conftest.c:133: warning: 'cs[0]' is used uninitialized in this function configure:22684: $? = 0 configure:22699: result: yes configure:22713: checking for inline configure:22739: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 conftest.c:85: warning: C99 inline functions are not supported; using GNU89 conftest.c:85: warning: to disable this warning use -fgnu89-inline or the gnu_inline function attribute configure:22746: $? = 0 configure:22764: result: inline configure:22787: checking for C/C++ restrict keyword configure:22822: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:22829: $? = 0 configure:22847: result: __restrict configure:22867: checking whether byte ordering is bigendian configure:22892: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 conftest.c:84: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'a' configure:22899: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | /* end confdefs.h. */ | #ifndef __APPLE_CC__ | not a universal capable compiler | #endif | typedef int dummy; | configure:22949: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:22956: $? = 0 configure:22988: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 conftest.c: In function 'main': conftest.c:90: error: 'not' undeclared (first use in this function) conftest.c:90: error: (Each undeclared identifier is reported only once conftest.c:90: error: for each function it appears in.) conftest.c:90: error: expected ';' before 'big' configure:22995: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | /* end confdefs.h. */ | #include | #include | | int | main () | { | #if BYTE_ORDER != BIG_ENDIAN | not big endian | #endif | | ; | return 0; | } configure:23247: result: no configure:23274: checking for mode_t configure:23302: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:23309: $? = 0 configure:23336: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 conftest.c: In function 'main': conftest.c:119: error: expected expression before ')' token configure:23343: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((mode_t))) | return 0; | ; | return 0; | } configure:23366: result: yes configure:23380: checking for off_t configure:23408: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:23415: $? = 0 configure:23442: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 conftest.c: In function 'main': conftest.c:119: error: expected expression before ')' token configure:23449: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((off_t))) | return 0; | ; | return 0; | } configure:23472: result: yes configure:23486: checking for pid_t configure:23514: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:23521: $? = 0 configure:23548: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 conftest.c: In function 'main': conftest.c:119: error: expected expression before ')' token configure:23555: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((pid_t))) | return 0; | ; | return 0; | } configure:23578: result: yes configure:23592: checking for size_t configure:23620: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:23627: $? = 0 configure:23654: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 conftest.c: In function 'main': conftest.c:119: error: expected expression before ')' token configure:23661: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((size_t))) | return 0; | ; | return 0; | } configure:23684: result: yes configure:23698: checking for ssize_t configure:23726: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:23733: $? = 0 configure:23760: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 conftest.c: In function 'main': conftest.c:119: error: expected expression before ')' token configure:23767: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((ssize_t))) | return 0; | ; | return 0; | } configure:23790: result: yes configure:23806: checking for long double with more range or precision than double configure:23851: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:23858: $? = 0 configure:23873: result: yes configure:23887: checking whether char is unsigned configure:23915: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:23922: $? = 0 configure:23937: result: no configure:23952: checking size of signed short configure:24257: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:24261: $? = 0 configure:24267: ./conftest configure:24271: $? = 0 configure:24297: result: 2 configure:24313: checking size of unsigned short configure:24618: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:24622: $? = 0 configure:24628: ./conftest configure:24632: $? = 0 configure:24658: result: 2 configure:24674: checking size of signed int configure:24979: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:24983: $? = 0 configure:24989: ./conftest configure:24993: $? = 0 configure:25019: result: 4 configure:25035: checking size of unsigned int configure:25340: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:25344: $? = 0 configure:25350: ./conftest configure:25354: $? = 0 configure:25380: result: 4 configure:25396: checking size of signed long configure:25701: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:25705: $? = 0 configure:25711: ./conftest configure:25715: $? = 0 configure:25741: result: 8 configure:25757: checking size of unsigned long configure:26062: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:26066: $? = 0 configure:26072: ./conftest configure:26076: $? = 0 configure:26102: result: 8 configure:26119: checking size of signed long long configure:26424: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:26428: $? = 0 configure:26434: ./conftest configure:26438: $? = 0 configure:26464: result: 8 configure:26482: checking size of unsigned long long configure:26787: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:26791: $? = 0 configure:26797: ./conftest configure:26801: $? = 0 configure:26827: result: 8 configure:26843: checking size of off_t configure:27148: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:27152: $? = 0 configure:27158: ./conftest configure:27162: $? = 0 configure:27188: result: 8 configure:27204: checking size of size_t configure:27509: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:27513: $? = 0 configure:27519: ./conftest configure:27523: $? = 0 configure:27549: result: 8 configure:27565: checking size of unsigned int* configure:27870: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:27874: $? = 0 configure:27880: ./conftest configure:27884: $? = 0 configure:27910: result: 8 configure:27925: checking for signed 8-bit type configure:27928: result: signed char configure:27932: checking for unsigned 8-bit type configure:27935: result: unsigned char configure:27939: checking for signed 16-bit type configure:27942: result: signed short configure:27946: checking for unsigned 16-bit type configure:27949: result: unsigned short configure:27953: checking for signed 32-bit type configure:27961: result: signed int configure:27965: checking for unsigned 32-bit type configure:27973: result: unsigned int configure:27977: checking for signed 64-bit type configure:27985: result: signed long configure:27989: checking for unsigned 64-bit type configure:27997: result: unsigned long configure:28001: checking for unsigned maximum type configure:28009: result: unsigned long configure:28013: checking for pointer difference type configure:28021: result: unsigned long configure:28025: checking whether our compiler supports __func__ configure:28048: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:28055: $? = 0 configure:28060: result: yes configure:28139: checking for stdlib.h configure:28146: result: yes configure:28139: checking for unistd.h configure:28146: result: yes configure:28289: checking for getpagesize configure:28345: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:28352: $? = 0 configure:28374: result: yes configure:28386: checking for working mmap file i/o configure:28515: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:28519: $? = 0 configure:28525: ./conftest configure:28529: $? = 0 configure:28546: result: yes configure:28557: checking whether closedir returns void configure:28591: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:28595: $? = 0 configure:28601: ./conftest configure:28605: $? = 0 configure:28622: result: no configure:28638: checking for stdlib.h configure:28645: result: yes configure:28638: checking for unistd.h configure:28645: result: yes configure:28788: checking for getpagesize configure:28873: result: yes configure:28885: checking for working mmap configure:29032: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:29036: $? = 0 configure:29042: ./conftest configure:29046: $? = 0 configure:29063: result: yes configure:29090: checking vfork.h usability configure:29107: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 conftest.c:136:19: error: vfork.h: No such file or directory configure:29114: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 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:29128: result: no configure:29132: checking vfork.h presence configure:29147: gcc -std=gnu99 -E conftest.c conftest.c:103:19: error: vfork.h: No such file or directory configure:29154: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | /* end confdefs.h. */ | #include configure:29168: result: no configure:29201: checking for vfork.h configure:29210: result: no configure:29230: checking for fork configure:29286: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 conftest.c:126: warning: conflicting types for built-in function 'fork' configure:29293: $? = 0 configure:29315: result: yes configure:29230: checking for vfork configure:29286: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:29293: $? = 0 configure:29315: result: yes configure:29328: checking for working fork configure:29360: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:29364: $? = 0 configure:29370: ./conftest configure:29374: $? = 0 configure:29391: result: yes configure:29412: checking for working vfork configure:29553: result: yes configure:29584: checking for working memcmp configure:29637: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:29641: $? = 0 configure:29647: ./conftest configure:29651: $? = 0 configure:29668: result: yes configure:29694: checking sys/select.h usability configure:29711: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:29718: $? = 0 configure:29732: result: yes configure:29736: checking sys/select.h presence configure:29751: gcc -std=gnu99 -E conftest.c configure:29758: $? = 0 configure:29772: result: yes configure:29805: checking for sys/select.h configure:29814: result: yes configure:29694: checking sys/socket.h usability configure:29711: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:29718: $? = 0 configure:29732: result: yes configure:29736: checking sys/socket.h presence configure:29751: gcc -std=gnu99 -E conftest.c configure:29758: $? = 0 configure:29772: result: yes configure:29805: checking for sys/socket.h configure:29814: result: yes configure:29829: checking types of arguments for select configure:29867: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:29874: $? = 0 configure:29895: result: int,fd_set *,struct timeval * configure:29925: checking return type of signal handlers configure:29953: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 conftest.c: In function 'main': conftest.c:118: error: void value not ignored as it ought to be configure:29960: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | /* end confdefs.h. */ | #include | #include | | int | main () | { | return *(signal (0, 0)) (0) == 1; | ; | return 0; | } configure:29975: result: void configure:29983: checking for working strtod configure:30034: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30038: $? = 0 configure:30044: ./conftest configure:30048: $? = 0 configure:30065: result: yes configure:30241: checking for vprintf configure:30297: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 conftest.c:136: warning: conflicting types for built-in function 'vprintf' configure:30304: $? = 0 configure:30326: result: yes configure:30335: checking for _doprnt configure:30391: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 /tmp/ccKFEBzV.o: In function `main': /root/ImageMagick-6.5.4-5/conftest.c:148: undefined reference to `_doprnt' collect2: ld returned 1 exit status configure:30398: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | /* end confdefs.h. */ | /* Define _doprnt to an innocuous variant, in case declares _doprnt. | For example, HP-UX 11i declares gettimeofday. */ | #define _doprnt innocuous__doprnt | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char _doprnt (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef _doprnt | | /* 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 _doprnt (); | /* 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__doprnt || defined __stub____doprnt | choke me | #endif | | int | main () | { | return _doprnt (); | ; | return 0; | } configure:30418: result: no configure:30510: checking for _exit configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 conftest.c:137: warning: conflicting types for built-in function '_exit' configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for atexit configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for clock configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for clock_gettime configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for directio configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 /tmp/ccCGf87p.o: In function `main': /root/ImageMagick-6.5.4-5/conftest.c:152: undefined reference to `directio' collect2: ld returned 1 exit status configure:30573: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | /* end confdefs.h. */ | /* Define directio to an innocuous variant, in case declares directio. | For example, HP-UX 11i declares gettimeofday. */ | #define directio innocuous_directio | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char directio (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef directio | | /* 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 directio (); | /* 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_directio || defined __stub___directio | choke me | #endif | | int | main () | { | return directio (); | ; | return 0; | } configure:30595: result: no configure:30510: checking for execvp configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 conftest.c:141: warning: conflicting types for built-in function 'execvp' configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for floor configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 conftest.c:142: warning: conflicting types for built-in function 'floor' /tmp/cc8ss7ta.o: In function `main': /root/ImageMagick-6.5.4-5/conftest.c:153: undefined reference to `floor' collect2: ld returned 1 exit status configure:30573: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | /* end confdefs.h. */ | /* Define floor to an innocuous variant, in case declares floor. | For example, HP-UX 11i declares gettimeofday. */ | #define floor innocuous_floor | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char floor (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef floor | | /* 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 floor (); | /* 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_floor || defined __stub___floor | choke me | #endif | | int | main () | { | return floor (); | ; | return 0; | } configure:30595: result: no configure:30510: checking for fork configure:30595: result: yes configure:30510: checking for ftime configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for ftruncate configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for getcwd configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for getpid configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for getexecname configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 /tmp/ccGG71XP.o: In function `main': /root/ImageMagick-6.5.4-5/conftest.c:158: undefined reference to `getexecname' collect2: ld returned 1 exit status configure:30573: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | /* end confdefs.h. */ | /* Define getexecname to an innocuous variant, in case declares getexecname. | For example, HP-UX 11i declares gettimeofday. */ | #define getexecname innocuous_getexecname | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char getexecname (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef getexecname | | /* 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 getexecname (); | /* 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_getexecname || defined __stub___getexecname | choke me | #endif | | int | main () | { | return getexecname (); | ; | return 0; | } configure:30595: result: no configure:30510: checking for getdtablesize configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for getpagesize configure:30595: result: yes configure:30510: checking for gettimeofday configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for gmtime_r configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for localtime_r configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for lstat configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for memmove configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 conftest.c:153: warning: conflicting types for built-in function 'memmove' configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for memset configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 conftest.c:154: warning: conflicting types for built-in function 'memset' configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for mkstemp configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for munmap configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for _NSGetExecutablePath configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 /tmp/cc4byA81.o: In function `main': /root/ImageMagick-6.5.4-5/conftest.c:168: undefined reference to `_NSGetExecutablePath' collect2: ld returned 1 exit status configure:30573: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | /* end confdefs.h. */ | /* Define _NSGetExecutablePath to an innocuous variant, in case declares _NSGetExecutablePath. | For example, HP-UX 11i declares gettimeofday. */ | #define _NSGetExecutablePath innocuous__NSGetExecutablePath | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char _NSGetExecutablePath (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef _NSGetExecutablePath | | /* 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 _NSGetExecutablePath (); | /* 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__NSGetExecutablePath || defined __stub____NSGetExecutablePath | choke me | #endif | | int | main () | { | return _NSGetExecutablePath (); | ; | return 0; | } configure:30595: result: no configure:30510: checking for pclose configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for _pclose configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 /tmp/ccoagRKK.o: In function `main': /root/ImageMagick-6.5.4-5/conftest.c:169: undefined reference to `_pclose' collect2: ld returned 1 exit status configure:30573: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | /* end confdefs.h. */ | /* Define _pclose to an innocuous variant, in case declares _pclose. | For example, HP-UX 11i declares gettimeofday. */ | #define _pclose innocuous__pclose | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char _pclose (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef _pclose | | /* 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 _pclose (); | /* 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__pclose || defined __stub____pclose | choke me | #endif | | int | main () | { | return _pclose (); | ; | return 0; | } configure:30595: result: no configure:30510: checking for poll configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for popen configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for _popen configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 /tmp/cc4QseOx.o: In function `main': /root/ImageMagick-6.5.4-5/conftest.c:171: undefined reference to `_popen' collect2: ld returned 1 exit status configure:30573: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | /* end confdefs.h. */ | /* Define _popen to an innocuous variant, in case declares _popen. | For example, HP-UX 11i declares gettimeofday. */ | #define _popen innocuous__popen | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char _popen (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef _popen | | /* 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 _popen (); | /* 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__popen || defined __stub____popen | choke me | #endif | | int | main () | { | return _popen (); | ; | return 0; | } configure:30595: result: no configure:30510: checking for posix_fadvise configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for posix_fallocate configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for posix_madvise configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for posix_memalign configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for pow configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 conftest.c:164: warning: conflicting types for built-in function 'pow' /tmp/ccyKjpYn.o: In function `main': /root/ImageMagick-6.5.4-5/conftest.c:175: undefined reference to `pow' collect2: ld returned 1 exit status configure:30573: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | /* end confdefs.h. */ | /* Define pow to an innocuous variant, in case declares pow. | For example, HP-UX 11i declares gettimeofday. */ | #define pow innocuous_pow | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char pow (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef pow | | /* 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 pow (); | /* 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_pow || defined __stub___pow | choke me | #endif | | int | main () | { | return pow (); | ; | return 0; | } configure:30595: result: no configure:30510: checking for pread configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for pwrite configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for raise configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for rand_r configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for readlink configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for readdir_r configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for realpath configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for select configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for seekdir configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for setlocale configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for sqrt configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 conftest.c:174: warning: conflicting types for built-in function 'sqrt' /tmp/cccJB6aY.o: In function `main': /root/ImageMagick-6.5.4-5/conftest.c:185: undefined reference to `sqrt' collect2: ld returned 1 exit status configure:30573: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | /* end confdefs.h. */ | /* Define sqrt to an innocuous variant, in case declares sqrt. | For example, HP-UX 11i declares gettimeofday. */ | #define sqrt innocuous_sqrt | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char sqrt (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef sqrt | | /* 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 sqrt (); | /* 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_sqrt || defined __stub___sqrt | choke me | #endif | | int | main () | { | return sqrt (); | ; | return 0; | } configure:30595: result: no configure:30510: checking for setvbuf configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for stat configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for strchr configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 conftest.c:176: warning: conflicting types for built-in function 'strchr' configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for strerror_r configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for strrchr configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 conftest.c:178: warning: conflicting types for built-in function 'strrchr' configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for strcspn configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 conftest.c:179: warning: conflicting types for built-in function 'strcspn' configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for strdup configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 conftest.c:180: warning: conflicting types for built-in function 'strdup' configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for strpbrk configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 conftest.c:181: warning: conflicting types for built-in function 'strpbrk' configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for strspn configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 conftest.c:182: warning: conflicting types for built-in function 'strspn' configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for strstr configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 conftest.c:183: warning: conflicting types for built-in function 'strstr' configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for strtol configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for symlink configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for sysconf configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for sigemptyset configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for sigaction configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for strerror configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for strlcat configure:30595: result: no configure:30510: checking for strlcpy configure:30595: result: no configure:30510: checking for strcasecmp configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 conftest.c:190: warning: conflicting types for built-in function 'strcasecmp' configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for strncasecmp configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 conftest.c:191: warning: conflicting types for built-in function 'strncasecmp' configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for telldir configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for tempnam configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 /tmp/ccerbvEw.o: In function `main': /root/ImageMagick-6.5.4-5/conftest.c:204: warning: the use of `tempnam' is dangerous, better use `mkstemp' configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for times configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for usleep configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for vsprintf configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 conftest.c:196: warning: conflicting types for built-in function 'vsprintf' configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for vsnprintf configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 conftest.c:197: warning: conflicting types for built-in function 'vsnprintf' configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for waitpid configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 configure:30573: $? = 0 configure:30595: result: yes configure:30510: checking for _wfopen configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 /tmp/ccUlcqhv.o: In function `main': /root/ImageMagick-6.5.4-5/conftest.c:210: undefined reference to `_wfopen' collect2: ld returned 1 exit status configure:30573: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | /* end confdefs.h. */ | /* Define _wfopen to an innocuous variant, in case declares _wfopen. | For example, HP-UX 11i declares gettimeofday. */ | #define _wfopen innocuous__wfopen | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char _wfopen (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef _wfopen | | /* 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 _wfopen (); | /* 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__wfopen || defined __stub____wfopen | choke me | #endif | | int | main () | { | return _wfopen (); | ; | return 0; | } configure:30595: result: no configure:30510: checking for _wstat configure:30566: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread conftest.c -ldl >&5 /tmp/cc2TZbYO.o: In function `main': /root/ImageMagick-6.5.4-5/conftest.c:210: undefined reference to `_wstat' collect2: ld returned 1 exit status configure:30573: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | /* end confdefs.h. */ | /* Define _wstat to an innocuous variant, in case declares _wstat. | For example, HP-UX 11i declares gettimeofday. */ | #define _wstat innocuous__wstat | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char _wstat (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef _wstat | | /* 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 _wstat (); | /* 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__wstat || defined __stub____wstat | choke me | #endif | | int | main () | { | return _wstat (); | ; | return 0; | } configure:30595: result: no configure:30614: checking whether pread is declared configure:30645: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:30652: $? = 0 configure:30667: result: yes configure:30683: checking whether pwrite is declared configure:30714: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:30721: $? = 0 configure:30736: result: yes configure:30755: checking whether strlcpy is declared configure:30786: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 conftest.c: In function 'main': conftest.c:185: error: 'strlcpy' undeclared (first use in this function) conftest.c:185: error: (Each undeclared identifier is reported only once conftest.c:185: error: for each function it appears in.) configure:30793: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | /* end confdefs.h. */ | | #include | | int | main () | { | #ifndef strlcpy | (void) strlcpy; | #endif | | ; | return 0; | } configure:30808: result: no configure:30827: checking whether vsnprintf is declared configure:30859: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread conftest.c >&5 configure:30866: $? = 0 configure:30881: result: yes configure:31037: checking for C++ compiler version configure:31045: g++ --version >&5 g++ (GCC) 4.2.4 (Ubuntu 4.2.4-1ubuntu4) 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:31049: $? = 0 configure:31056: g++ -v >&5 Using built-in specs. Target: x86_64-linux-gnu Configured with: ../src/configure -v --enable-languages=c,c++,fortran,objc,obj-c++,treelang --prefix=/usr --enable-shared --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --enable-nls --with-gxx-include-dir=/usr/include/c++/4.2 --program-suffix=-4.2 --enable-clocale=gnu --enable-libstdcxx-debug --enable-objc-gc --enable-mpfr --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu Thread model: posix gcc version 4.2.4 (Ubuntu 4.2.4-1ubuntu4) configure:31060: $? = 0 configure:31067: g++ -V >&5 g++: '-V' option must have argument configure:31071: $? = 1 configure:31074: checking whether we are using the GNU C++ compiler configure:31127: result: yes configure:31136: checking whether g++ accepts -g configure:31274: result: yes configure:31299: checking dependency style of g++ configure:31409: result: gcc3 configure:31424: checking whether the compiler recognizes bool as a built-in type configure:31461: g++ -c -g -O2 -Wall -W -pthread conftest.cpp >&5 conftest.cpp:181: warning: unused parameter 'x' conftest.cpp:182: warning: unused parameter 'x' conftest.cpp:183: warning: unused parameter 'x' configure:31468: $? = 0 configure:31490: result: yes configure:31500: checking whether the compiler implements namespaces configure:31533: g++ -c -g -O2 -Wall -W -pthread conftest.cpp >&5 configure:31540: $? = 0 configure:31562: result: yes configure:31572: checking whether the compiler supports the std namespace configure:31607: g++ -c -g -O2 -Wall -W -pthread conftest.cpp >&5 configure:31614: $? = 0 configure:31636: result: yes configure:31646: checking whether the compiler supports ISO C++ standard library configure:31686: g++ -c -g -O2 -Wall -W -pthread conftest.cpp >&5 configure:31693: $? = 0 configure:31715: result: yes configure:31725: checking whether the compiler implements L"widestring" configure:31751: g++ -c -g -O2 -Wall -W -pthread conftest.cpp >&5 configure:31758: $? = 0 configure:31780: result: yes configure:31798: checking for gcc -std=gnu99 option to support OpenMP configure:31818: g++ -o conftest -g -O2 -Wall -W -pthread conftest.cpp >&5 conftest.cpp:3: error: 'choke' does not name a type In file included from conftest.cpp:5: /usr/lib/gcc/x86_64-linux-gnu/4.2.4/include/omp.h:41: error: expected constructor, destructor, or type conversion before ';' token /usr/lib/gcc/x86_64-linux-gnu/4.2.4/include/omp.h:68: error: variable or field 'omp_init_lock' declared void /usr/lib/gcc/x86_64-linux-gnu/4.2.4/include/omp.h:68: error: 'omp_lock_t' was not declared in this scope /usr/lib/gcc/x86_64-linux-gnu/4.2.4/include/omp.h:68: error: expected primary-expression before ')' token /usr/lib/gcc/x86_64-linux-gnu/4.2.4/include/omp.h:69: error: variable or field 'omp_destroy_lock' declared void /usr/lib/gcc/x86_64-linux-gnu/4.2.4/include/omp.h:69: error: 'omp_lock_t' was not declared in this scope /usr/lib/gcc/x86_64-linux-gnu/4.2.4/include/omp.h:69: error: expected primary-expression before ')' token /usr/lib/gcc/x86_64-linux-gnu/4.2.4/include/omp.h:70: error: variable or field 'omp_set_lock' declared void /usr/lib/gcc/x86_64-linux-gnu/4.2.4/include/omp.h:70: error: 'omp_lock_t' was not declared in this scope /usr/lib/gcc/x86_64-linux-gnu/4.2.4/include/omp.h:70: error: expected primary-expression before ')' token /usr/lib/gcc/x86_64-linux-gnu/4.2.4/include/omp.h:71: error: variable or field 'omp_unset_lock' declared void /usr/lib/gcc/x86_64-linux-gnu/4.2.4/include/omp.h:71: error: 'omp_lock_t' was not declared in this scope /usr/lib/gcc/x86_64-linux-gnu/4.2.4/include/omp.h:71: error: expected primary-expression before ')' token /usr/lib/gcc/x86_64-linux-gnu/4.2.4/include/omp.h:72: error: 'omp_lock_t' was not declared in this scope /usr/lib/gcc/x86_64-linux-gnu/4.2.4/include/omp.h:72: error: expected primary-expression before ')' token configure:31825: $? = 1 configure: failed program was: | | #ifndef _OPENMP | choke me | #endif | #include | int main () { return omp_get_num_threads (); } | configure:31857: g++ -o conftest -g -O2 -Wall -W -pthread -fopenmp conftest.cpp >&5 configure:31864: $? = 0 configure:31894: result: -fopenmp configure:31912: checking whether C++ compiler is sufficient for Magick++ configure:31924: result: yes configure:31985: checking for X11 configure files configure:32035: result: configure:32055: checking for GOMP_parallel_start in -lgomp configure:32090: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand -L/root/ImageMagick-6.5.4-5/magick -L/root/ImageMagick-6.5.4-5/wand conftest.c -lgomp -ldl >&5 configure:32097: $? = 0 configure:32118: result: yes configure:32387: checking for the pthreads library -lpthread configure:32415: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand -L/root/ImageMagick-6.5.4-5/magick -L/root/ImageMagick-6.5.4-5/wand conftest.c -lgomp -ldl -lpthread >&5 conftest.c: In function 'main': conftest.c:192: warning: null argument where non-null required (argument 1) conftest.c:194: warning: null argument where non-null required (argument 1) conftest.c:194: warning: null argument where non-null required (argument 3) conftest.c:191: warning: 'th' is used uninitialized in this function configure:32422: $? = 0 configure:32442: result: yes configure:32939: checking for sqrt in -lm configure:32974: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand -L/root/ImageMagick-6.5.4-5/magick -L/root/ImageMagick-6.5.4-5/wand conftest.c -lm -lgomp -ldl -lpthread >&5 conftest.c:193: warning: conflicting types for built-in function 'sqrt' configure:32981: $? = 0 configure:33002: result: yes configure:33032: result: ------------------------------------------------------------- configure:33034: checking for BZLIB configure:33036: result: configure:33051: checking bzlib.h usability configure:33068: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c >&5 conftest.c:219:19: error: bzlib.h: No such file or directory configure:33075: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | /* 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:33089: result: no configure:33093: checking bzlib.h presence configure:33108: gcc -std=gnu99 -E -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c conftest.c:186:19: error: bzlib.h: No such file or directory configure:33115: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | /* end confdefs.h. */ | #include configure:33129: result: no configure:33162: checking for bzlib.h configure:33169: result: no configure:33180: checking for BZ2_bzDecompress in -lbz2 configure:33215: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand -L/root/ImageMagick-6.5.4-5/magick -L/root/ImageMagick-6.5.4-5/wand conftest.c -lbz2 -lm -lgomp -ldl -lpthread >&5 /usr/bin/ld: cannot find -lbz2 collect2: ld returned 1 exit status configure:33222: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | /* 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 BZ2_bzDecompress (); | int | main () | { | return BZ2_bzDecompress (); | ; | return 0; | } configure:33243: result: no configure:33325: checking if BZLIB package is complete configure:33345: result: no configure:33366: checking for X configure:33481: gcc -std=gnu99 -E -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c conftest.c:186:22: error: X11/Xlib.h: No such file or directory configure:33488: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | /* end confdefs.h. */ | #include configure:33537: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand -L/root/ImageMagick-6.5.4-5/magick -L/root/ImageMagick-6.5.4-5/wand conftest.c -lX11 -lm -lgomp -ldl -lpthread >&5 conftest.c:186:22: error: X11/Xlib.h: No such file or directory conftest.c: In function 'main': conftest.c:190: warning: implicit declaration of function 'XrmInitialize' configure:33544: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | /* end confdefs.h. */ | #include | int | main () | { | XrmInitialize () | ; | return 0; | } configure:33595: result: no configure:35174: result: ------------------------------------------------------------- configure:35176: checking for ZLIB configure:35178: result: configure:35193: checking zconf.h usability configure:35210: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c >&5 configure:35217: $? = 0 configure:35231: result: yes configure:35235: checking zconf.h presence configure:35250: gcc -std=gnu99 -E -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c configure:35257: $? = 0 configure:35271: result: yes configure:35304: checking for zconf.h configure:35311: result: yes configure:35332: checking zlib.h usability configure:35349: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c >&5 configure:35356: $? = 0 configure:35370: result: yes configure:35374: checking zlib.h presence configure:35389: gcc -std=gnu99 -E -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c configure:35396: $? = 0 configure:35410: result: yes configure:35443: checking for zlib.h configure:35450: result: yes configure:35461: checking for compress in -lz configure:35496: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand -L/root/ImageMagick-6.5.4-5/magick -L/root/ImageMagick-6.5.4-5/wand conftest.c -lz -lm -lgomp -ldl -lpthread >&5 configure:35503: $? = 0 configure:35524: result: yes configure:35532: checking for uncompress in -lz configure:35567: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand -L/root/ImageMagick-6.5.4-5/magick -L/root/ImageMagick-6.5.4-5/wand conftest.c -lz -lm -lgomp -ldl -lpthread >&5 configure:35574: $? = 0 configure:35595: result: yes configure:35603: checking for deflate in -lz configure:35638: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand -L/root/ImageMagick-6.5.4-5/magick -L/root/ImageMagick-6.5.4-5/wand conftest.c -lz -lm -lgomp -ldl -lpthread >&5 configure:35645: $? = 0 configure:35666: result: yes configure:35674: checking for inflate in -lz configure:35709: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand -L/root/ImageMagick-6.5.4-5/magick -L/root/ImageMagick-6.5.4-5/wand conftest.c -lz -lm -lgomp -ldl -lpthread >&5 configure:35716: $? = 0 configure:35737: result: yes configure:35745: checking for gzseek in -lz configure:35780: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand -L/root/ImageMagick-6.5.4-5/magick -L/root/ImageMagick-6.5.4-5/wand conftest.c -lz -lm -lgomp -ldl -lpthread >&5 configure:35787: $? = 0 configure:35808: result: yes configure:35816: checking for gztell in -lz configure:35851: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand -L/root/ImageMagick-6.5.4-5/magick -L/root/ImageMagick-6.5.4-5/wand conftest.c -lz -lm -lgomp -ldl -lpthread >&5 configure:35858: $? = 0 configure:35879: result: yes configure:35887: checking if ZLIB package is complete configure:35902: result: yes configure:36137: result: ------------------------------------------------------------- configure:36139: checking for DPS configure:36141: result: configure:36157: checking DPS/dpsXclient.h usability configure:36174: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand -Ino/X11 conftest.c >&5 conftest.c:221:28: error: DPS/dpsXclient.h: No such file or directory configure:36181: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 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:36195: result: no configure:36199: checking DPS/dpsXclient.h presence configure:36214: gcc -std=gnu99 -E -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand -Ino/X11 conftest.c conftest.c:188:28: error: DPS/dpsXclient.h: No such file or directory configure:36221: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 1 | /* end confdefs.h. */ | #include configure:36235: result: no configure:36268: checking for DPS/dpsXclient.h configure:36275: result: no configure:36293: checking for DPSInitialize in -ldps configure:36328: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand -Ino/X11 -L/root/ImageMagick-6.5.4-5/magick -L/root/ImageMagick-6.5.4-5/wand conftest.c -ldps -lz -lm -lgomp -ldl -lpthread >&5 /usr/bin/ld: cannot find -ldps collect2: ld returned 1 exit status configure:36335: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 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 DPSInitialize (); | int | main () | { | return DPSInitialize (); | ; | return 0; | } configure:36356: result: no configure:36367: checking for DPSInitialize in -ldps configure:36402: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand -Ino/X11 -L/root/ImageMagick-6.5.4-5/magick -L/root/ImageMagick-6.5.4-5/wand conftest.c -ldps -lXt -lz -lm -lgomp -ldl -lpthread >&5 /usr/bin/ld: cannot find -ldps collect2: ld returned 1 exit status configure:36409: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 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 DPSInitialize (); | int | main () | { | return DPSInitialize (); | ; | return 0; | } configure:36430: result: no configure:36447: checking for XDPSPixelsPerPoint in -ldpstk configure:36482: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand -Ino/X11 -L/root/ImageMagick-6.5.4-5/magick -L/root/ImageMagick-6.5.4-5/wand conftest.c -ldpstk -ldps -lz -lm -lgomp -ldl -lpthread >&5 /usr/bin/ld: cannot find -ldpstk collect2: ld returned 1 exit status configure:36489: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 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 XDPSPixelsPerPoint (); | int | main () | { | return XDPSPixelsPerPoint (); | ; | return 0; | } configure:36510: result: no configure:36518: checking if DPS package is complete configure:36539: result: no configure:36574: result: ------------------------------------------------------------- configure:36576: checking for DJVU configure:36578: result: configure:36592: checking libdjvu/ddjvuapi.h usability configure:36609: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c >&5 conftest.c:221:30: error: libdjvu/ddjvuapi.h: No such file or directory configure:36616: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 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:36630: result: no configure:36634: checking libdjvu/ddjvuapi.h presence configure:36649: gcc -std=gnu99 -E -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c conftest.c:188:30: error: libdjvu/ddjvuapi.h: No such file or directory configure:36656: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 1 | /* end confdefs.h. */ | #include configure:36670: result: no configure:36703: checking for libdjvu/ddjvuapi.h configure:36710: result: no configure:36721: checking for ddjvu_context_create in -ldjvulibre configure:36756: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand -L/root/ImageMagick-6.5.4-5/magick -L/root/ImageMagick-6.5.4-5/wand conftest.c -ldjvulibre -lz -lm -lgomp -ldl -lpthread >&5 /usr/bin/ld: cannot find -ldjvulibre collect2: ld returned 1 exit status configure:36763: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 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 ddjvu_context_create (); | int | main () | { | return ddjvu_context_create (); | ; | return 0; | } configure:36784: result: no configure:36792: checking if DJVU package is complete configure:36812: result: no configure:36846: result: ------------------------------------------------------------- configure:36848: checking for FFTW configure:36850: result: configure:36864: checking fftw3.h usability configure:36881: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c >&5 conftest.c:221:19: error: fftw3.h: No such file or directory configure:36888: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 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:36902: result: no configure:36906: checking fftw3.h presence configure:36921: gcc -std=gnu99 -E -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c conftest.c:188:19: error: fftw3.h: No such file or directory configure:36928: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 1 | /* end confdefs.h. */ | #include configure:36942: result: no configure:36975: checking for fftw3.h configure:36982: result: no configure:36993: checking for fftw_execute in -lfftw3 configure:37028: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand -L/root/ImageMagick-6.5.4-5/magick -L/root/ImageMagick-6.5.4-5/wand conftest.c -lfftw3 -lz -lm -lgomp -ldl -lpthread >&5 /usr/bin/ld: cannot find -lfftw3 collect2: ld returned 1 exit status configure:37035: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 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 fftw_execute (); | int | main () | { | return fftw_execute (); | ; | return 0; | } configure:37056: result: no configure:37064: checking if FFTW package is complete configure:37084: result: no configure:37118: result: ------------------------------------------------------------- configure:37120: checking for FlashPIX configure:37122: result: configure:37143: checking fpxlib.h usability configure:37160: g++ -c -g -O2 -Wall -W -pthread -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.cpp >&5 conftest.cpp:221:20: error: fpxlib.h: No such file or directory configure:37167: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 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:37181: result: no configure:37185: checking fpxlib.h presence configure:37200: g++ -E -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.cpp conftest.cpp:188:20: error: fpxlib.h: No such file or directory configure:37207: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 1 | /* end confdefs.h. */ | #include configure:37221: result: no configure:37254: checking for fpxlib.h configure:37261: result: no configure:37272: checking for FPX_OpenImageByFilename in -lfpx configure:37307: g++ -o conftest -g -O2 -Wall -W -pthread -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand -L/root/ImageMagick-6.5.4-5/magick -L/root/ImageMagick-6.5.4-5/wand conftest.cpp -lfpx -lz -lm -lgomp -ldl -lpthread >&5 /usr/bin/ld: cannot find -lfpx collect2: ld returned 1 exit status configure:37314: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 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 FPX_OpenImageByFilename (); | int | main () | { | return FPX_OpenImageByFilename (); | ; | return 0; | } configure:37335: result: no configure:37349: checking if FlashPIX package is complete configure:37369: result: no configure:37521: result: ------------------------------------------------------------- configure:37523: checking for FreeType 2.0 configure:37525: result: configure:37539: checking for freetype-config configure:37555: found /usr/local/bin/freetype-config configure:37566: result: freetype-config configure:37585: checking for FT_Init_FreeType in -lfreetype configure:37620: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand -L/root/ImageMagick-6.5.4-5/magick -L/root/ImageMagick-6.5.4-5/wand -L/usr/local/lib -lfreetype -lz conftest.c -lfreetype -lz -lm -lgomp -ldl -lpthread >&5 configure:37627: $? = 0 configure:37648: result: yes configure:37672: checking ft2build.h usability configure:37689: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c >&5 configure:37696: $? = 0 configure:37710: result: yes configure:37714: checking ft2build.h presence configure:37729: gcc -std=gnu99 -E -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c configure:37736: $? = 0 configure:37750: result: yes configure:37783: checking for ft2build.h configure:37790: result: yes configure:37801: checking for freetype/freetype.h configure:37822: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c >&5 configure:37829: $? = 0 configure:37844: result: yes configure:37860: checking if FreeType package is complete configure:37882: result: yes configure:38449: result: ------------------------------------------------------------- configure:38453: checking for GVC configure:38518: result: configure:38561: result: ------------------------------------------------------------- configure:38563: checking for JBIG configure:38565: result: configure:38579: checking jbig.h usability configure:38596: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c >&5 conftest.c:223:18: error: jbig.h: No such file or directory configure:38603: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 1 | #define FREETYPE_DELEGATE 1 | #define HAVE_FT2BUILD_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:38617: result: no configure:38621: checking jbig.h presence configure:38636: gcc -std=gnu99 -E -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c conftest.c:190:18: error: jbig.h: No such file or directory configure:38643: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 1 | #define FREETYPE_DELEGATE 1 | #define HAVE_FT2BUILD_H 1 | /* end confdefs.h. */ | #include configure:38657: result: no configure:38690: checking for jbig.h configure:38697: result: no configure:38708: checking for jbg_dec_init in -ljbig configure:38743: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand -L/root/ImageMagick-6.5.4-5/magick -L/root/ImageMagick-6.5.4-5/wand -L/usr/local/lib -lfreetype -lz conftest.c -ljbig -lfreetype -lz -lm -lgomp -ldl -lpthread >&5 /usr/bin/ld: cannot find -ljbig collect2: ld returned 1 exit status configure:38750: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 1 | #define FREETYPE_DELEGATE 1 | #define HAVE_FT2BUILD_H 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 jbg_dec_init (); | int | main () | { | return jbg_dec_init (); | ; | return 0; | } configure:38771: result: no configure:38779: checking if JBIG package is complete configure:38799: result: no configure:38833: result: ------------------------------------------------------------- configure:38835: checking for JPEG configure:38837: result: configure:38851: checking jconfig.h usability configure:38868: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c >&5 configure:38875: $? = 0 configure:38889: result: yes configure:38893: checking jconfig.h presence configure:38908: gcc -std=gnu99 -E -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c configure:38915: $? = 0 configure:38929: result: yes configure:38962: checking for jconfig.h configure:38969: result: yes configure:38990: checking jerror.h usability configure:39007: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c >&5 configure:39014: $? = 0 configure:39028: result: yes configure:39032: checking jerror.h presence configure:39047: gcc -std=gnu99 -E -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c configure:39054: $? = 0 configure:39068: result: yes configure:39101: checking for jerror.h configure:39108: result: yes configure:39129: checking jmorecfg.h usability configure:39146: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c >&5 configure:39153: $? = 0 configure:39167: result: yes configure:39171: checking jmorecfg.h presence configure:39186: gcc -std=gnu99 -E -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c configure:39193: $? = 0 configure:39207: result: yes configure:39240: checking for jmorecfg.h configure:39247: result: yes configure:39268: checking jpeglib.h usability configure:39285: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c >&5 configure:39292: $? = 0 configure:39306: result: yes configure:39310: checking jpeglib.h presence configure:39325: gcc -std=gnu99 -E -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c configure:39332: $? = 0 configure:39346: result: yes configure:39379: checking for jpeglib.h configure:39386: result: yes configure:39397: checking for jpeg_read_header in -ljpeg configure:39432: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand -L/root/ImageMagick-6.5.4-5/magick -L/root/ImageMagick-6.5.4-5/wand -L/usr/local/lib -lfreetype -lz conftest.c -ljpeg -lfreetype -lz -lm -lgomp -ldl -lpthread >&5 configure:39439: $? = 0 configure:39460: result: yes configure:39471: checking for JPEG library is version 6b or later configure:39505: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c >&5 configure:39512: $? = 0 configure:39527: result: yes configure:39530: checking if JPEG package is complete configure:39545: result: yes configure:39584: result: ------------------------------------------------------------- configure:39586: checking for JPEG Version 2 configure:39588: result: configure:39602: checking jasper/jasper.h usability configure:39619: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c >&5 conftest.c:224:27: error: jasper/jasper.h: No such file or directory configure:39626: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 1 | #define FREETYPE_DELEGATE 1 | #define HAVE_FT2BUILD_H 1 | #define JPEG_DELEGATE 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:39640: result: no configure:39644: checking jasper/jasper.h presence configure:39659: gcc -std=gnu99 -E -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c conftest.c:191:27: error: jasper/jasper.h: No such file or directory configure:39666: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 1 | #define FREETYPE_DELEGATE 1 | #define HAVE_FT2BUILD_H 1 | #define JPEG_DELEGATE 1 | /* end confdefs.h. */ | #include configure:39680: result: no configure:39713: checking for jasper/jasper.h configure:39720: result: no configure:39731: checking for jas_stream_fopen in -ljasper configure:39766: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand -L/root/ImageMagick-6.5.4-5/magick -L/root/ImageMagick-6.5.4-5/wand -L/usr/local/lib -lfreetype -lz conftest.c -ljasper -ljpeg -lfreetype -lz -lm -lgomp -ldl -lpthread >&5 /usr/bin/ld: cannot find -ljasper collect2: ld returned 1 exit status configure:39773: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 1 | #define FREETYPE_DELEGATE 1 | #define HAVE_FT2BUILD_H 1 | #define JPEG_DELEGATE 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 jas_stream_fopen (); | int | main () | { | return jas_stream_fopen (); | ; | return 0; | } configure:39794: result: no configure:39802: checking if JPEG version 2 support package is complete configure:39822: result: no configure:39856: result: ------------------------------------------------------------- configure:39858: checking for LCMS configure:39860: result: configure:39875: checking lcms.h usability configure:39892: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c >&5 conftest.c:224:18: error: lcms.h: No such file or directory configure:39899: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 1 | #define FREETYPE_DELEGATE 1 | #define HAVE_FT2BUILD_H 1 | #define JPEG_DELEGATE 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:39913: result: no configure:39917: checking lcms.h presence configure:39932: gcc -std=gnu99 -E -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c conftest.c:191:18: error: lcms.h: No such file or directory configure:39939: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 1 | #define FREETYPE_DELEGATE 1 | #define HAVE_FT2BUILD_H 1 | #define JPEG_DELEGATE 1 | /* end confdefs.h. */ | #include configure:39953: result: no configure:39986: checking for lcms.h configure:39993: result: no configure:40020: checking lcms/lcms.h usability configure:40037: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c >&5 conftest.c:224:23: error: lcms/lcms.h: No such file or directory configure:40044: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 1 | #define FREETYPE_DELEGATE 1 | #define HAVE_FT2BUILD_H 1 | #define JPEG_DELEGATE 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:40058: result: no configure:40062: checking lcms/lcms.h presence configure:40077: gcc -std=gnu99 -E -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c conftest.c:191:23: error: lcms/lcms.h: No such file or directory configure:40084: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 1 | #define FREETYPE_DELEGATE 1 | #define HAVE_FT2BUILD_H 1 | #define JPEG_DELEGATE 1 | /* end confdefs.h. */ | #include configure:40098: result: no configure:40131: checking for lcms/lcms.h configure:40138: result: no configure:40158: checking for cmsOpenProfileFromMem in -llcms configure:40193: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand -L/root/ImageMagick-6.5.4-5/magick -L/root/ImageMagick-6.5.4-5/wand -L/usr/local/lib -lfreetype -lz conftest.c -llcms -ljpeg -lfreetype -lz -lm -lgomp -ldl -lpthread >&5 /usr/bin/ld: cannot find -llcms collect2: ld returned 1 exit status configure:40200: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 1 | #define FREETYPE_DELEGATE 1 | #define HAVE_FT2BUILD_H 1 | #define JPEG_DELEGATE 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 cmsOpenProfileFromMem (); | int | main () | { | return cmsOpenProfileFromMem (); | ; | return 0; | } configure:40221: result: no configure:40229: checking if LCMS package is complete configure:40249: result: no configure:40285: result: ------------------------------------------------------------- configure:40289: checking for LQR configure:40354: result: configure:40400: result: ------------------------------------------------------------- configure:40404: checking for OPENEXR configure:40469: result: configure:40515: result: ------------------------------------------------------------- configure:40517: checking for PNG configure:40519: result: configure:40533: checking png.h usability configure:40550: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c >&5 configure:40557: $? = 0 configure:40571: result: yes configure:40575: checking png.h presence configure:40590: gcc -std=gnu99 -E -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c configure:40597: $? = 0 configure:40611: result: yes configure:40644: checking for png.h configure:40651: result: yes configure:40662: checking for png_get_io_ptr in -lpng configure:40697: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand -L/root/ImageMagick-6.5.4-5/magick -L/root/ImageMagick-6.5.4-5/wand -L/usr/local/lib -lfreetype -lz conftest.c -lpng -ljpeg -lfreetype -lz -lm -lgomp -ldl -lpthread >&5 configure:40704: $? = 0 configure:40725: result: yes configure:40733: checking if PNG package is complete configure:40748: result: yes configure:40993: result: ------------------------------------------------------------- configure:40995: checking for TIFF configure:40997: result: configure:41011: checking tiff.h usability configure:41028: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c >&5 conftest.c:225:18: error: tiff.h: No such file or directory configure:41035: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 1 | #define FREETYPE_DELEGATE 1 | #define HAVE_FT2BUILD_H 1 | #define JPEG_DELEGATE 1 | #define PNG_DELEGATE 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:41049: result: no configure:41053: checking tiff.h presence configure:41068: gcc -std=gnu99 -E -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c conftest.c:192:18: error: tiff.h: No such file or directory configure:41075: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 1 | #define FREETYPE_DELEGATE 1 | #define HAVE_FT2BUILD_H 1 | #define JPEG_DELEGATE 1 | #define PNG_DELEGATE 1 | /* end confdefs.h. */ | #include configure:41089: result: no configure:41122: checking for tiff.h configure:41129: result: no configure:41150: checking tiffio.h usability configure:41167: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c >&5 conftest.c:225:20: error: tiffio.h: No such file or directory configure:41174: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 1 | #define FREETYPE_DELEGATE 1 | #define HAVE_FT2BUILD_H 1 | #define JPEG_DELEGATE 1 | #define PNG_DELEGATE 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:41188: result: no configure:41192: checking tiffio.h presence configure:41207: gcc -std=gnu99 -E -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c conftest.c:192:20: error: tiffio.h: No such file or directory configure:41214: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 1 | #define FREETYPE_DELEGATE 1 | #define HAVE_FT2BUILD_H 1 | #define JPEG_DELEGATE 1 | #define PNG_DELEGATE 1 | /* end confdefs.h. */ | #include configure:41228: result: no configure:41261: checking for tiffio.h configure:41268: result: no configure:41279: checking for TIFFOpen in -ltiff configure:41314: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand -L/root/ImageMagick-6.5.4-5/magick -L/root/ImageMagick-6.5.4-5/wand -L/usr/local/lib -lfreetype -lz conftest.c -ltiff -lpng -ljpeg -lfreetype -lz -lm -lgomp -ldl -lpthread >&5 /usr/bin/ld: cannot find -ltiff collect2: ld returned 1 exit status configure:41321: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 1 | #define FREETYPE_DELEGATE 1 | #define HAVE_FT2BUILD_H 1 | #define JPEG_DELEGATE 1 | #define PNG_DELEGATE 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 TIFFOpen (); | int | main () | { | return TIFFOpen (); | ; | return 0; | } configure:41342: result: no configure:41350: checking for TIFFClientOpen in -ltiff configure:41385: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand -L/root/ImageMagick-6.5.4-5/magick -L/root/ImageMagick-6.5.4-5/wand -L/usr/local/lib -lfreetype -lz conftest.c -ltiff -lpng -ljpeg -lfreetype -lz -lm -lgomp -ldl -lpthread >&5 /usr/bin/ld: cannot find -ltiff collect2: ld returned 1 exit status configure:41392: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 1 | #define FREETYPE_DELEGATE 1 | #define HAVE_FT2BUILD_H 1 | #define JPEG_DELEGATE 1 | #define PNG_DELEGATE 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 TIFFClientOpen (); | int | main () | { | return TIFFClientOpen (); | ; | return 0; | } configure:41413: result: no configure:41421: checking for TIFFIsByteSwapped in -ltiff configure:41456: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand -L/root/ImageMagick-6.5.4-5/magick -L/root/ImageMagick-6.5.4-5/wand -L/usr/local/lib -lfreetype -lz conftest.c -ltiff -lpng -ljpeg -lfreetype -lz -lm -lgomp -ldl -lpthread >&5 /usr/bin/ld: cannot find -ltiff collect2: ld returned 1 exit status configure:41463: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 1 | #define FREETYPE_DELEGATE 1 | #define HAVE_FT2BUILD_H 1 | #define JPEG_DELEGATE 1 | #define PNG_DELEGATE 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 TIFFIsByteSwapped (); | int | main () | { | return TIFFIsByteSwapped (); | ; | return 0; | } configure:41484: result: no configure:41492: checking for TIFFReadRGBATile in -ltiff configure:41527: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand -L/root/ImageMagick-6.5.4-5/magick -L/root/ImageMagick-6.5.4-5/wand -L/usr/local/lib -lfreetype -lz conftest.c -ltiff -lpng -ljpeg -lfreetype -lz -lm -lgomp -ldl -lpthread >&5 /usr/bin/ld: cannot find -ltiff collect2: ld returned 1 exit status configure:41534: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 1 | #define FREETYPE_DELEGATE 1 | #define HAVE_FT2BUILD_H 1 | #define JPEG_DELEGATE 1 | #define PNG_DELEGATE 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 TIFFReadRGBATile (); | int | main () | { | return TIFFReadRGBATile (); | ; | return 0; | } configure:41555: result: no configure:41563: checking for TIFFReadRGBAStrip in -ltiff configure:41598: gcc -std=gnu99 -o conftest -fopenmp -g -O2 -Wall -W -pthread -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand -L/root/ImageMagick-6.5.4-5/magick -L/root/ImageMagick-6.5.4-5/wand -L/usr/local/lib -lfreetype -lz conftest.c -ltiff -lpng -ljpeg -lfreetype -lz -lm -lgomp -ldl -lpthread >&5 /usr/bin/ld: cannot find -ltiff collect2: ld returned 1 exit status configure:41605: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 1 | #define FREETYPE_DELEGATE 1 | #define HAVE_FT2BUILD_H 1 | #define JPEG_DELEGATE 1 | #define PNG_DELEGATE 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 TIFFReadRGBAStrip (); | int | main () | { | return TIFFReadRGBAStrip (); | ; | return 0; | } configure:41626: result: no configure:41634: checking if TIFF package is complete configure:41914: result: no configure:41966: result: ------------------------------------------------------------- configure:41968: checking for WMF configure:41970: result: configure:41976: checking for libwmf/ipa.h configure:41997: gcc -std=gnu99 -c -fopenmp -g -O2 -Wall -W -pthread -I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand conftest.c >&5 conftest.c:194:24: error: libwmf/ipa.h: No such file or directory configure:42004: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "ImageMagick" | #define PACKAGE_TARNAME "ImageMagick" | #define PACKAGE_VERSION "6.5.4" | #define PACKAGE_STRING "ImageMagick 6.5.4" | #define PACKAGE_BUGREPORT "http://www.imagemagick.org" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_PTHREAD 1 | #define HAVE_FSEEKO 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define LT_MODULE_EXT ".so" | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH" | #define LT_DLSEARCH_PATH "/lib64:/usr/lib64:/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu" | #define HAVE_LIBDL 1 | #define HAVE_DLERROR 1 | #define HAVE_LIBDLLOADER 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ERROR_T 1 | #define HAVE_ARGZ_ADD 1 | #define HAVE_ARGZ_APPEND 1 | #define HAVE_ARGZ_COUNT 1 | #define HAVE_ARGZ_CREATE_SEP 1 | #define HAVE_ARGZ_INSERT 1 | #define HAVE_ARGZ_NEXT 1 | #define HAVE_ARGZ_STRINGIFY 1 | #define HAVE_WORKING_ARGZ 1 | #define HAVE_PRELOADED_SYMBOLS 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_CLOSEDIR 1 | #define HAVE_OPENDIR 1 | #define HAVE_READDIR 1 | #define LT_LIBEXT "a" | #define BUILD_MODULES 1 | #define LTDL_DELEGATE 1 | #define INSTALLED_SUPPORT 1 | #define CIPHER_SUPPORT 1 | #define QUANTUM_DEPTH 16 | #define STDC_HEADERS 1 | #define HAVE_DIRENT_H 1 | #define HAVE_COMPLEX_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_IPC_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_STRINGIZE 1 | #define TIME_WITH_SYS_TIME 1 | #define restrict __restrict | #define HAVE_LONG_DOUBLE_WIDER 1 | #define SIZEOF_SIGNED_SHORT 2 | #define SIZEOF_UNSIGNED_SHORT 2 | #define SIZEOF_SIGNED_INT 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_SIGNED_LONG 8 | #define SIZEOF_UNSIGNED_LONG 8 | #define SIZEOF_SIGNED_LONG_LONG 8 | #define SIZEOF_UNSIGNED_LONG_LONG 8 | #define SIZEOF_OFF_T 8 | #define SIZEOF_SIZE_T 8 | #define SIZEOF_UNSIGNED_INTP 8 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP_FILEIO 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define SELECT_TYPE_ARG1 int | #define SELECT_TYPE_ARG234 (fd_set *) | #define SELECT_TYPE_ARG5 (struct timeval *) | #define RETSIGTYPE void | #define HAVE_VPRINTF 1 | #define HAVE__EXIT 1 | #define HAVE_ATEXIT 1 | #define HAVE_CLOCK 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_EXECVP 1 | #define HAVE_FORK 1 | #define HAVE_FTIME 1 | #define HAVE_FTRUNCATE 1 | #define HAVE_GETCWD 1 | #define HAVE_GETPID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_MUNMAP 1 | #define HAVE_PCLOSE 1 | #define HAVE_POLL 1 | #define HAVE_POPEN 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_FALLOCATE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_PREAD 1 | #define HAVE_PWRITE 1 | #define HAVE_RAISE 1 | #define HAVE_RAND_R 1 | #define HAVE_READLINK 1 | #define HAVE_READDIR_R 1 | #define HAVE_REALPATH 1 | #define HAVE_SELECT 1 | #define HAVE_SEEKDIR 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETVBUF 1 | #define HAVE_STAT 1 | #define HAVE_STRCHR 1 | #define HAVE_STRERROR_R 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRPBRK 1 | #define HAVE_STRSPN 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SYSCONF 1 | #define HAVE_SIGEMPTYSET 1 | #define HAVE_SIGACTION 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_TELLDIR 1 | #define HAVE_TEMPNAM 1 | #define HAVE_TIMES 1 | #define HAVE_USLEEP 1 | #define HAVE_VSPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_WAITPID 1 | #define HAVE_DECL_PREAD 1 | #define HAVE_DECL_PWRITE 1 | #define HAVE_DECL_STRLCPY 0 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_BOOL /**/ | #define HAVE_NAMESPACES /**/ | #define HAVE_STD_NAMESPACE /**/ | #define HAVE_STD_LIBS /**/ | #define HAVE_LSTRING /**/ | #define X11_CONFIGURE_PATH "" | #define X_DISPLAY_MISSING 1 | #define ZLIB_DELEGATE 1 | #define FREETYPE_DELEGATE 1 | #define HAVE_FT2BUILD_H 1 | #define JPEG_DELEGATE 1 | #define PNG_DELEGATE 1 | /* end confdefs.h. */ | #include | | #include configure:42019: result: no configure:42200: checking if WMF package is complete configure:42206: result: no configure:42724: result: ------------------------------------------------------------- configure:42726: checking for ImageMagick delegate programs configure:42728: result: configure:42783: checking for autotrace configure:42814: result: autotrace configure:42824: checking for mplayer configure:42855: result: mplayer configure:42865: checking for configure:42899: result: no configure:42906: checking for bzip2 configure:42924: found /bin/bzip2 configure:42937: result: /bin/bzip2 configure:42947: checking for xdg-open configure:42978: result: xdg-open configure:42988: checking for ralcgm configure:43019: result: ralcgm configure:43029: checking for cat configure:43047: found /bin/cat configure:43060: result: /bin/cat configure:43070: checking for ufraw-batch configure:43101: result: ufraw-batch configure:43111: checking for dot configure:43142: result: dot configure:43152: checking for dvips configure:43183: result: dvips configure:43193: checking for echo configure:43211: found /bin/echo configure:43224: result: /bin/echo configure:43234: checking for xterm configure:43265: result: xterm configure:43275: checking for fig2dev configure:43306: result: fig2dev configure:43316: checking for convert configure:43334: found /usr/local/bin/convert configure:43347: result: /usr/local/bin/convert configure:43357: checking for display configure:43375: found /usr/local/bin/display configure:43388: result: /usr/local/bin/display configure:43398: checking for mogrify configure:43416: found /usr/local/bin/mogrify configure:43429: result: /usr/local/bin/mogrify configure:43439: checking for gnuplot configure:43470: result: gnuplot configure:43480: checking for ra_pfm configure:43511: result: ra_pfm configure:43521: checking for hp2xx configure:43552: result: hp2xx configure:43562: checking for html2ps configure:43593: result: html2ps configure:43603: checking for ilbmtoppm configure:43634: result: ilbmtoppm configure:43644: checking for ppmtoilbm configure:43675: result: ppmtoilbm configure:43685: checking for lp configure:43716: result: no configure:43726: checking for lpr configure:43757: result: lpr configure:43767: checking for uncompress configure:43785: found /bin/uncompress configure:43798: result: /bin/uncompress configure:43808: checking for compress configure:43839: result: compress configure:43849: checking for gimp configure:43880: result: gimp configure:43890: checking for groff configure:43908: found /usr/bin/groff configure:43921: result: /usr/bin/groff configure:43931: checking for ffmpeg configure:43962: result: ffmpeg configure:43972: checking for ffmpeg configure:44003: result: ffmpeg configure:44013: checking for mv configure:44031: found /bin/mv configure:44044: result: /bin/mv configure:44054: checking for pcl6 configure:44085: result: pcl6 configure:44095: checking for pgpv configure:44126: result: pgpv configure:44136: checking for povray configure:44167: result: povray configure:44179: checking for gsx configure:44212: result: no configure:44179: checking for gsc configure:44212: result: no configure:44179: checking for gs configure:44197: found /usr/local/bin/gs configure:44209: result: /usr/local/bin/gs configure:44223: checking for rawtorle configure:44254: result: rawtorle configure:44264: checking for rm configure:44282: found /bin/rm configure:44295: result: /bin/rm configure:44305: checking for scanimage configure:44336: result: scanimage configure:44346: checking for enscript configure:44377: result: enscript configure:44387: checking for wmf2eps configure:44418: result: wmf2eps configure:44428: checking for curl configure:44446: found /usr/bin/curl configure:44459: result: /usr/bin/curl configure:44469: checking for gxps configure:44500: result: gxps configure:44510: checking for gzip configure:44528: found /bin/gzip configure:44541: result: /bin/gzip configure:44603: checking for Ghostscript fonts directory configure:44637: result: /usr/local/share/ghostscript/fonts/ configure:44751: checking for gnutar configure:44781: result: no configure:44751: checking for gtar configure:44781: result: no configure:44751: checking for tar configure:44767: found /bin/tar configure:44778: result: tar configure:44793: checking for perl configure:44809: found /usr/bin/perl configure:44820: result: perl configure:44835: checking for rpmbuild configure:44865: result: no configure:44835: checking for rpm configure:44865: result: no configure:44903: checking for 7za configure:44933: result: no configure:44959: checking for zip configure:44989: result: no configure:45133: result: ------------------------------------------------------------- configure:45135: checking for Ghostscript configure:45137: result: configure:45139: checking for Ghostscript version configure:45146: result: 8.64 configure:45150: checking for gs alpha device configure:45157: result: pngalpha configure:45161: checking for gs color device configure:45168: result: pnmraw configure:45172: checking for gs CMYK device configure:45179: result: pam configure:45183: checking for gs mono device configure:45190: result: pbmraw configure:45194: checking for gs PDF writing device configure:45201: result: pdfwrite configure:45205: checking for gs PS writing device configure:45212: result: pswrite configure:45216: checking for gs EPS writing device configure:45223: result: epswrite configure:45244: result: ------------------------------------------------------------- configure:45246: checking for Perl configure:45248: result: configure:45267: checking for perl configure:45285: found /usr/bin/perl configure:45297: result: /usr/bin/perl configure:45368: checking for perl version greater than or equal to 5.8.1 configure:45378: result: ok configure:45726: result: ------------------------------------------------------------- configure:45728: result: Update ImageMagick configuration configure:46180: creating ./config.status ## ---------------------- ## ## Running config.status. ## ## ---------------------- ## This file was extended by ImageMagick config.status 6.5.4, which was generated by GNU Autoconf 2.63. Invocation command line was CONFIG_FILES = CONFIG_HEADERS = CONFIG_LINKS = CONFIG_COMMANDS = $ ./config.status on server1 config.status:1586: creating config/configure.xml config.status:1586: creating config/delegates.xml config.status:1586: creating config/ImageMagick.rdf config.status:1586: creating config/MagickCore.dox config.status:1586: creating config/MagickWand.dox config.status:1586: creating config/type-ghostscript.xml config.status:1586: creating config/type-windows.xml config.status:1586: creating config/type.xml config.status:1586: creating ImageMagick.spec config.status:1586: creating Magick++/bin/Magick++-config config.status:1586: creating magick/ImageMagick.pc config.status:1586: creating Magick++/lib/ImageMagick++.pc config.status:1586: creating Magick++/lib/Magick++.pc config.status:1586: creating magick/Magick-config config.status:1586: creating magick/MagickCore-config config.status:1586: creating magick/MagickCore.pc config.status:1586: creating magick/version.h config.status:1586: creating Makefile config.status:1586: creating magick.sh config.status:1586: creating PerlMagick/Magick.pm config.status:1586: creating PerlMagick/Makefile.PL config.status:1586: creating PerlMagick/check.sh config.status:1586: creating utilities/animate.1 config.status:1586: creating utilities/compare.1 config.status:1586: creating utilities/composite.1 config.status:1586: creating utilities/conjure.1 config.status:1586: creating utilities/convert.1 config.status:1586: creating utilities/display.1 config.status:1586: creating utilities/identify.1 config.status:1586: creating utilities/ImageMagick.1 config.status:1586: creating utilities/import.1 config.status:1586: creating utilities/mogrify.1 config.status:1586: creating utilities/montage.1 config.status:1586: creating utilities/stream.1 config.status:1586: creating wand/MagickWand-config config.status:1586: creating wand/MagickWand.pc config.status:1586: creating wand/Wand-config config.status:1586: creating wand/Wand.pc config.status:1586: creating config/config.h config.status:1860: executing magick/magick-config.h commands config.status:1900: creating magick/magick-config.h - prefix MAGICKCORE for config/config.h defines config.status:1860: executing depfiles commands config.status:1860: executing libtool commands config.status:1860: executing default commands config.status:1860: executing MagickCore-config.in commands config.status:1860: executing Magick-config.in commands config.status:1860: executing MagickWand-config.in commands config.status:1860: executing Wand-config.in commands config.status:1860: executing Magick++-config.in commands config.status:1860: executing PerlMagick/check.sh.in commands configure:48946: result: ImageMagick is configured as follows. Please verify that this configuration matches your expectations. Host system type: x86_64-unknown-linux-gnu Build system type: x86_64-unknown-linux-gnu Option Value ------------------------------------------------------------------------------- Shared libraries --enable-shared=yes yes Static libraries --enable-static=yes yes Module support --with-modules=yes yes GNU ld --with-gnu-ld=yes yes Quantum depth --with-quantum-depth=16 16 High Dynamic Range Imagery --enable-hdri=no no Delegate Configuration: BZLIB --with-bzlib=yes no Autotrace --with-autotrace=no no DJVU --with-djvu=yes no DPS --with-dps=yes no FFTW --with-fftw=yes no FlashPIX --with-fpx=yes no FontConfig --with-fontconfig=no no FreeType --with-freetype=yes yes GhostPCL None pcl6 (unknown) GhostXPS None gxps (unknown) Ghostscript None gs (8.64) Ghostscript fonts --with-gs-font-dir=/usr/local/share/ghostscript/fonts /usr/local/share/ghostscript/fonts/ Ghostscript lib --with-gslib=no no Graphviz --with-gvc=yes no JBIG --with-jbig=yes no JPEG v1 --with-jpeg=yes yes JPEG-2000 --with-jp2=yes no LCMS --with-lcms=yes no LQR --with-lqr=yes no Magick++ --with-magick-plus-plus=yes yes OpenEXR --with-openexr=yes no PERL --with-perl=yes /usr/bin/perl PNG --with-png=yes yes RSVG --with-rsvg=no no TIFF --with-tiff=yes no Windows fonts --with-windows-font-dir= none WMF --with-wmf=yes no X11 --with-x= no XML --with-xml=no no ZLIB --with-zlib=yes yes X11 Configuration: X_CFLAGS = X_PRE_LIBS = X_LIBS = X_EXTRA_LIBS = Options used to compile and link: PREFIX = /usr/local EXEC-PREFIX = /usr/local VERSION = 6.5.4 CC = gcc -std=gnu99 CFLAGS = -fopenmp -g -O2 -Wall -W -pthread MAGICK_CFLAGS = -fopenmp -g -O2 -Wall -W -pthread CPPFLAGS = -I/usr/local/include/ImageMagick PCFLAGS = -fopenmp DEFS = -DHAVE_CONFIG_H LDFLAGS = -L/root/ImageMagick-6.5.4-5/magick -L/root/ImageMagick-6.5.4-5/wand -L/usr/local/lib -lfreetype -lz MAGICK_LDFLAGS = -L/usr/local/lib -L/root/ImageMagick-6.5.4-5/magick -L/root/ImageMagick-6.5.4-5/wand -L/usr/local/lib -lfreetype -lz LIBS = -lMagickCore -lfreetype -ljpeg -lz -lm -lgomp -lpthread CXX = g++ CXXFLAGS = -g -O2 -Wall -W -pthread ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_build=x86_64-unknown-linux-gnu ac_cv_c_bigendian=no ac_cv_c_char_unsigned=no ac_cv_c_compiler_gnu=yes ac_cv_c_const=yes ac_cv_c_inline=inline ac_cv_c_restrict=__restrict ac_cv_c_stringize=yes ac_cv_c_volatile=yes ac_cv_cxx_compiler_gnu=yes ac_cv_cxx_have_bool=yes ac_cv_cxx_have_lstring=yes ac_cv_cxx_have_namespaces=yes ac_cv_cxx_have_std_libs=yes ac_cv_cxx_have_std_namespace=yes ac_cv_env_AUTOTRACE_CFLAGS_set= ac_cv_env_AUTOTRACE_CFLAGS_value= ac_cv_env_AUTOTRACE_LIBS_set= ac_cv_env_AUTOTRACE_LIBS_value= ac_cv_env_CAIRO_SVG_CFLAGS_set= ac_cv_env_CAIRO_SVG_CFLAGS_value= ac_cv_env_CAIRO_SVG_LIBS_set= ac_cv_env_CAIRO_SVG_LIBS_value= ac_cv_env_CCC_set= ac_cv_env_CCC_value= ac_cv_env_CC_set= ac_cv_env_CC_value= ac_cv_env_CFLAGS_set= ac_cv_env_CFLAGS_value= ac_cv_env_CPPFLAGS_set= ac_cv_env_CPPFLAGS_value= ac_cv_env_CPP_set= ac_cv_env_CPP_value= ac_cv_env_CXXCPP_set= ac_cv_env_CXXCPP_value= ac_cv_env_CXXFLAGS_set= ac_cv_env_CXXFLAGS_value= ac_cv_env_CXX_set= ac_cv_env_CXX_value= ac_cv_env_FONTCONFIG_CFLAGS_set= ac_cv_env_FONTCONFIG_CFLAGS_value= ac_cv_env_FONTCONFIG_LIBS_set= ac_cv_env_FONTCONFIG_LIBS_value= ac_cv_env_GVC_CFLAGS_set= ac_cv_env_GVC_CFLAGS_value= ac_cv_env_GVC_LIBS_set= ac_cv_env_GVC_LIBS_value= ac_cv_env_LDFLAGS_set= ac_cv_env_LDFLAGS_value= ac_cv_env_LIBS_set= ac_cv_env_LIBS_value= ac_cv_env_LQR_CFLAGS_set= ac_cv_env_LQR_CFLAGS_value= ac_cv_env_LQR_LIBS_set= ac_cv_env_LQR_LIBS_value= ac_cv_env_OPENEXR_CFLAGS_set= ac_cv_env_OPENEXR_CFLAGS_value= ac_cv_env_OPENEXR_LIBS_set= ac_cv_env_OPENEXR_LIBS_value= ac_cv_env_PKG_CONFIG_set= ac_cv_env_PKG_CONFIG_value= ac_cv_env_RSVG_CFLAGS_set= ac_cv_env_RSVG_CFLAGS_value= ac_cv_env_RSVG_LIBS_set= ac_cv_env_RSVG_LIBS_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__NSGetExecutablePath=no ac_cv_func__doprnt=no ac_cv_func__exit=yes ac_cv_func__pclose=no ac_cv_func__popen=no ac_cv_func__wfopen=no ac_cv_func__wstat=no ac_cv_func_argz_add=yes ac_cv_func_argz_append=yes ac_cv_func_argz_count=yes ac_cv_func_argz_create_sep=yes ac_cv_func_argz_insert=yes ac_cv_func_argz_next=yes ac_cv_func_argz_stringify=yes ac_cv_func_atexit=yes ac_cv_func_clock=yes ac_cv_func_clock_gettime=yes ac_cv_func_closedir=yes ac_cv_func_closedir_void=no ac_cv_func_directio=no ac_cv_func_dlerror=yes ac_cv_func_dlopen=no ac_cv_func_execvp=yes ac_cv_func_floor=no ac_cv_func_fork=yes ac_cv_func_fork_works=yes ac_cv_func_ftime=yes ac_cv_func_ftruncate=yes ac_cv_func_getcwd=yes ac_cv_func_getdtablesize=yes ac_cv_func_getexecname=no ac_cv_func_getpagesize=yes ac_cv_func_getpid=yes ac_cv_func_gettimeofday=yes ac_cv_func_gmtime_r=yes ac_cv_func_localtime_r=yes ac_cv_func_lstat=yes ac_cv_func_memcmp_working=yes ac_cv_func_memmove=yes ac_cv_func_memset=yes ac_cv_func_mkstemp=yes ac_cv_func_mmap_fixed_mapped=yes ac_cv_func_munmap=yes ac_cv_func_opendir=yes ac_cv_func_pclose=yes ac_cv_func_poll=yes ac_cv_func_popen=yes ac_cv_func_posix_fadvise=yes ac_cv_func_posix_fallocate=yes ac_cv_func_posix_madvise=yes ac_cv_func_posix_memalign=yes ac_cv_func_pow=no ac_cv_func_pread=yes ac_cv_func_pwrite=yes ac_cv_func_raise=yes ac_cv_func_rand_r=yes ac_cv_func_readdir=yes ac_cv_func_readdir_r=yes ac_cv_func_readlink=yes ac_cv_func_realpath=yes ac_cv_func_seekdir=yes ac_cv_func_select=yes ac_cv_func_select_args='int,fd_set *,struct timeval *' ac_cv_func_setlocale=yes ac_cv_func_setvbuf=yes ac_cv_func_setvbuf_reversed=no ac_cv_func_shl_load=no ac_cv_func_sigaction=yes ac_cv_func_sigemptyset=yes ac_cv_func_sqrt=no ac_cv_func_stat=yes ac_cv_func_strcasecmp=yes ac_cv_func_strchr=yes ac_cv_func_strcspn=yes ac_cv_func_strdup=yes ac_cv_func_strerror=yes ac_cv_func_strerror_r=yes ac_cv_func_strlcat=no ac_cv_func_strlcpy=no ac_cv_func_strncasecmp=yes ac_cv_func_strpbrk=yes ac_cv_func_strrchr=yes ac_cv_func_strspn=yes ac_cv_func_strstr=yes ac_cv_func_strtod=yes ac_cv_func_strtol=yes ac_cv_func_symlink=yes ac_cv_func_sysconf=yes ac_cv_func_telldir=yes ac_cv_func_tempnam=yes ac_cv_func_times=yes ac_cv_func_usleep=yes ac_cv_func_vfork=yes ac_cv_func_vfork_works=yes ac_cv_func_vprintf=yes ac_cv_func_vsnprintf=yes ac_cv_func_vsprintf=yes ac_cv_func_waitpid=yes ac_cv_have_decl_pread=yes ac_cv_have_decl_pwrite=yes ac_cv_have_decl_strlcpy=no ac_cv_have_decl_vsnprintf=yes ac_cv_have_x=have_x=no ac_cv_header_DPS_dpsXclient_h=no ac_cv_header_OS_h=no ac_cv_header_argz_h=yes ac_cv_header_arm_limits_h=no ac_cv_header_bzlib_h=no ac_cv_header_complex_h=yes ac_cv_header_dirent_dirent_h=yes ac_cv_header_dirent_h=yes ac_cv_header_dl_h=no ac_cv_header_dld_h=no ac_cv_header_dlfcn_h=yes ac_cv_header_errno_h=yes ac_cv_header_fcntl_h=yes ac_cv_header_fftw3_h=no ac_cv_header_fpxlib_h=no ac_cv_header_freetype_freetype_h=yes ac_cv_header_ft2build_h=yes ac_cv_header_inttypes_h=yes ac_cv_header_jasper_jasper_h=no ac_cv_header_jbig_h=no ac_cv_header_jconfig_h=yes ac_cv_header_jerror_h=yes ac_cv_header_jmorecfg_h=yes ac_cv_header_jpeglib_h=yes ac_cv_header_lcms_h=no ac_cv_header_lcms_lcms_h=no ac_cv_header_libdjvu_ddjvuapi_h=no ac_cv_header_libwmf_ipa_h=no ac_cv_header_limits_h=yes ac_cv_header_linux_unistd_h=yes ac_cv_header_locale_h=yes ac_cv_header_ltdl_h=no ac_cv_header_mach_o_dyld_h=no ac_cv_header_machine_param_h=no ac_cv_header_memory_h=yes ac_cv_header_minix_config_h=no ac_cv_header_png_h=yes ac_cv_header_stat_broken=no ac_cv_header_stdarg_h=yes ac_cv_header_stdbool_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_dl_h=no ac_cv_header_sys_ipc_h=yes ac_cv_header_sys_resource_h=yes ac_cv_header_sys_select_h=yes ac_cv_header_sys_socket_h=yes ac_cv_header_sys_stat_h=yes ac_cv_header_sys_syslimits_h=no ac_cv_header_sys_time_h=yes ac_cv_header_sys_timeb_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_tiff_h=no ac_cv_header_tiffio_h=no ac_cv_header_time=yes ac_cv_header_unistd_h=yes ac_cv_header_vfork_h=no ac_cv_header_wchar_h=yes ac_cv_header_zconf_h=yes ac_cv_header_zlib_h=yes ac_cv_host=x86_64-unknown-linux-gnu ac_cv_jpeg_version_ok=yes ac_cv_lib_bz2_BZ2_bzDecompress=no ac_cv_lib_djvulibre_ddjvu_context_create=no ac_cv_lib_dl_dlopen=yes ac_cv_lib_dld_dld_link=no ac_cv_lib_dld_shl_load=no ac_cv_lib_dps_DPSInitialize=no ac_cv_lib_dpstk_XDPSPixelsPerPoint=no ac_cv_lib_fftw3_fftw_execute=no ac_cv_lib_fpx_FPX_OpenImageByFilename=no ac_cv_lib_freetype_FT_Init_FreeType=yes ac_cv_lib_gomp_GOMP_parallel_start=yes ac_cv_lib_jasper_jas_stream_fopen=no ac_cv_lib_jbig_jbg_dec_init=no ac_cv_lib_jpeg_jpeg_read_header=yes ac_cv_lib_lcms_cmsOpenProfileFromMem=no ac_cv_lib_m_sqrt=yes ac_cv_lib_png_png_get_io_ptr=yes ac_cv_lib_tiff_TIFFClientOpen=no ac_cv_lib_tiff_TIFFIsByteSwapped=no ac_cv_lib_tiff_TIFFOpen=no ac_cv_lib_tiff_TIFFReadRGBAStrip=no ac_cv_lib_tiff_TIFFReadRGBATile=no ac_cv_lib_z_compress=yes ac_cv_lib_z_deflate=yes ac_cv_lib_z_gzseek=yes ac_cv_lib_z_gztell=yes ac_cv_lib_z_inflate=yes ac_cv_lib_z_uncompress=yes ac_cv_objext=o ac_cv_path_AVIDecodeDelegate=mplayer ac_cv_path_AutotraceDecodeDelegate=autotrace ac_cv_path_BZIPDelegate=/bin/bzip2 ac_cv_path_BlenderDecodeDelegate= ac_cv_path_BrowseDelegate=xdg-open ac_cv_path_CGMDecodeDelegate=ralcgm ac_cv_path_CatDelegate=/bin/cat ac_cv_path_ConvertDelegate=/usr/local/bin/convert ac_cv_path_DNGDecodeDelegate=ufraw-batch ac_cv_path_DVIDecodeDelegate=dvips ac_cv_path_DisplayDelegate=/usr/local/bin/display ac_cv_path_EGREP='/bin/grep -E' ac_cv_path_EchoDelegate=/bin/echo ac_cv_path_EditorDelegate=xterm ac_cv_path_FGREP='/bin/grep -F' ac_cv_path_FIGDecodeDelegate=fig2dev ac_cv_path_GREP=/bin/grep ac_cv_path_GVCDecodeDelegate=dot ac_cv_path_GnuplotDecodeDelegate=gnuplot ac_cv_path_HDRDecodeDelegate=ra_pfm ac_cv_path_HPGLDecodeDelegate=hp2xx ac_cv_path_HTMLDecodeDelegate=html2ps ac_cv_path_ILBMDecodeDelegate=ilbmtoppm ac_cv_path_ILBMEncodeDelegate=ppmtoilbm ac_cv_path_LPDelegate=no ac_cv_path_LPRDelegate=lpr ac_cv_path_LZWDecodeDelegate=/bin/uncompress ac_cv_path_LZWEncodeDelegate=compress ac_cv_path_LaunchDelegate=gimp ac_cv_path_MANDelegate=/usr/bin/groff ac_cv_path_MPEGDecodeDelegate=ffmpeg ac_cv_path_MPEGEncodeDelegate=ffmpeg ac_cv_path_MVDelegate=/bin/mv ac_cv_path_MogrifyDelegate=/usr/local/bin/mogrify ac_cv_path_PCLDelegate=pcl6 ac_cv_path_PERL=/usr/bin/perl ac_cv_path_PGPDecodeDelegate=pgpv ac_cv_path_POVDelegate=povray ac_cv_path_PSDelegate=/usr/local/bin/gs ac_cv_path_RLEEncodeDelegate=rawtorle ac_cv_path_RMDelegate=/bin/rm ac_cv_path_SCANDecodeDelegate=scanimage ac_cv_path_SED=/bin/sed ac_cv_path_TXTDelegate=enscript ac_cv_path_WMFDecodeDelegate=wmf2eps ac_cv_path_WWWDecodeDelegate=/usr/bin/curl ac_cv_path_XPSDelegate=gxps ac_cv_path_ZipDelegate=/bin/gzip ac_cv_path_install='/usr/bin/install -c' ac_cv_path_mkdir=/bin/mkdir ac_cv_prog_AWK=mawk ac_cv_prog_CPP='gcc -std=gnu99 -E' ac_cv_prog_CXXCPP='g++ -E' ac_cv_prog_PERL=perl ac_cv_prog_TAR=tar ac_cv_prog_ac_ct_AR=ar ac_cv_prog_ac_ct_CC=gcc ac_cv_prog_ac_ct_CXX=g++ ac_cv_prog_ac_ct_OBJDUMP=objdump ac_cv_prog_ac_ct_RANLIB=ranlib ac_cv_prog_ac_ct_STRIP=strip ac_cv_prog_c_openmp=-fopenmp ac_cv_prog_cc_c89= ac_cv_prog_cc_c99=-std=gnu99 ac_cv_prog_cc_g=yes ac_cv_prog_cc_gcc_c_o=yes ac_cv_prog_cc_stdc=-std=gnu99 ac_cv_prog_cxx_g=yes ac_cv_prog_cxx_openmp=-fopenmp ac_cv_prog_freetype_config=freetype-config ac_cv_prog_gcc_traditional=no ac_cv_prog_make_make_set=yes ac_cv_safe_to_define___extensions__=yes ac_cv_search_dlopen=-ldl ac_cv_search_opendir='none required' ac_cv_sizeof_off_t=8 ac_cv_sizeof_signed_int=4 ac_cv_sizeof_signed_long=8 ac_cv_sizeof_signed_long_long=8 ac_cv_sizeof_signed_short=2 ac_cv_sizeof_size_t=8 ac_cv_sizeof_unsigned_int=4 ac_cv_sizeof_unsigned_intp=8 ac_cv_sizeof_unsigned_long=8 ac_cv_sizeof_unsigned_long_long=8 ac_cv_sizeof_unsigned_short=2 ac_cv_struct_tm=time.h ac_cv_sys_file_offset_bits=64 ac_cv_sys_interpreter=yes ac_cv_sys_largefile_CC=no ac_cv_sys_largefile_source=no ac_cv_target=x86_64-unknown-linux-gnu ac_cv_type__Bool=yes ac_cv_type_error_t=yes ac_cv_type_long_double_wider=yes ac_cv_type_mode_t=yes ac_cv_type_off_t=yes ac_cv_type_pid_t=yes ac_cv_type_signal=void ac_cv_type_size_t=yes ac_cv_type_ssize_t=yes am_cv_CC_dependencies_compiler_type=gcc3 am_cv_CXX_dependencies_compiler_type=gcc3 im_cv_ld_lazyload=none libltdl_cv_lib_dl_dlopen=yes libltdl_cv_preloaded_symbols=yes libltdl_cv_shlibext=.so lt_cv_deplibs_check_method=pass_all lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl lt_cv_dlopen_self=yes lt_cv_dlopen_self_static=no lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_ld_reload_flag=-r lt_cv_module_path_var=LD_LIBRARY_PATH lt_cv_nm_interface='BSD nm' lt_cv_objdir=.libs lt_cv_path_LD=/usr/bin/ld lt_cv_path_LDCXX=/usr/bin/ld lt_cv_path_NM='/usr/bin/nm -B' lt_cv_prog_compiler_c_o=yes lt_cv_prog_compiler_c_o_CXX=yes lt_cv_prog_compiler_pic_works=yes lt_cv_prog_compiler_pic_works_CXX=yes lt_cv_prog_compiler_rtti_exceptions=no lt_cv_prog_compiler_static_works=yes lt_cv_prog_compiler_static_works_CXX=yes lt_cv_prog_gnu_ld=yes lt_cv_prog_gnu_ldcxx=yes lt_cv_sys_argz_works=yes lt_cv_sys_dlopen_deplibs=yes lt_cv_sys_dlsearch_path='/lib64 /usr/lib64 /lib /usr/lib /usr/local/lib /lib/x86_64-linux-gnu /usr/lib/x86_64-linux-gnu ' lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\''' lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"\2", (void *) \&\2},/p'\''' lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \(lib[^ ]*\)$/ {"\2", (void *) \&\2},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"lib\2", (void *) \&\2},/p'\''' lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\''' lt_cv_sys_max_cmd_len=98304 lt_cv_sys_symbol_underscore=no magick_cv_func_mmap_fileio=yes ## ----------------- ## ## Output variables. ## ## ----------------- ## ACLOCAL='${SHELL} /root/ImageMagick-6.5.4-5/config/missing --run aclocal-1.11' AMDEPBACKSLASH='\' AMDEP_FALSE='#' AMDEP_TRUE='' AMTAR='${SHELL} /root/ImageMagick-6.5.4-5/config/missing --run tar' AM_BACKSLASH='\' AM_DEFAULT_VERBOSITY='1' AR='ar' ARGZ_H='' AS='as' AUTOCONF='${SHELL} /root/ImageMagick-6.5.4-5/config/missing --run autoconf' AUTOHEADER='${SHELL} /root/ImageMagick-6.5.4-5/config/missing --run autoheader' AUTOMAKE='${SHELL} /root/ImageMagick-6.5.4-5/config/missing --run automake-1.11' AUTOTRACE_CFLAGS='' AUTOTRACE_DELEGATE_FALSE='' AUTOTRACE_DELEGATE_TRUE='#' AUTOTRACE_LIBS='' AVIDecodeDelegate='mplayer' AWK='mawk' AutotraceDecodeDelegate='autotrace' BIN_DIR='/usr/local/bin' BZIPDelegate='bzip2' BZLIB_DELEGATE_FALSE='' BZLIB_DELEGATE_TRUE='#' BZLIB_LIBS='' BlenderDecodeDelegate='' BrowseDelegate='xdg-open' CAIRO_DELEGATE_FALSE='' CAIRO_DELEGATE_TRUE='#' CAIRO_SVG_CFLAGS='' CAIRO_SVG_LIBS='' CC='gcc -std=gnu99' CCDEPMODE='depmode=gcc3' CCMALLOCDelegate='' CFLAGS='-fopenmp -g -O2 -Wall -W -pthread' CGMDecodeDelegate='ralcgm' CODER_PATH='/usr/local/lib/ImageMagick-6.5.4/modules-Q16/coders' CONFIGURE_ARGS='./configure '\''--enable-delegate-build'\'' '\''--with-gs-font-dir=/usr/local/share/ghostscript/fonts'\''' CONFIGURE_PATH='/usr/local/lib/ImageMagick-6.5.4/config/' CONFIG_STATUS_DEPENDENCIES='$(top_srcdir)/version.sh' CONVENIENCE_LTDL_FALSE='#' CONVENIENCE_LTDL_TRUE='' CPP='gcc -std=gnu99 -E' CPPFLAGS='-I/usr/local/include/freetype2 -I/usr/local/include -I/root/ImageMagick-6.5.4-5/magick -I/root/ImageMagick-6.5.4-5/wand' CXX='g++' CXXCPP='g++ -E' CXXDEPMODE='depmode=gcc3' CXXFLAGS='-g -O2 -Wall -W -pthread' CYGPATH_W='echo' CYGWIN_BUILD_FALSE='' CYGWIN_BUILD_TRUE='#' CatDelegate='cat' ConvertDelegate='convert' DATA_DIR='/usr/local/share' DEFS='-DHAVE_CONFIG_H' DELEGATES='freetype jpeg jng png zlib' DEPDIR='.deps' DIRSEP=':' DISTCHECK_CONFIG_FLAGS='--disable-deprecated --with-quantum-depth=16 --with-umem=no --with-autotrace=no --with-fontconfig=no --with-gslib=no --with-fontpath= --with-gs-font-dir=/usr/local/share/ghostscript/fonts --with-rsvg=no --with-xml=no' DJVU_DELEGATE_FALSE='' DJVU_DELEGATE_TRUE='#' DJVU_LIBS='' DLLDFLAGS='-export-dynamic' DLLTOOL='dlltool' DNGDecodeDelegate='ufraw-batch' DOCUMENTATION_PATH='/usr/local/share/doc/ImageMagick-6.5.4' DPS_DELEGATE_FALSE='' DPS_DELEGATE_TRUE='#' DPS_LIBS='' DSYMUTIL='' DUMPBIN='' DVIDecodeDelegate='dvips' DisplayDelegate='/usr/local/bin/display' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='/bin/grep -E' EXECUTABLE_PATH='/usr/local/bin' EXEC_PREFIX_DIR='/usr/local' EXEEXT='' EchoDelegate='echo' EditorDelegate='xterm' FFTW_DELEGATE_FALSE='' FFTW_DELEGATE_TRUE='#' FFTW_LIBS='' FGREP='/bin/grep -F' FIGDecodeDelegate='fig2dev' FILTER_PATH='/usr/local/lib/ImageMagick-6.5.4/modules-Q16/filters' FONTCONFIG_CFLAGS='' FONTCONFIG_DELEGATE_FALSE='' FONTCONFIG_DELEGATE_TRUE='#' FONTCONFIG_LIBS='' FPX_DELEGATE_FALSE='' FPX_DELEGATE_TRUE='#' FPX_LIBS='' FREETYPE_DELEGATE_FALSE='#' FREETYPE_DELEGATE_TRUE='' FREETYPE_LIBS='-lfreetype' GDI32_LIBS='' GOMP_LIBS='-lgomp' GREP='/bin/grep' GSAlphaDevice='pngalpha' GSCMYKDevice='pam' GSColorDevice='pnmraw' GSEPSDevice='epswrite' GSMonoDevice='pbmraw' GSPDFDevice='pdfwrite' GSPSDevice='pswrite' GSVersion='8.64' GS_DELEGATE_FALSE='' GS_DELEGATE_TRUE='#' GS_LIBS='' GVCDecodeDelegate='dot' GVC_CFLAGS='' GVC_DELEGATE_FALSE='' GVC_DELEGATE_TRUE='#' GVC_LIBS='' GnuplotDecodeDelegate='gnuplot' HDRDecodeDelegate='ra_pfm' HPGLDecodeDelegate='hp2xx' HTMLDecodeDelegate='html2ps' HasUMEM_FALSE='' HasUMEM_TRUE='#' ILBMDecodeDelegate='ilbmtoppm' ILBMEncodeDelegate='ppmtoilbm' INCLTDL='-I${top_srcdir}/ltdl' INCLUDE_DIR='/usr/local/include' INFO_DIR='/usr/local/share/info' INSTALL_DATA='${INSTALL} -m 644' INSTALL_LTDL_FALSE='' INSTALL_LTDL_TRUE='#' INSTALL_PROGRAM='${INSTALL}' INSTALL_SCRIPT='${INSTALL}' INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' INT16_T='signed short' INT32_T='signed int' INT64_T='signed long' INT8_T='signed char' JBIG_DELEGATE_FALSE='' JBIG_DELEGATE_TRUE='#' JBIG_LIBS='' JP2_DELEGATE_FALSE='' JP2_DELEGATE_TRUE='#' JP2_LIBS='' JPEG_DELEGATE_FALSE='#' JPEG_DELEGATE_TRUE='' JPEG_LIBS='-ljpeg' LCMS_DELEGATE_FALSE='' LCMS_DELEGATE_TRUE='#' LCMS_LIBS='' LD='/usr/bin/ld' LDFLAGS='-L/root/ImageMagick-6.5.4-5/magick -L/root/ImageMagick-6.5.4-5/wand -L/usr/local/lib -lfreetype -lz' LFS_CPPFLAGS=' -D_LARGE_FILES=1' LIBADD_DL='-ldl ' LIBADD_DLD_LINK='' LIBADD_DLOPEN='-ldl' LIBADD_SHL_LOAD='' LIBEXEC_DIR='/usr/local/libexec' LIBLTDL='${top_build_prefix}ltdl/libltdlc.la' LIBOBJS='' LIBRARY_EXTRA_CPPFLAGS='' LIBRARY_PATH='/usr/local/lib/ImageMagick-6.5.4' LIBS='' LIBSTDCLDFLAGS='' LIBTOOL='$(SHELL) $(top_builddir)/libtool --silent' LIBTOOL_DEPS='config/ltmain.sh' LIB_DIR='/usr/local/lib' LIB_DL='' LIPO='' LN_S='ln -s' LOCALSTATE_DIR='/usr/local/var' LPDelegate='lp' LPRDelegate='lpr' LQR_CFLAGS='' LQR_DELEGATE_FALSE='' LQR_DELEGATE_TRUE='#' LQR_LIBS='' LTCXXLIBOPTS='' LTDLDEPS='${top_build_prefix}ltdl/libltdlc.la' LTDLINCL='-I${top_srcdir}/ltdl' LTDLOPEN='libltdl' LTLIBOBJS='' LT_CONFIG_H='config/config.h' LT_DLLOADERS=' ltdl/dlopen.la' LT_DLPREOPEN='-dlpreopen ltdl/dlopen.la ' LZWDecodeDelegate='uncompress' LZWEncodeDelegate='compress' LaunchDelegate='gimp' MAGICKCORE_PATH='/usr/local/lib' MAGICK_CFLAGS='-fopenmp -g -O2 -Wall -W -pthread' MAGICK_CODER_MODULE_PATH='/root/ImageMagick-6.5.4-5/coders' MAGICK_CONFIGURE_BUILD_PATH='/root/ImageMagick-6.5.4-5/config' MAGICK_CONFIGURE_SRC_PATH='/root/ImageMagick-6.5.4-5/config' MAGICK_CPPFLAGS='-I/usr/local/include/ImageMagick' MAGICK_CXXFLAGS='-g -O2 -Wall -W -pthread' MAGICK_DEP_LIBS='-lfreetype -ljpeg -lz -lm -lgomp -lpthread' MAGICK_FILTER_MODULE_PATH='/root/ImageMagick-6.5.4-5/filters' MAGICK_HDRI='' MAGICK_LDFLAGS='-L/usr/local/lib -L/root/ImageMagick-6.5.4-5/magick -L/root/ImageMagick-6.5.4-5/wand -L/usr/local/lib -lfreetype -lz' MAGICK_LIBLTDL='${top_build_prefix}ltdl/libltdlc.la' MAGICK_LIBRARY_AGE='0' MAGICK_LIBRARY_CURRENT='2' MAGICK_LIBRARY_REVISION='0' MAGICK_LIBS='-lMagickCore -lfreetype -ljpeg -lz -lm -lgomp -lpthread ' MAGICK_LIB_VERSION='0x020000' MAGICK_LIB_VERSION_NUMBER='2,0,0' MAGICK_LIB_VERSION_TEXT='6.5.4' MAGICK_LTDLDEPS='${top_build_prefix}ltdl/libltdlc.la' MAGICK_PCFLAGS='-fopenmp' MAINT='#' MAINTAINER_MODE_FALSE='' MAINTAINER_MODE_TRUE='#' MAKEINFO='${SHELL} /root/ImageMagick-6.5.4-5/config/missing --run makeinfo' MANDelegate='groff' MAN_DIR='/usr/local/share/man' MATH_LIBS='-lm' MKDIR_P='/bin/mkdir -p' MODULE_EXTRA_CPPFLAGS='' MPEGDecodeDelegate='ffmpeg' MPEGEncodeDelegate='ffmpeg' MVDelegate='mv' MogrifyDelegate='mogrify' NM='/usr/bin/nm -B' NMEDIT='' OBJDUMP='objdump' OBJEXT='o' OPENEXR_CFLAGS='' OPENEXR_DELEGATE_FALSE='' OPENEXR_DELEGATE_TRUE='#' OPENEXR_LIBS='' OPENMP_CFLAGS='-fopenmp' OPENMP_CXXFLAGS='-fopenmp' OSX_GCOV_LDFLAG='' OTOOL64='' OTOOL='' P7ZIP='' P7ZIP_DELEGATE_FALSE='' P7ZIP_DELEGATE_