]> granicus.if.org Git - imagemagick/blob - configure.ac
(no commit message)
[imagemagick] / configure.ac
1 #  Copyright 1999-2014 ImageMagick Studio LLC, a non-profit organization
2 #  dedicated to making software imaging solutions freely available.
3 #
4 #  You may not use this file except in compliance with the License.  You may
5 #  obtain a copy of the License at
6 #
7 #    http://www.imagemagick.org/script/license.php
8 #
9 #  Unless required by applicable law or agreed to in writing, software
10 #  distributed under the License is distributed on an "AS IS" BASIS,
11 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 #  See the License for the specific language governing permissions and
13 #  limitations under the License.
14 #
15 #  Copyright (C) 2003 - 2008 GraphicsMagick Group
16 #
17 #  Copying and distribution of this file, with or without modification,
18 #  are permitted in any medium without royalty provided the copyright
19 #  notice and this notice are preserved.
20
21 AC_PREREQ(2.69)
22
23 m4_define([magick_major_version], [7])
24 m4_define([magick_minor_version], [0])
25 m4_define([magick_micro_version], [0])
26 m4_define([magick_patchlevel_version], [0])
27 m4_define([magick_version],
28           [magick_major_version.magick_minor_version.magick_micro_version-magick_patchlevel_version])
29 m4_define([magick_svn_revision], esyscmd([sh -c "(svnversion .) | awk '{ print \$1 }' | tr -d '\n'"]))
30
31 AC_INIT([ImageMagick],[magick_version],[http://www.imagemagick.org],[ImageMagick])
32 AC_CONFIG_SRCDIR([MagickCore/MagickCore.h])
33 AC_CONFIG_AUX_DIR([config])
34 AC_REQUIRE_AUX_FILE([tap-driver.sh])
35 AC_CONFIG_MACRO_DIR([m4])
36 AC_CONFIG_HEADERS([config/config.h])
37 AX_PREFIX_CONFIG_H([MagickCore/magick-baseconfig.h],[MagickCore])
38 AC_CONFIG_FILES([\
39     common.shi \
40     config/configure.xml \
41     config/delegates.xml \
42     config/ImageMagick.rdf \
43     config/MagickCore.dox \
44     config/MagickWand.dox \
45     config/Magick++.dox \
46     config/type-dejavu.xml \
47     config/type-ghostscript.xml \
48     config/type-windows.xml \
49     config/type.xml \
50     ImageMagick.spec \
51     Magick++/bin/Magick++-config \
52     MagickCore/ImageMagick.pc \
53     Magick++/lib/Magick++.pc \
54     MagickCore/MagickCore-config \
55     MagickCore/MagickCore.pc \
56     MagickCore/version.h \
57     Makefile \
58     magick.sh \
59     PerlMagick/check.sh \
60     PerlMagick/default/Magick.pm \
61     PerlMagick/Makefile.PL \
62     PerlMagick/default/Makefile.PL \
63     PerlMagick/quantum/Makefile.PL \
64     PerlMagick/quantum/quantum.pm \
65     PerlMagick/quantum/quantum.xs \
66     PerlMagick/quantum/typemap \
67     utilities/animate.1 \
68     utilities/compare.1 \
69     utilities/composite.1 \
70     utilities/conjure.1 \
71     utilities/convert.1 \
72     utilities/display.1 \
73     utilities/identify.1 \
74     utilities/ImageMagick.1 \
75     utilities/import.1 \
76     utilities/mogrify.1 \
77     utilities/montage.1 \
78     utilities/stream.1 \
79     MagickWand/MagickWand-config \
80     MagickWand/MagickWand.pc ])
81
82 #
83 # Save initial user-tunable values
84 #
85 USER_LIBS=$LIBS
86 for var in CC CFLAGS CPPFLAGS CXX CXXCPP LDFLAGS LIBS ; do
87   eval isset=\${$var+set}
88     if test "$isset" = 'set'; then
89         eval val=$`echo $var`
90         DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS}'${var}=${val}' "
91     fi
92 done
93 AC_SUBST(DISTCHECK_CONFIG_FLAGS)
94
95 CONFIGURE_ARGS="$0 ${ac_configure_args}"
96 AC_SUBST(CONFIGURE_ARGS)
97
98 # Source file containing package/library versioning information.
99 . ${srcdir}/version.sh
100
101 echo "configuring ${PACKAGE_NAME} ${PACKAGE_VERSION}${PACKAGE_VERSION_ADDENDUM}"
102 AC_CANONICAL_SYSTEM
103 AC_CANONICAL_BUILD
104 AC_CANONICAL_HOST
105 AC_CANONICAL_TARGET
106
107 MAGICK_TARGET_CPU=$host_cpu
108 AC_SUBST(MAGICK_TARGET_CPU)
109 AC_DEFINE_UNQUOTED(MAGICK_TARGET_CPU,$MAGICK_TARGET_CPU,[Target Host CPU])
110
111 MAGICK_TARGET_VENDOR=$host_vendor
112 AC_SUBST(MAGICK_TARGET_VENDOR)
113 AC_DEFINE_UNQUOTED(MAGICK_TARGET_VENDOR,$MAGICK_TARGET_VENDOR,[Target Host Vendor])
114
115 MAGICK_TARGET_OS=$host_os
116 AC_SUBST(MAGICK_TARGET_OS)
117 AC_DEFINE_UNQUOTED(MAGICK_TARGET_OS,$MAGICK_TARGET_OS,[Target Host OS])
118
119
120 # Substitute versioning
121 AC_SUBST([MAGICK_MAJOR_VERSION],[magick_major_version])
122 AC_SUBST([MAGICK_MINOR_VERSION],[magick_minor_version])
123 AC_SUBST([MAGICK_MICRO_VERSION],[magick_micro_version])
124 AC_SUBST([MAGICK_PATCHLEVEL_VERSION],[magick_patchlevel_version])
125 AC_SUBST([MAGICK_VERSION],[magick_version])
126 AC_SUBST([MAGICK_SVN_REVISION],[magick_svn_revision])
127
128 # Substitute library versioning
129 AC_SUBST(MAGICK_LIBRARY_CURRENT)dnl
130 AC_SUBST(MAGICK_LIBRARY_REVISION)dnl
131 AC_SUBST(MAGICK_LIBRARY_AGE)dnl
132 AC_SUBST([MAGICK_LIBRARY_CURRENT_MIN],
133          [`expr $MAGICK_LIBRARY_CURRENT - $MAGICK_LIBRARY_AGE`])
134 AC_SUBST([MAGICK_LIBRARY_VERSION_INFO],
135          [$MAGICK_LIBRARY_CURRENT:$MAGICK_LIBRARY_REVISION:$MAGICK_LIBRARY_AGE])
136
137 AC_SUBST(MAGICKPP_LIBRARY_CURRENT)dnl
138 AC_SUBST(MAGICKPP_LIBRARY_REVISION)dnl
139 AC_SUBST(MAGICKPP_LIBRARY_AGE)dnl
140 AC_SUBST([MAGICKPP_LIBRARY_CURRENT_MIN],
141          [`expr $MAGICKPP_LIBRARY_CURRENT - $MAGICKPP_LIBRARY_AGE`])
142 AC_SUBST([MAGICKPP_LIBRARY_VERSION_INFO],
143          [$MAGICKPP_LIBRARY_CURRENT:$MAGICKPP_LIBRARY_REVISION:$MAGICKPP_LIBRARY_AGE])
144
145 AC_SUBST(PACKAGE_NAME)dnl
146 AC_SUBST(PACKAGE_VERSION)dnl
147 AC_SUBST(PACKAGE_PERL_VERSION)dnl
148 AC_SUBST(PACKAGE_RELEASE)dnl
149 AC_SUBST(PACKAGE_CHANGE_DATE)dnl
150 AC_SUBST(PACKAGE_LIB_VERSION)dnl
151 AC_SUBST(PACKAGE_LIB_VERSION_NUMBER)dnl
152 AC_SUBST(PACKAGE_RELEASE_DATE)dnl
153 AC_SUBST(PACKAGE_VERSION_ADDENDUM)dnl
154
155 # Ensure that make can run correctly
156 AM_SANITY_CHECK
157
158 AM_INIT_AUTOMAKE([1.11 color-tests foreign parallel-tests silent-rules subdir-objects dist-bzip2 dist-lzip dist-xz dist-zip])
159
160 # Enable support for silent build rules
161 m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
162
163 # versionning of library
164 MAGICK_LIB_VERSION="0x"
165 if test ${MAGICK_LIBRARY_CURRENT} -lt 10 ; then
166   MAGICK_LIB_VERSION=${MAGICK_LIB_VERSION}0
167 fi
168 MAGICK_LIB_VERSION=${MAGICK_LIB_VERSION}${MAGICK_LIBRARY_CURRENT}
169 if test ${MAGICK_LIBRARY_AGE} -lt 10 ; then
170   MAGICK_LIB_VERSION=${MAGICK_LIB_VERSION}0
171 fi
172 MAGICK_LIB_VERSION=${MAGICK_LIB_VERSION}${MAGICK_LIBRARY_AGE}
173 if test ${MAGICK_LIBRARY_REVISION} -lt 10 ; then
174   MAGICK_LIB_VERSION=${MAGICK_LIB_VERSION}0
175 fi
176 MAGICK_LIB_VERSION=${MAGICK_LIB_VERSION}${MAGICK_LIBRARY_REVISION}
177 AC_SUBST(MAGICK_LIB_VERSION)
178
179 # Definition used to define MagickLibVersionText in version.h
180 MAGICK_LIB_VERSION_TEXT="${PACKAGE_VERSION}"
181 AC_SUBST(MAGICK_LIB_VERSION_TEXT)
182
183 # Definition used to define MagickLibVersionNumber in version.h
184 MAGICK_LIB_VERSION_NUMBER="${MAGICK_LIBRARY_CURRENT},${MAGICK_LIBRARY_AGE},${MAGICK_LIBRARY_REVISION}"
185 AC_SUBST(MAGICK_LIB_VERSION_NUMBER)
186
187 MAGICKPP_LIB_VERSION="0x"
188 if test ${MAGICKPP_LIBRARY_CURRENT} -lt 10 ; then
189   MAGICKPP_LIB_VERSION=${MAGICKPP_LIB_VERSION}0
190 fi
191 MAGICKPP_LIB_VERSION=${MAGICKPP_LIB_VERSION}${MAGICKPP_LIBRARY_CURRENT}
192 if test ${MAGICKPP_LIBRARY_AGE} -lt 10 ; then
193   MAGICKPP_LIB_VERSION=${MAGICKPP_LIB_VERSION}0
194 fi
195 MAGICKPP_LIB_VERSION=${MAGICKPP_LIB_VERSION}${MAGICKPP_LIBRARY_AGE}
196 if test ${MAGICKPP_LIBRARY_REVISION} -lt 10 ; then
197   MAGICKPP_LIB_VERSION=${MAGICKPP_LIB_VERSION}0
198 fi
199 MAGICKPP_LIB_VERSION=${MAGICKPP_LIB_VERSION}${MAGICKPP_LIBRARY_REVISION}
200 AC_SUBST(MAGICKPP_LIB_VERSION)
201
202 # Definition used to define MagickLibVersionText in version.h
203 MAGICKPP_LIB_VERSION_TEXT="${PACKAGE_VERSION}"
204 AC_SUBST(MAGICKPP_LIB_VERSION_TEXT)
205
206 # Definition used to define MagickLibVersionNumber in version.h
207 MAGICK_LIB_VERSION_NUMBER="${MAGICK_LIBRARY_CURRENT},${MAGICK_LIBRARY_AGE},${MAGICK_LIBRARY_REVISION}"
208 AC_SUBST(MAGICK_LIB_VERSION_NUMBER)
209
210
211
212 # Regenerate config.status if ChangeLog or version.sh is updated.
213 AC_SUBST([CONFIG_STATUS_DEPENDENCIES],['$(top_srcdir)/version.sh'])
214
215 PERLMAINCC=$CC
216
217 MAGICK_CFLAGS=''
218 MAGICK_CPPFLAGS=$CPPFLAGS_USER
219 MAGICK_PCFLAGS=$CPPFLAGS_USER
220 MAGICK_LDFLAGS=''
221 MAGICK_LIBS=''
222 MAGICK_FEATURES=''
223
224 #
225 # Evaluate shell variable equivalents to Makefile directory variables
226 #
227 if test "x$prefix" = xNONE; then
228     prefix=$ac_default_prefix
229 fi
230 # Let make expand exec_prefix.
231 if test "x$exec_prefix" = xNONE; then
232     exec_prefix='${prefix}'
233 fi
234
235 #
236 eval "eval PREFIX_DIR=${prefix}"
237 AC_SUBST(PREFIX_DIR)
238 eval "eval EXEC_PREFIX_DIR=${exec_prefix}"
239 AC_SUBST(EXEC_PREFIX_DIR)
240 eval "eval BIN_DIR=$bindir"
241 AC_SUBST(BIN_DIR)
242 eval "eval SBIN_DIR=$sbindir"
243 AC_SUBST(SBIN_DIR)
244 eval "eval LIBEXEC_DIR=$libexecdir"
245 AC_SUBST(LIBEXEC_DIR)
246 eval "eval DATA_DIR=$datadir"
247 AC_SUBST(DATA_DIR)
248 eval "eval DOC_DIR=$datadir/doc"
249 AC_SUBST(DOC_DIR)
250 eval "eval SYSCONF_DIR=$sysconfdir"
251 AC_SUBST(SYSCONF_DIR)
252 eval "eval SHAREDSTATE_DIR=$sharedstatedir"
253 AC_SUBST(SHAREDSTATE_DIR)
254 eval "eval LOCALSTATE_DIR=$localstatedir"
255 AC_SUBST(LOCALSTATE_DIR)
256 eval "eval LIB_DIR=$libdir"
257 AC_SUBST(LIB_DIR)
258 eval "eval INCLUDE_DIR=$includedir"
259 AC_SUBST(INCLUDE_DIR)
260 eval "eval PERSISTINCLUDE_DIR=$oldincludedir"
261 AC_SUBST(PERSISTINCLUDE_DIR)
262 eval "eval INFO_DIR=$infodir"
263 AC_SUBST(INFO_DIR)
264 eval "eval MAN_DIR=$mandir"
265 AC_SUBST(MAN_DIR)
266
267 # Get full paths to source and build directories
268 srcdirfull="`cd $srcdir && pwd`"
269 builddir="`pwd`"
270
271 #
272 # Compute variables useful for running uninstalled software.
273 #
274 MAGICK_CODER_MODULE_PATH="${builddir}/coders"
275 MAGICK_CONFIGURE_SRC_PATH="${srcdirfull}/config"
276 MAGICK_CONFIGURE_BUILD_PATH="${builddir}/config"
277 MAGICK_FILTER_MODULE_PATH="${builddir}/filters"
278 DIRSEP=':'
279 case "${build_os}" in
280     mingw* )
281         MAGICK_CODER_MODULE_PATH=`$WinPathScript "${MAGICK_CODER_MODULE_PATH}" 0`
282         MAGICK_CONFIGURE_SRC_PATH=`$WinPathScript "${MAGICK_CONFIGURE_SRC_PATH}" 0`
283         MAGICK_CONFIGURE_BUILD_PATH=`$WinPathScript "${MAGICK_CONFIGURE_BUILD_PATH}" 0`
284         MAGICK_FILTER_MODULE_PATH=`$WinPathScript "${MAGICK_FILTER_MODULE_PATH}" 0`
285         DIRSEP=';'
286     ;;
287 esac
288 case "${host_os}" in
289   mingw* )
290     DIRSEP=';'
291     ;;
292 esac
293 AC_SUBST(MAGICK_CODER_MODULE_PATH)
294 AC_SUBST(MAGICK_CONFIGURE_SRC_PATH)
295 AC_SUBST(MAGICK_CONFIGURE_BUILD_PATH)
296 AC_SUBST(MAGICK_FILTER_MODULE_PATH)
297 AC_SUBST(DIRSEP)
298
299
300 #
301 # Enable OS features.
302 #
303 AC_USE_SYSTEM_EXTENSIONS
304
305 # Check for programs
306 AC_PROG_CC
307 AC_PROG_CXX
308 AC_PROG_CC_STDC
309 AC_PROG_CPP
310 AC_PROG_LD
311 AC_SUBST(LD)
312 AC_PROG_CC_C99
313 AM_PROG_CC_C_O
314 AX_CFLAGS_WARN_ALL
315 AC_PROG_INSTALL
316 AC_PROG_MAKE_SET
317 AC_PROG_LN_S
318 AC_PROG_SED
319 AC_PROG_AWK
320 AM_WITH_DMALLOC
321 AX_C___ATTRIBUTE__
322 AX_GCC_ARCHFLAG([no])
323 PKG_PROG_PKG_CONFIG
324
325 # Test for 64-bit build.
326 AC_CHECK_SIZEOF([size_t])
327
328 AX_COMPILER_VENDOR
329 # The AX_CFLAGS_WARN_ALL macro doesn't currently work for sunpro
330 # compiler.
331 if test "$ax_cv_c_compiler_vendor" != "sun"; then
332   AX_CFLAGS_WARN_ALL
333 fi
334
335 if test "x$GCC" = "xyes"; then
336   CFLAGS="$CFLAGS -fexceptions"
337   touch local.exp
338 else
339   cat > local.exp <<EOF
340 set CC_FOR_TARGET "$CC"
341 EOF
342 fi
343
344 # Check for linker script support
345 gl_LD_VERSION_SCRIPT
346
347 #
348 # Enable run-time checking.
349 #
350 AC_ARG_ENABLE([bounds-checking],
351     [AC_HELP_STRING([--enable-bounds-checking],
352                     [enable run-time bounds-checking])],
353     [enable_bounds_checking=$enableval],
354     [enable_bounds_checking='no'])
355
356 if test "$enable_bounds_checking" = yes; then
357   AC_DEFINE([_FORTIFY_SOURCE], [2],
358     [enable run-time bounds-checking])
359 fi
360
361 #
362 # Tests for Windows
363 #
364 AC_EXEEXT
365 AC_OBJEXT
366
367 GDI32_LIBS=''
368 native_win32_build='no'
369 cygwin_build='no'
370 case "${host_os}" in
371     cygwin* )
372         cygwin_build='yes'
373         GDI32_LIBS='-lgdi32'
374     ;;
375     mingw* )
376         native_win32_build='yes'
377         GDI32_LIBS='-lgdi32'
378     ;;
379 esac
380 if test "${GDI32_LIBS}x" != 'x'; then
381     AC_DEFINE(WINGDI32_DELEGATE,1,Define to use the Windows GDI32 library)
382 fi
383 AC_SUBST(GDI32_LIBS)
384 AM_CONDITIONAL(WINGDI32_DELEGATE, test "${GDI32_LIBS}x" != 'x' )
385 AM_CONDITIONAL(WIN32_NATIVE_BUILD, test "${native_win32_build}" = 'yes' )
386 AM_CONDITIONAL(CYGWIN_BUILD, test "${cygwin_build}" = 'yes' )
387 AM_CONDITIONAL(USING_CL, test "x${CC}" = 'xcl.exe' )
388
389 WinPathScript="${srcdirfull}/winpath.sh"
390 AC_SUBST(WinPathScript)
391
392 #
393 # Compiler flags tweaks
394 #
395 if test "${GCC}" != "yes"; then
396     case "${host}" in
397         *-*-hpux* )
398             # aCC: HP ANSI C++ B3910B A.03.34
399             CFLAGS="${CFLAGS} -Wp,-H30000"
400             if test -n "${CXXFLAGS}"; then
401                 CXXFLAGS='-AA'
402             else
403                 CXXFLAGS="${CXXFLAGS} -AA"
404             fi
405         ;;
406         *-dec-osf5.* )
407             # Compaq alphaev68-dec-osf5.1 compiler
408             if test -n "${CXXFLAGS}"; then
409                 CXXFLAGS='-std strict_ansi -noimplicit_include'
410             else
411                 CXXFLAGS="${CXXFLAGS} -std strict_ansi -noimplicit_include"
412             fi
413   esac
414 fi
415
416 # Check for lazy-loading.
417 AC_CACHE_CHECK([for linker lazyload option],[im_cv_ld_lazyload],
418 [
419 im_cv_ld_lazyload='none'
420 case "${host}" in
421   *-*-solaris2.8 | *-*-solaris2.9 | *-*-solaris2.1? )
422     if test "$lt_cv_prog_gnu_ld" != 'yes' ; then
423        im_cv_ld_lazyload='-Wl,-zlazyload'
424     fi
425     ;;
426 esac
427 ])
428 if test "${im_cv_ld_lazyload}" != 'none' ; then
429   if test -z "${LDFLAGS}" ; then
430     LDFLAGS="${im_cv_ld_lazyload}"
431   else
432     LDFLAGS="${im_cv_ld_lazyload} ${LDFLAGS}"
433   fi
434 fi
435
436 dnl Platform-specific stuff
437 case "$host" in
438   *darwin* | *-macos10*)
439     dnl Disable FORTIFY_SOURCE to fix a bug in LVVM / OpenMP support
440     CFLAGS="${CFLAGS} -D_FORTIFY_SOURCE=0"
441     dnl OS X universal binary support, requires --disable-dependency-tracking
442     AC_ARG_ENABLE([osx-universal-binary],
443         AC_HELP_STRING([--enable-osx-universal-binary],
444            [build universal binary on OS X [[default=no]]]),
445         [build_osxuniversal="${enableval}"], [build_osxuniversal=no])
446
447     if test "${build_osxuniversal}" != no ; then
448       if test "$enable_dependency_tracking" != no ; then
449         AC_MSG_ERROR([--enable-osx-universal-binary requires --disable-dependency-tracking.
450 Please re-run configure with these options:
451   --disable-dependency-tracking --enable-osx-universal-binary
452         ])
453       fi
454       CFLAGS="$CFLAGS -isysroot /Developer/SDKs/MacOSX10.5.sdk -arch ppc -arch i386"
455       CXXFLAGS="$CXXFLAGS -isysroot /Developer/SDKs/MacOSX10.5.sdk -arch ppc -arch i386"
456       LDFLAGS="$LDFLAGS -Wl,-syslibroot,/Developer/SDKs/MacOSX10.5.sdk -arch ppc -arch i386"
457   fi
458   ;;
459 esac
460
461 #
462 # ARCH specific include directory
463 #
464 AC_ARG_WITH([includearch-dir],
465     [AC_HELP_STRING([--includearch-dir=DIR],
466                     [ARCH specific include directory])],
467                     [includearch_dir=$withval],
468                     [includearch_dir=$INCLUDE_DIR])
469
470 eval "eval INCLUDEARCH_DIR=$includearch_dir"
471 AC_SUBST(INCLUDEARCH_DIR)
472
473 #
474 # ARCH specific configuration directory
475 #
476 AC_ARG_WITH([sharearch-dir],
477     [AC_HELP_STRING([--sharearch-dir=DIR],
478                     [ARCH specific config directory])],
479                     [sharearch_dir=$withval],
480                     [sharearch_dir="${LIB_DIR}"])
481
482 eval "eval SHAREARCH_DIR=$sharearch_dir"
483 AC_SUBST(SHAREARCH_DIR)
484
485 # Path to the pkgconfig folder
486 AC_ARG_WITH([pkgconfigdir], AS_HELP_STRING([--with-pkgconfigdir=DIR],
487             [Path to the pkgconfig directory @<:@LIBDIR/pkgconfig@:>@]),
488             [pkgconfigdir="$withval"], [pkgconfigdir='${libdir}/pkgconfig'])
489 AC_SUBST([pkgconfigdir])
490
491 #
492 # Enable support for threads
493 #
494 # Find Posix threads library
495 #
496 AC_ARG_WITH([threads],
497     [AC_HELP_STRING([--without-threads], [disable threads support])],
498     [with_threads=$withval],
499     [with_threads='yes'])
500
501 THREAD_LIBS=''
502 have_threads=no
503 if test "$with_threads" != 'no'; then
504     AX_PTHREAD()
505     if test "$ax_pthread_ok" = yes; then
506         have_threads=yes
507         DEF_THREAD="$PTHREAD_CFLAGS"
508         CFLAGS="$CFLAGS $DEF_THREAD"
509         CXXFLAGS="$CXXFLAGS $DEF_THREAD"
510         THREAD_LIBS="$PTHREAD_LIBS"
511         if test "$CC" != "$PTHREAD_CC"; then
512             AC_MSG_WARN([Replacing compiler $CC with compiler $PTHREAD_CC to support pthreads.])
513             CC="$PTHREAD_CC"
514         fi
515         AC_DEFINE(THREAD_SUPPORT,1,[Define if you have POSIX threads libraries and header files.])
516     fi
517 fi
518 LIBS="$LIBS $THREAD_LIBS"
519 AC_SUBST(THREAD_LIBS)
520
521 # Enable support for OpenMP
522 if test "$have_threads" != 'yes'; then
523   ac_cv_prog_c_openmp=unsupported
524 fi
525 AC_OPENMP([C])
526 CFLAGS="$OPENMP_CFLAGS $CFLAGS"
527 MAGICK_PCFLAGS="$MAGICK_PCFLAGS $OPENMP_CFLAGS"
528 AC_SUBST(OPENMP_CFLAGS)
529 if test "$enable_openmp" != no; then
530   if test "$ac_cv_prog_c_openmp" != 'unsupported'; then
531     MAGICK_FEATURES="OpenMP $MAGICK_FEATURES"
532   fi
533 fi
534
535 # Enable support for OpenCL
536 AX_OPENCL([C])
537 CFLAGS="$CL_CFLAGS $CFLAGS"
538 CPPFLAGS="$CL_CFLAGS $CPPFLAGS"
539 LIBS="$CL_LIBS $LIBS"
540 AC_SUBST(CL_CFLAGS)
541 if test "$enable_opencl" != no; then
542   if test "X$ax_cv_check_cl_libcl" != Xno; then :
543     MAGICK_FEATURES="OpenCL $MAGICK_FEATURES"
544   fi
545 fi
546
547 ########
548 #
549 # Check for large file support
550 #
551 ########
552 AC_SYS_LARGEFILE
553 AC_FUNC_FSEEKO
554 LFS_CPPFLAGS=''
555 if test "$enable_largefile" != no; then
556     case $ac_cv_sys_file_offset_bits in
557     no)
558         # nothing to do here as the host supports LFS fine
559         ;;
560     unknown)
561         AC_MSG_CHECKING([for native large file support])
562         AC_RUN_IFELSE([AC_LANG_PROGRAM([#include <unistd.h>
563           main () {
564           exit(!(sizeof(off_t) == 8));
565         }])],
566         [ac_cv_sys_file_offset_bits=64; AC_DEFINE(_FILE_OFFSET_BITS,64)
567          AC_MSG_RESULT([yes])],
568         [AC_MSG_RESULT([no])])
569         ;;
570     *)
571         LFS_CPPFLAGS="$LFS_CPPFLAGS -D_FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits"
572         ;;
573     esac
574     if test "$ac_cv_sys_large_files" != 'no'; then
575         LFS_CPPFLAGS="$LFS_CPPFLAGS -D_LARGE_FILES=1"
576     fi
577     if test "$ac_cv_sys_largefile_source" != 'no'; then
578         LFS_CPPFLAGS="$LFS_CPPFLAGS -D_LARGEFILE_SOURCE=1"
579     fi
580 fi
581 AC_SUBST(LFS_CPPFLAGS)
582
583 # Configure libtool
584 AC_LIBTOOL_DLOPEN
585 LT_INIT([win32-dll])
586 LT_LANG([C++])
587 AC_SUBST(LIBTOOL_DEPS)
588
589 # Check to see if building shared libraries
590 libtool_build_shared_libs='no'
591 if test "$enable_shared" = 'yes'; then
592     libtool_build_shared_libs='yes'
593 fi
594
595 # Check to see if building static libraries
596 libtool_build_static_libs='no'
597 if test "$enable_static" = 'yes'; then
598     libtool_build_static_libs='yes'
599 fi
600
601 AM_CONDITIONAL(WITH_SHARED_LIBS, test "${libtool_build_shared_libs}" = 'yes')
602 #
603 # Enable support for building loadable modules
604 #
605 build_modules='no'
606 AC_ARG_WITH([modules],
607     [AC_HELP_STRING([--with-modules],
608                     [enable building dynamically loadable modules])],
609     [with_modules=$withval],
610     [with_modules='no'])
611
612 # Only allow building loadable modules if we are building shared libraries
613 if test "$with_modules" != 'no' ; then
614     if test "$libtool_build_shared_libs" = 'no'; then
615         AC_MSG_WARN([Modules may only be built if building shared libraries is enabled.])
616     build_modules='no'
617   else
618     build_modules='yes'
619   fi
620 fi
621 if test "$build_modules" != 'no' ; then
622     AC_DEFINE(BUILD_MODULES,1,Define if coders and filters are to be built as modules.)
623     MAGICK_FEATURES="$MAGICK_FEATURES Modules"
624 fi
625 AM_CONDITIONAL(WITH_MODULES, test "$build_modules" != 'no')
626
627 # Enable build using delegate libraries built in subdirectories rather than installed
628 # delegate libraries (bzlib fftw fpx gslib jp2 jbig jpeg lcms lzma png tiff ttf wmf xml zlib)
629 AC_ARG_ENABLE([delegate-build],
630     [AC_HELP_STRING([--enable-delegate-build],
631                     [look for delegate libraries in build directory])],
632     [enable_delegate_build=$enableval],
633     [enable_delegate_build='no'])
634
635 AC_ARG_ENABLE([deprecated],
636     [AC_HELP_STRING([--disable-deprecated],
637                     [exclude deprecated methods in MagickCore and MagickWand APIs])],
638     [enable_deprecated=$enableval],
639     [enable_deprecated='no'])
640
641 if test "$enable_deprecated" = 'yes'; then
642   AC_DEFINE(EXCLUDE_DEPRECATED,1,[exclude deprecated methods in MagickCore API])
643 else
644   DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --disable-deprecated "
645 fi
646
647 # Build a version of ImageMagick which operates uninstalled.
648 # Used to build distributions located via MAGICK_HOME / executable path
649 AC_ARG_ENABLE([installed],
650     [AC_HELP_STRING([--disable-installed],
651                     [Formally install ImageMagick under PREFIX])],
652     [enable_installed=$enableval],
653     [enable_installed='yes'])
654
655 if test "$enable_installed" = 'yes'; then
656     AC_DEFINE(INSTALLED_SUPPORT,1,[ImageMagick is formally installed under prefix])
657 else
658     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --disable-installed "
659 fi
660
661 # Permit enciphering and deciphering image pixels.
662 AC_ARG_ENABLE([cipher],
663     [AC_HELP_STRING([--disable-cipher],
664                     [disable enciphering and deciphering image pixels])],
665     [enable_cipher=$enableval],
666     [enable_cipher='yes'])
667
668 if test "$enable_cipher" = 'yes'; then
669     AC_DEFINE(CIPHER_SUPPORT,1,[permit enciphering and deciphering image pixels])
670 fi
671
672 # Build a zero-configuration version of ImageMagick.
673 AC_ARG_ENABLE([zero-configuration],
674     [AC_HELP_STRING([--enable-zero-configuration],
675                     [enable self-contained, embeddable, zero-configuration ImageMagick])],
676     [enable_zero_configuration=$enableval],
677     [enable_zero_configuration='no'])
678
679 if test "$enable_zero_configuration" = 'yes'; then
680     AC_DEFINE(ZERO_CONFIGURATION_SUPPORT,1,[Build self-contained, embeddable, zero-configuration ImageMagick])
681     MAGICK_FEATURES="Zero-Configuration $MAGICK_FEATURES"
682 fi
683
684 # Build a high dynamic range version of ImageMagick.
685 AC_ARG_ENABLE([hdri],
686     [AC_HELP_STRING([--enable-hdri],
687                     [accurately represent the wide range of intensity levels found in real scenes])],
688     [enable_hdri=$enableval],
689     [enable_hdri='yes'])
690
691 MAGICK_HDRI=""
692 if test "$enable_hdri" = 'yes'; then
693     MAGICK_HDRI="HDRI"
694     magick_hdri_enable='1';
695     MAGICK_FEATURES="HDRI $MAGICK_FEATURES"
696 else
697     magick_hdri_enable='0'
698 fi
699 AC_DEFINE_UNQUOTED(HDRI_ENABLE_OBSOLETE_IN_H,$magick_hdri_enable,[Whether hdri is enabled or not])
700 AC_SUBST(MAGICK_HDRI)dnl
701 MAGICK_PCFLAGS="$MAGICK_PCFLAGS -DMAGICKCORE_HDRI_ENABLE=$magick_hdri_enable"
702 CFLAGS="$CFLAGS -DMAGICKCORE_HDRI_ENABLE=$magick_hdri_enable"
703 CPPFLAGS="$CPPFLAGS -DMAGICKCORE_HDRI_ENABLE=$magick_hdri_enable"
704
705 # Build a version of ImageMagick with assert statements.
706 AC_ARG_ENABLE([assert],
707     [AC_HELP_STRING([--disable-assert],
708                     [disable assert() statements in build])],
709     [enable_assert=$enableval],
710     [enable_assert='yes'])
711
712 if test "$enable_assert" = 'no'; then
713     AC_DEFINE(NDEBUG,1,[Turn off assert statements])
714 fi
715
716 # Don't emit "rebuild rules" for configure, Makefile.ins, etc.
717 AM_MAINTAINER_MODE
718
719 # Enable hugepages support
720 AC_ARG_ENABLE([hugepages],
721     [AC_HELP_STRING([--enable-hugepages],
722                     [enable 'huge pages' support])],
723     [enable_hugepages=$enableval],
724     [enable_hugepages='no'])
725
726 # Enable ccmalloc memory debugging support
727 AC_ARG_ENABLE([ccmalloc],
728     [AC_HELP_STRING([--enable-ccmalloc],
729                     [enable 'ccmalloc' memory debug support])],
730     [enable_ccmalloc=$enableval],
731     [enable_ccmalloc='no'])
732
733 # Enable Electric Fence memory debugging support
734 AC_ARG_ENABLE([efence],
735     [AC_HELP_STRING([--enable-efence],
736                     [enable 'efence' memory debug support])],
737     [enable_efence=$enableval],
738     [enable_efence='no'])
739
740 # Enable prof-based profiling support
741 AC_ARG_ENABLE([prof],
742     [AC_HELP_STRING([--enable-prof],
743                     [enable 'prof' profiling support])],
744     [enable_prof=$enableval],
745     [enable_prof='no'])
746
747 # Enable gprof-based profiling support
748 AC_ARG_ENABLE([gprof],
749     [AC_HELP_STRING([--enable-gprof],
750                     [enable 'gprof' profiling support])],
751     [enable_gprof=$enableval],
752     [enable_gprof='no'])
753
754 # Enable gcov-based profiling support
755 AC_ARG_ENABLE([gcov],
756     [AC_HELP_STRING([--enable-gcov],
757                     [enable 'gcov' profiling support])],
758     [enable_gcov=$enableval],
759     [enable_gcov='no'])
760
761 enable_profiling='no'
762 if test "$enable_prof" = 'yes' || test "$enable_gprof" = 'yes' || test "$enable_gcov" = 'yes'; then
763     enable_profiling='yes'
764     if test "$libtool_build_shared_libs" = 'yes'; then
765         echo "Warning: Can not profile code using shared libraries"
766     fi
767 fi
768
769 # Magick API method prefix
770 AC_ARG_WITH([method-prefix],
771     [AC_HELP_STRING([--with-method-prefix=PREFIX],
772                     [prefix MagickCore API methods])],
773     [with_method_prefix=$withval],
774     [with_method_prefix='no'])
775
776 if test "$with_method_prefix" != 'no'; then
777     AC_DEFINE_UNQUOTED(NAMESPACE_PREFIX,$with_method_prefix,[Magick API method prefix])
778     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-method-prefix "
779 fi
780
781 # Enable legacy support (default no)
782 AC_ARG_ENABLE(legacy-support,
783               [  --enable-legacy-support  install legacy command-line utilities (default disabled)],
784               [with_legacy_support=$enableval],
785               [with_legacy_support='no'])
786 AM_CONDITIONAL(LEGACY_SUPPORT, test "$with_legacy_support" != 'no')
787
788 # Number of bits in a Quantum
789 AC_ARG_WITH([quantum-depth],
790     [AC_HELP_STRING([--with-quantum-depth=DEPTH],
791                     [number of bits in a pixel quantum (default 16)])],
792     [with_quantum_depth=$withval],
793     [with_quantum_depth=16])
794
795 if test "$with_quantum_depth" != '8'; then
796     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-quantum-depth=$with_quantum_depth "
797 fi
798
799 case "${with_quantum_depth}" in
800     8 ) ;;
801     16 ) ;;
802     32 ) ;;
803     64 ) ;;
804     * ) AC_MSG_ERROR("Pixel quantum depth must have value of 8, 16, 32, or 64") ;;
805 esac
806 QUANTUM_DEPTH="$with_quantum_depth"
807 AC_DEFINE_UNQUOTED(QUANTUM_DEPTH_OBSOLETE_IN_H,$QUANTUM_DEPTH,[Number of bits in a pixel Quantum (8/16/32/64)])
808 AC_SUBST(QUANTUM_DEPTH)dnl
809 MAGICK_PCFLAGS="$MAGICK_PCFLAGS -DMAGICKCORE_QUANTUM_DEPTH=$QUANTUM_DEPTH"
810 CFLAGS="$CFLAGS -DMAGICKCORE_QUANTUM_DEPTH=$QUANTUM_DEPTH"
811 CPPFLAGS="$CPPFLAGS -DMAGICKCORE_QUANTUM_DEPTH=$QUANTUM_DEPTH"
812
813 # define a lib suffix for abi purpose
814 MAGICK_ABI_SUFFIX="Q${QUANTUM_DEPTH}"
815 if test "$enable_hdri" = 'yes'; then
816   MAGICK_ABI_SUFFIX="Q${QUANTUM_DEPTH}${MAGICK_HDRI}"
817 fi
818 AC_SUBST(MAGICK_ABI_SUFFIX)
819
820 # Set pixel cache threshold
821 AC_ARG_WITH([cache],
822     [AC_HELP_STRING([--with-cache=THRESHOLD],
823                     [set pixel cache threshhold in MB (default available memory)])],
824     [with_cache=$withval],
825     [with_cache=''])
826
827 if test "$with_cache" != ''; then
828     AC_DEFINE_UNQUOTED(PixelCacheThreshold,$with_cache,[Pixel cache threshold in MB (defaults to available memory)])
829     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-cache=$with_cache "
830 fi
831
832 # Disable/Enable support for full delegate paths
833 AC_ARG_WITH([frozenpaths],
834     [AC_HELP_STRING([--with-frozenpaths],
835                     [freeze delegate paths])],
836     [with_frozenpaths=$withval],
837     [with_frozenpaths='no'])
838
839 # Enable build/install of Magick++
840 AC_ARG_WITH([magick-plus-plus],
841     [AC_HELP_STRING([--without-magick-plus-plus],
842                     [disable build/install of Magick++])],
843     [with_magick_plus_plus=$withval],
844     [with_magick_plus_plus='yes'])
845
846 # Encode the this name into the shared library.
847 AC_ARG_WITH([package-release-name],
848     [AC_HELP_STRING([--with-package-release-name=NAME],
849                     [encode this name into the shared library])],
850 [MAGICK_LT_RELEASE_OPTS="-release $withval"])
851 AC_SUBST(MAGICK_LT_RELEASE_OPTS)
852
853 # Disable build/install of PerlMagick.
854 AC_ARG_WITH([perl],
855     [AC_HELP_STRING([--with-perl],
856                     [enable build/install of PerlMagick])],
857     [with_perl=$withval],
858     [with_perl='no'])
859
860 # Options to pass when configuring PerlMagick
861 AC_ARG_WITH([perl-options],
862     [AC_HELP_STRING([--with-perl-options=OPTIONS],
863                     [options to pass on command-line when generating PerlMagick build file])],
864 PERL_MAKE_OPTIONS=$withval)
865 AC_SUBST(PERL_MAKE_OPTIONS)
866
867 # Enable umem, object-caching memory allocation library.
868 AC_ARG_WITH(umem,
869         [  --with-umem             enable umem memory allocation library support],
870         [with_umem=$withval],
871         [with_umem='no'])
872 if test "$with_umem" != 'yes' ; then
873     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-umem=$with_umem "
874 fi
875
876 #
877 # Specify path to shared libstdc++ if not in normal location
878 #
879 AC_ARG_WITH([libstdc],
880     [AC_HELP_STRING([--with-libstdc=DIR],
881                     [ use libstdc++ in DIR (for GNU C++)])],
882     [with_libstdc=$withval],
883     [with_libstdc=''])
884
885 if test "$with_libstdc" != ''; then
886     if test -d "$with_libstdc"; then
887         LIBSTDCLDFLAGS="-L$with_libstdc"
888     fi
889 fi
890 AC_SUBST(LIBSTDCLDFLAGS)
891
892 # Does gcc required -traditional?
893 AC_PROG_GCC_TRADITIONAL
894
895 ########
896 #
897 # Set defines required to build DLLs and modules using MinGW
898 #
899 ########
900 # These options are set for multi-thread DLL module build
901 #  libMagickCore:           _DLL _MAGICKMOD_ _MAGICKLIB_
902 #  module:              _DLL
903 #  executable/Magick++: _DLL _MAGICKMOD_
904 MODULE_EXTRA_CPPFLAGS=''
905 LIBRARY_EXTRA_CPPFLAGS=''
906 if test "${native_win32_build}" = 'yes'; then
907     if test "${libtool_build_shared_libs}" = 'yes'; then
908         CPPFLAGS="$CPPFLAGS -D_DLL"
909         MAGICK_CPPFLAGS="$MAGICK_CPPFLAGS -D_DLL"
910         MAGICK_PCFLAGS="$MAGICK_PCFLAGS -D_DLL"
911         LIBRARY_EXTRA_CPPFLAGS="$LIBRARY_EXTRA_CPPFLAGS -D_MAGICKLIB_"
912         if test "$build_modules" = 'yes'; then
913             LIBRARY_EXTRA_CPPFLAGS="$LIBRARY_EXTRA_CPPFLAGS -D_MAGICKMOD_"
914         else
915             MODULE_EXTRA_CPPFLAGS="$MODULE_EXTRA_CPPFLAGS -D_MAGICKLIB_"
916         fi
917     else
918         CPPFLAGS="$CPPFLAGS -D_LIB"
919         MAGICK_CPPFLAGS="$MAGICK_CPPFLAGS -D_LIB"
920         MAGICK_PCFLAGS="$MAGICK_PCFLAGS -D_LIB"
921     fi
922     if test "$with_threads" = 'yes'; then
923          CPPFLAGS="$CPPFLAGS -D_MT"
924          MAGICK_CPPFLAGS="$MAGICK_CPPFLAGS -D_MT"
925          MAGICK_PCFLAGS="$MAGICK_PCFLAGS -D_MT"
926     fi
927 fi
928 AC_SUBST(MODULE_EXTRA_CPPFLAGS)
929 AC_SUBST(LIBRARY_EXTRA_CPPFLAGS)
930
931 # Check standard headers
932 AC_HEADER_STDC
933 if ! test x"$ac_cv_header_stdc" = x"yes"; then
934     AC_MSG_WARN([configure has detected that you do not have the ANSI standard C
935     header files.  Compilation cannot proceed.  Please install the ANSI C
936     headers and rerun this script.]);
937 fi
938 AC_HEADER_ASSERT
939 AC_HEADER_DIRENT
940
941 # Check additional headers
942 AC_CHECK_HEADERS(arm/limits.h arpa/inet.h complex.h errno.h fcntl.h limits.h linux/unistd.h locale.h machine/param.h mach-o/dyld.h netinet/in.h OS.h process.h sun_prefetch.h stdarg.h sys/ipc.h sys/mman.h sys/resource.h sys/socket.h sys/syslimits.h sys/time.h sys/timeb.h sys/times.h sys/wait.h wchar.h xlocale.h)
943
944 ########
945 #
946 # Checks for typedefs, structures, and compiler characteristics.
947 #
948 ########
949
950 AC_HEADER_STDBOOL
951 AC_C_VOLATILE
952 AC_C_STRINGIZE
953 AC_HEADER_STAT
954 AC_HEADER_TIME
955 AC_STRUCT_TM
956 AC_STRUCT_TIMEZONE
957 AC_SYS_INTERPRETER
958
959 #
960 # Checks for language qualifiers and semantics.
961 #
962 AC_C_CHAR_UNSIGNED
963 AC_C_CONST
964 AC_C_INLINE
965 AC_C_RESTRICT
966 AC_C_VOLATILE
967
968 # If words are stored with the most significant byte first (like
969 # Motorola and SPARC CPUs), define `WORDS_BIGENDIAN'.
970 AC_C_BIGENDIAN
971
972 # Define to a suitable type, if standard headers do not define it.
973 AC_TYPE_INT8_T
974 AC_TYPE_INT16_T
975 AC_TYPE_INT32_T
976 AC_TYPE_INT64_T
977 AC_TYPE_INTMAX_T
978 AC_TYPE_INTPTR_T
979 AC_TYPE_LONG_DOUBLE
980 AC_TYPE_LONG_DOUBLE_WIDER
981 AC_TYPE_LONG_LONG_INT
982 AC_TYPE_MBSTATE_T
983 AC_TYPE_MODE_T
984 AC_TYPE_OFF_T
985 AC_TYPE_PID_T
986 AC_TYPE_SIZE_T
987 AC_TYPE_SSIZE_T
988 AC_TYPE_UID_T
989 AC_TYPE_UINT8_T
990 AC_TYPE_UINT16_T
991 AC_TYPE_UINT32_T
992 AC_TYPE_UINT64_T
993 AC_TYPE_UINTMAX_T
994 AC_TYPE_UINTPTR_T
995 AC_TYPE_UNSIGNED_LONG_LONG_INT
996
997 # Float_t and double_t are intended to be the the most efficient type.
998 AC_CHECK_TYPES([float_t], [], [], [[#include <math.h>]])
999 AC_CHECK_TYPES([double_t], [], [], [[#include <math.h>]])
1000 AC_CHECK_SIZEOF([float_t], [], [[#include <math.h>]])
1001 AC_CHECK_SIZEOF([double_t], [], [[#include <math.h>]])
1002
1003 # Get size of float, double and long double for comparaison.
1004 AC_CHECK_SIZEOF([float])
1005 AC_CHECK_SIZEOF([double])
1006 AC_CHECK_SIZEOF([long double])
1007
1008 # Obtain size of an 'signed short' and define as SIZEOF_SIGNED_SHORT
1009 AC_CHECK_SIZEOF(signed short)
1010
1011 # Obtain size of an 'unsigned short' and define as SIZEOF_UNSIGNED_SHORT
1012 AC_CHECK_SIZEOF(unsigned short)
1013
1014 # Obtain size of an 'signed int' and define as SIZEOF_SIGNED_INT
1015 AC_CHECK_SIZEOF(signed int)
1016
1017 # Obtain size of an 'unsigned int' and define as SIZEOF_UNSIGNED_INT
1018 AC_CHECK_SIZEOF(unsigned int)
1019
1020 # Obtain size of a 'signed long' and define as SIZEOF_SIGNED_LONG
1021 AC_CHECK_SIZEOF(signed long)
1022
1023 # Obtain size of a 'unsigned long' and define as SIZEOF_UNSIGNED_LONG
1024 AC_CHECK_SIZEOF(unsigned long)
1025
1026 # Obtain size of a 'long long' and define as SIZEOF_SIGNED_LONG_LONG.  If
1027 # 'signed long long' is not supported then the value defined is zero.
1028 AC_CHECK_SIZEOF(signed long long)
1029
1030 # Obtain size of a 'unsigned long long' and define as
1031 # SIZEOF_UNSIGNED_LONG_LONG.  If 'unsigned long long' is not
1032 # supported then the value defined is zero.
1033 AC_CHECK_SIZEOF(unsigned long long)
1034
1035 # Obtain size of off_t and define as SIZEOF_OFF_T
1036 AC_CHECK_SIZEOF(off_t)
1037
1038 # Obtain size of size_t and define as SIZEOF_SIZE_T
1039 AC_CHECK_SIZEOF(size_t)
1040
1041 # Obtain size of ssize_t and define as SIZEOF_SSIZE_T
1042 AC_CHECK_SIZEOF(ssize_t)
1043
1044 # Obtain size of an unsigned int pointer and define as SIZEOF_UNSIGNED_INTP
1045 AC_CHECK_SIZEOF(unsigned int*)
1046
1047 #
1048 # Compute sized types for current CPU and compiler options.
1049 #
1050
1051 AC_MSG_CHECKING(for signed 8-bit type)
1052 INT8_T='signed char'
1053 AC_MSG_RESULT($INT8_T)
1054 AC_SUBST(INT8_T)
1055
1056 AC_MSG_CHECKING(for unsigned 8-bit type)
1057 UINT8_T='unsigned char'
1058 AC_MSG_RESULT($UINT8_T)
1059 AC_SUBST(UINT8_T)
1060
1061 AC_MSG_CHECKING(for signed 16-bit type)
1062 INT16_T='signed short'
1063 AC_MSG_RESULT($INT16_T)
1064 AC_SUBST(INT16_T)
1065
1066 AC_MSG_CHECKING(for unsigned 16-bit type)
1067 UINT16_T='unsigned short'
1068 AC_MSG_RESULT($UINT16_T)
1069 AC_SUBST(UINT16_T)
1070
1071 AC_MSG_CHECKING(for signed 32-bit type)
1072 INT32_T='none'
1073 INT32_F='none'
1074 if test $ac_cv_sizeof_signed_int -eq 4; then
1075   INT32_T='signed int'
1076   INT32_F='""'
1077 elif test $ac_cv_sizeof_signed_long -eq 4; then
1078   INT32_T='signed long'
1079   INT32_F='"l"'
1080 fi
1081 AC_MSG_RESULT($INT32_T)
1082 AC_SUBST(INT32_T)
1083 AC_SUBST(INT32_F)
1084
1085 AC_MSG_CHECKING(for unsigned 32-bit type)
1086 UINT32_T='none'
1087 UINT32_F='none'
1088 if test $ac_cv_sizeof_unsigned_int -eq 4; then
1089   UINT32_T='unsigned int'
1090   UINT32_F='""'
1091 elif test $ac_cv_sizeof_unsigned_long -eq 4; then
1092   UINT32_T='unsigned long'
1093   UINT32_F='"l"'
1094 fi
1095 AC_MSG_RESULT($UINT32_T)
1096 AC_SUBST(UINT32_T)
1097 AC_SUBST(UINT32_F)
1098
1099 AC_MSG_CHECKING(for signed 64-bit type)
1100 INT64_T='none'
1101 INT64_F='none'
1102 if test $ac_cv_sizeof_signed_long -eq 8; then
1103   INT64_T='signed long'
1104   INT64_F='"l"'
1105 elif test $ac_cv_sizeof_signed_long_long -eq 8; then
1106   INT64_T='signed long long'
1107   INT64_F='"ll"'
1108 fi
1109 case "${host_os}" in
1110   mingw* )
1111     INT64_F='"I64"'
1112     ;;
1113 esac
1114 AC_MSG_RESULT($INT64_T)
1115 AC_SUBST(INT64_T)
1116 AC_SUBST(INT64_F)
1117
1118 AC_MSG_CHECKING(for unsigned 64-bit type)
1119 UINT64_T='none'
1120 UINT64_F='none'
1121 if test $ac_cv_sizeof_unsigned_long -eq 8; then
1122   UINT64_T='unsigned long'
1123   UINT64_F='"l"'
1124 elif test $ac_cv_sizeof_unsigned_long_long -eq 8; then
1125   UINT64_T='unsigned long long'
1126   UINT64_F='"ll"'
1127 fi
1128 case "${host_os}" in
1129   mingw* )
1130     UINT64_F='"I64"'
1131     ;;
1132 esac
1133 AC_MSG_RESULT($UINT64_T)
1134 AC_SUBST(UINT64_T)
1135 AC_SUBST(UINT64_F)
1136
1137 AC_MSG_CHECKING(for unsigned maximum type)
1138 UINTMAX_T='none'
1139 UINTMAX_F='none'
1140 if test "$UINT64_T" != 'none'; then
1141   UINTMAX_T=$UINT64_T
1142   UINTMAX_F=$UINT64_F
1143 elif test "$UINT32_T" != 'none'; then
1144   UINTMAX_T=$UINT32_T
1145   UINTMAX_F=$UINT32_F
1146 fi
1147 AC_MSG_RESULT($UINTMAX_T)
1148 AC_SUBST(UINTMAX_T)
1149 AC_SUBST(UINTMAX_F)
1150
1151 AC_MSG_CHECKING(for pointer difference type)
1152 UINTPTR_T='none'
1153 UINTPTR_F='none'
1154 if test $ac_cv_sizeof_unsigned_long -eq $ac_cv_sizeof_unsigned_intp; then
1155   UINTPTR_T='unsigned long'
1156   UINTPTR_F='"l"'
1157 elif test $ac_cv_sizeof_unsigned_long_long -eq $ac_cv_sizeof_unsigned_intp; then
1158   UINTPTR_T='unsigned long long'
1159   UINTPTR_F='"ll"'
1160 fi
1161 AC_MSG_RESULT($UINTPTR_T)
1162 AC_SUBST(UINTPTR_T)
1163 AC_SUBST(UINTPTR_F)
1164
1165 AC_MSG_CHECKING([whether our compiler supports __func__])
1166 AC_TRY_COMPILE([],
1167  [{ const char *func = __func__; return(func != 0 ? 0 : 1); }],
1168  AC_MSG_RESULT([yes]),
1169  AC_MSG_RESULT([no])
1170  AC_MSG_CHECKING([whether our compiler supports __FUNCTION__])
1171  AC_TRY_COMPILE([],
1172    [{ const char *func = __FUNCTION__; return(func != 0 ? 0 : 1); }],
1173    AC_MSG_RESULT([yes])
1174    AC_DEFINE(__func__, __FUNCTION__,
1175      [Define to appropriate substitue if compiler does not have __func__]),
1176    AC_MSG_RESULT([no])
1177    AC_DEFINE(__func__, __FILE__,
1178      [Define to appropriate substitue if compiler does not have __func__])))
1179
1180 ########
1181 #
1182 # Check for functions
1183 #
1184 ########
1185 AC_FUNC_CLOSEDIR_VOID
1186 AC_FUNC_MMAP
1187 AC_FUNC_FORK
1188 AC_FUNC_MEMCMP
1189 AC_FUNC_SELECT_ARGTYPES
1190 AC_FUNC_SETVBUF_REVERSED
1191 AC_TYPE_SIGNAL
1192 AC_FUNC_STRTOD
1193 AC_FUNC_STRERROR_R
1194 AC_FUNC_VPRINTF
1195
1196 #
1197 # Find math library
1198 #
1199 MATH_LIBS=''
1200 AC_CHECK_LIB(m,sqrt,MATH_LIBS="-lm",,)
1201 LIBS="$MATH_LIBS $LIBS"
1202 AC_SUBST(MATH_LIBS)
1203
1204 #
1205 # Find socket library
1206 #
1207 AC_SEARCH_LIBS(gethostbyname, resolv nsl)
1208 AC_SEARCH_LIBS(socket, socket,
1209 [
1210   AC_DEFINE([HAVE_SOCKET],[1],[Define to 1 if you have socket support.])
1211   MAGICK_FEATURES="DPC $MAGICK_FEATURES"
1212 ])
1213
1214 AC_CHECK_FUNCS([acosh _aligned_malloc asinh atanh atoll atexit cabs carg cimag creal clock ctime_r directio _exit execvp fchmod floor fork ftime ftruncate getc_unlocked getcwd getpid getexecname getdtablesize getpagesize getrlimit getrusage gettimeofday gmtime_r isnan j0 j1 lltostr localtime_r lstat memmove memset mkstemp munmap nanosleep newlocale _NSGetExecutablePath pclose _pclose poll popen _popen posix_fadvise posix_fallocate posix_madvise posix_memalign posix_spawnp pow pread pwrite qsort_r raise rand_r readlink readdir_r realpath select seekdir setlocale socket sqrt setvbuf stat strchr strrchr strcspn strdup strpbrk strspn strstr strtod strtod_l strtol strtoul symlink sysconf sigemptyset sigaction spawnvp strerror strlcat strlcpy strcasecmp strncasecmp telldir tempnam times ulltostr uselocale usleep utime vfprintf vfprintf_l vsprintf vsnprintf vsnprintf_l waitpid _wfopen _wstat])
1215
1216 #
1217 # Check for clock_gettime().
1218 #
1219 AC_SEARCH_LIBS(clock_gettime, rt,
1220 [
1221   AC_DEFINE([HAVE_CLOCK_GETTIME],[1],[Define to 1 if you have clock_gettime.])
1222   AC_MSG_CHECKING([whether clock_gettime supports CLOCK_REALTIME])
1223   AC_COMPILE_IFELSE([
1224     AC_LANG_PROGRAM(
1225       [[#include <time.h>]],
1226        [[clockid_t clockType = CLOCK_REALTIME;]])],
1227       [
1228         AC_MSG_RESULT(yes)
1229         AC_DEFINE([HAVE_CLOCK_REALTIME],[1],
1230           [Define to 1 if clock_gettime supports CLOCK_REALTIME.])
1231       ],
1232       AC_MSG_RESULT(no)
1233     )
1234   ],
1235   [
1236     AC_CHECK_FUNCS([gettimeofday ftime], [break])
1237   ]
1238 )
1239
1240 ########
1241 #
1242 # Check for function prototypes
1243 #
1244 ########
1245
1246 AC_CHECK_DECLS([pread, pwrite],[],[],[
1247 #include <unistd.h>])
1248
1249 AC_CHECK_DECLS([strlcpy],[],[],[
1250 #include <strings.h>])
1251
1252 AC_CHECK_DECLS([vsnprintf],[],[],[
1253 #include <stdio.h>
1254 #include <stdarg.h>])
1255
1256 ########
1257 #
1258 # C++ Support Tests (For Magick++)
1259 #
1260 ########
1261 have_magick_plus_plus='no'
1262 if test "$with_magick_plus_plus" = 'yes'; then
1263     OLIBS="$LIBS"
1264     LIBS=''
1265     AC_LANG_PUSH(C++)
1266
1267     # Full set of headers used...
1268     # algorithm cctype cerrno cmath cstdio cstdlib cstring ctime exception
1269     # functional iomanip iosfwd iostream iterator list string strstream utility
1270     AC_LANG([C++])
1271     AC_PROG_CXX
1272     AX_CXX_BOOL
1273     AX_CXX_NAMESPACES
1274     AX_CXX_NAMESPACE_STD
1275     AC_CXX_HAVE_STD_LIBS
1276     AC_OPENMP([C++])
1277     AC_LANG_POP
1278
1279     AC_MSG_CHECKING([whether C++ compiler is sufficient for Magick++])
1280     if \
1281         test $ax_cv_cxx_bool = 'yes' && \
1282         test $ax_cv_cxx_namespaces = 'yes' && \
1283         test $ac_cv_cxx_have_std_libs = 'yes' && \
1284         test $ax_cv_cxx_have_std_namespace = 'yes'; then
1285         have_magick_plus_plus='yes'
1286     else
1287         have_magick_plus_plus='no (failed tests)'
1288     fi
1289     AC_MSG_RESULT([$have_magick_plus_plus])
1290     LIBS="$OLIBS"
1291 fi
1292 AM_CONDITIONAL(WITH_MAGICK_PLUS_PLUS, test "$have_magick_plus_plus" = 'yes')
1293
1294 # Only check for delegate libraries in subdirectories if requested.
1295 if test "$enable_delegate_build" != 'no'; then
1296     # Check for delegate sub-directories and add -I & -L options as required.
1297     # This presumes that delegates are installed as detailed in the ImageMagick
1298     # README. If delegates are installed in a standard location where the
1299     # compiler will automatically find them then these options should not be
1300     # required.
1301
1302     #
1303     # Most delegates have includes in the same directory as the library, but not all...
1304     #
1305     # Includes
1306     for dir in bzlib fftw fpx gslib/src jp2 jp2/src/libjasper/include jbig/libjbig jpeg lcms/include lzma magick mupdf openjp2/include png tiff/libtiff ttf/include wand webp/src wmf/include xml/include zlib; do
1307         if test -d "$builddir/$dir"; then
1308             CPPFLAGS="$CPPFLAGS -I$builddir/$dir"
1309         else
1310             if test -d "$srcdirfull/$dir"; then
1311                 CPPFLAGS="$CPPFLAGS -I$srcdirfull/$dir"
1312             fi
1313         fi
1314     done
1315
1316     # Libraries
1317     for dir in bzlib fftw fpx gslib/src jp2 jp2/src/libjasper jbig/libjbig jpeg lcms/src lzma magick mupdf openjp2 png tiff/libtiff ttf/objs wand webp wmf/src xml zlib; do
1318     if test -d "$builddir/$dir/.libs"; then
1319         LDFLAGS="$LDFLAGS -L$builddir/$dir/.libs"
1320     else
1321         if test -d "$srcdirfull/$dir/.libs"; then
1322             LDFLAGS="$LDFLAGS -L$srcdirfull/$dir/.libs"
1323         fi
1324     fi
1325     if test -d "$builddir/$dir"; then
1326         LDFLAGS="$LDFLAGS -L$builddir/$dir"
1327     else
1328         if test -d "$srcdirfull/$dir"; then
1329             LDFLAGS="$LDFLAGS -L$srcdirfull/$dir"
1330         fi
1331     fi
1332   done
1333 fi
1334
1335 # Assume that delegate headers reside under same directory as ImageMagick
1336 # installation prefix.
1337 MAGICK_CPPFLAGS="-I$INCLUDE_DIR/${PACKAGE_NAME}-$MAGICK_MAJOR_VERSION $MAGICK_CPPFLAGS"
1338
1339 #
1340 # Find the X11 RGB database
1341 #
1342 AC_CACHE_CHECK(for X11 configure files,im_cv_x_configure,
1343 [# Look for the header file in a standard set of common directories.
1344 # Check X11 before X11Rn because it is often a symlink to the current release.
1345     for ac_dir in          \
1346     /lib/usr/lib/X11       \
1347     /usr/X11/lib           \
1348     /usr/X11R4/lib         \
1349     /usr/X11R5/lib         \
1350     /usr/X11R6/lib         \
1351     /usr/X11R7/lib         \
1352     /usr/X386/lib          \
1353     /usr/XFree86/lib/X11   \
1354     /usr/athena/lib        \
1355     /usr/lib               \
1356     /usr/lib/X11           \
1357     /usr/lib/X11R4         \
1358     /usr/lib/X11R5         \
1359     /usr/lib/X11R6         \
1360     /usr/lib/X11R7         \
1361     /usr/local/X11/lib     \
1362     /usr/local/X11R4/lib   \
1363     /usr/local/X11R5/lib   \
1364     /usr/local/X11R6/lib   \
1365     /usr/local/lib         \
1366     /usr/local/lib/X11     \
1367     /usr/local/lib/X11R4   \
1368     /usr/local/lib/X11R5   \
1369     /usr/local/lib/X11R6   \
1370     /usr/local/lib/X11R7   \
1371     /usr/local/x11r5/lib   \
1372     /usr/lpp/Xamples/lib   \
1373     /usr/openwin/lib       \
1374     /usr/openwin/share/lib \
1375     /usr/unsupported/lib   \
1376     /usr/x386/lib          \
1377     ; do
1378     if test -f "$ac_dir/X11/rgb.txt"; then
1379       im_cv_x_configure="$ac_dir/X11/"
1380       break
1381     elif test -f "$ac_dir/rgb.txt"; then
1382       im_cv_x_configure="$ac_dir/"
1383       break
1384     fi
1385
1386   done])
1387 X11_CONFIGURE_PATH="$im_cv_x_configure"
1388 case "${build_os}" in
1389   mingw* )
1390     X11ConfigurePath=`$WinPathScript "$X11ConfigurePath=" 1`
1391   ;;
1392 esac
1393 AC_DEFINE_UNQUOTED(X11_CONFIGURE_PATH,"$X11ConfigurePath",[Location of X11 configure files])
1394
1395 #
1396 # Find OpenMP library
1397 #
1398 GOMP_LIBS=''
1399 if test "$enable_openmp" != 'no'; then
1400   if test "${GCC}" = "yes"; then
1401     # Open64 (passes for GCC but uses different OpenMP implementation)
1402     if test "x$GOMP_LIBS" = x ; then
1403       if $CC --version 2>&1 | grep Open64 > /dev/null ; then
1404         AC_CHECK_LIB(openmp,omp_get_num_procs,GOMP_LIBS="-lopenmp",,)
1405       fi
1406     fi
1407     # GCC
1408     if test "x$GOMP_LIBS" = x ; then
1409       AC_CHECK_LIB(gomp,GOMP_parallel_start,GOMP_LIBS="-lgomp",,)
1410     fi
1411   else
1412     # Sun CC
1413     if test "x$GOMP_LIBS" = x ; then
1414       AC_CHECK_LIB(mtsk,sunw_mp_register_warn,GOMP_LIBS="-lmtsk",,)
1415     fi
1416     # AIX xlc
1417     if test "x$GOMP_LIBS" = x ; then
1418     AC_CHECK_LIB(xlsmp,_xlsmpFlush,GOMP_LIBS="-lxlsmp",,)
1419     fi
1420     # SGI IRIX 6.5 MIPSpro C/C++
1421     if test "x$GOMP_LIBS" = x ; then
1422     AC_CHECK_LIB(mp,mp_destroy,GOMP_LIBS="-lmp",,)
1423     fi
1424   fi
1425   LIBS="$GOMP_LIBS $LIBS"
1426 fi
1427 AC_SUBST(GOMP_LIBS)
1428
1429
1430
1431 #
1432 # Check for umem.
1433 #
1434 have_umem='no'
1435 UMEM_LIBS=''
1436 if test "$with_umem" != 'no'; then
1437   AC_MSG_CHECKING(for UMEM support )
1438   AC_MSG_RESULT()
1439   failed=0
1440   passed=0
1441   AC_CHECK_HEADER(umem.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
1442   AC_CHECK_LIB(umem,umem_alloc,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
1443   AC_CHECK_LIB(umem,umem_free,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
1444   AC_MSG_CHECKING(if umem memory allocation library is complete)
1445   if test $passed -gt 0; then
1446     if test $failed -gt 0; then
1447       AC_MSG_RESULT(no -- some components failed test)
1448       have_umem='no (failed tests)'
1449     else
1450       UMEM_LIBS='-lumem'
1451       LIBS="$UMEM_LIBS $LIBS"
1452       AC_DEFINE(HasUMEM,1,Define if you have umem memory allocation library)
1453       AC_MSG_RESULT(yes)
1454       have_umem='yes'
1455     fi
1456   else
1457     AC_MSG_RESULT(no)
1458   fi
1459 fi
1460 AM_CONDITIONAL(HasUMEM, test "$have_umem" = 'yes')
1461 AC_SUBST(UMEM_LIBS)
1462
1463 #
1464 # Add support for ccmalloc memory debugging library if requested
1465 #
1466 have_ccmalloc='no'
1467 CCMALLOC_LIBS=''
1468 if test "$enable_ccmalloc" = 'yes'; then
1469     AC_PATH_PROG(CCMALLOCDelegate,ccmalloc,)
1470     if test -n "$CCMALLOCDelegate"; then
1471         eval `grep PREFIX= $CCMALLOCDelegate | sed -e 's/PREFIX/CCMALLOC_PREFIX/'`
1472         OLIBS="$LIBS"
1473         # Assume that gcc is used with ccmalloc.
1474         LIBS="$LIBS $CCMALLOC_PREFIX/lib/ccmalloc-gcc.o"
1475        AC_CHECK_LIB(ccmalloc,ccmalloc_malloc,CCMALLOC_LIBS="$CCMALLOC_PREFIX/lib/ccmalloc-gcc.o -lccmalloc -ldl",,-ldl)
1476         if test -n "$CCMALLOC_LIBS"; then
1477             LIBS="$OLIBS"
1478             LIBS="$LIBS $CCMALLOC_LIBS"
1479             have_ccmalloc='yes'
1480         else
1481             LIBS="$OLIBS"
1482         fi
1483     fi
1484 fi
1485
1486 #
1487 # Add support for 'huge pages' if requested
1488 #
1489 AS_IF([test "x$enable_hugepages" != "xno"],[
1490   AC_DEFINE(HAVE_HUGEPAGES, 1, [Compile with hugepage support])
1491 ])
1492
1493 #
1494 # Add support for efence memory debugging library if requested
1495 #
1496 if test "$enable_efence" = 'yes'; then
1497     EFENCE_LIBS='-lefence'
1498     LIBS="$EFENCE_LIBS $LIBS"
1499 fi
1500
1501 dnl ===========================================================================
1502
1503 #
1504 # Check for BZLIB
1505 #
1506
1507 AC_ARG_WITH([bzlib],
1508     [AC_HELP_STRING([--without-bzlib],
1509                     [disable BZLIB support])],
1510     [with_bzlib=$withval],
1511     [with_bzlib='yes'])
1512
1513 if test "$with_bzlib" != 'yes'; then
1514     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-bzlib=$with_bzlib "
1515 fi
1516
1517 have_bzlib='no'
1518 if test "$with_bzlib" != 'no'; then
1519     BZLIB_LIBS=''
1520     AC_MSG_RESULT([-------------------------------------------------------------])
1521     AC_MSG_CHECKING([for BZLIB])
1522     AC_MSG_RESULT([])
1523     failed=0
1524     passed=0
1525     found_libbz=0
1526     AC_CHECK_HEADER(bzlib.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
1527     AC_CHECK_LIB(bz2,BZ2_bzDecompress,found_libbz=`expr $found_libbz + 1`,,)
1528     if test "$native_win32_build" = 'yes'; then
1529       AC_CHECK_LIB(bz2,_imp__BZ2_decompress,found_libbz=`expr $found_libbz + 1`,,)
1530     fi
1531     if test $found_libbz -gt 0; then
1532       passed=`expr $passed + 1`
1533     else
1534       failed=`expr $failed + 1`
1535     fi
1536     AC_MSG_CHECKING(if BZLIB package is complete)
1537     if test $passed -gt 0; then
1538       if test $failed -gt 0; then
1539         AC_MSG_RESULT(no -- some components failed test)
1540         have_bzlib='no (failed tests)'
1541       else
1542         BZLIB_LIBS='-lbz2'
1543         LIBS="$BZLIB_LIBS $LIBS"
1544         AC_DEFINE(BZLIB_DELEGATE,1,Define if you have the bzip2 library)
1545         AC_MSG_RESULT(yes)
1546         have_bzlib='yes'
1547       fi
1548     else
1549       AC_MSG_RESULT(no)
1550     fi
1551 fi
1552 AM_CONDITIONAL(BZLIB_DELEGATE, test "$have_bzlib" = 'yes')
1553 AC_SUBST(BZLIB_LIBS)
1554
1555 #
1556 # Find the X11 include and library directories.
1557 #
1558 IPC_LIBS=''
1559 X11_LIBS=''
1560 XEXT_LIBS=''
1561 XT_LIBS=''
1562 AC_PATH_XTRA
1563 if test "$no_x" != 'yes'; then
1564     AC_MSG_RESULT([-------------------------------------------------------------])
1565     AC_MSG_CHECKING([for X11])
1566     AC_MSG_RESULT([])
1567     LDFLAGS="$LDFLAGS $X_LIBS"
1568     X11_LIBS="$X_PRE_LIBS -lX11 $X_EXTRA_LIBS"
1569     LIBS="$X11_LIBS $LIBS"
1570     CPPFLAGS="$CPPFLAGS $X_CFLAGS"
1571
1572     AC_DEFINE(X11_DELEGATE,1,Define if you have X11 library)dnl
1573
1574     #
1575     # Check for X11 shared memory extension
1576     #
1577     # shmctl is required to support the shared memory extension
1578     AC_CHECK_FUNC([shmctl],[have_shmctl='yes'],[])
1579     if test "$have_shmctl" != 'yes'; then
1580         PERSIST_LIBS=$LIBS
1581         LIBS="$LIBS -lcygipc"
1582         AC_TRY_LINK_FUNC([shmctl],[have_shmctl='yes'; IPC_LIBS='-lcygipc'],[])
1583         LIBS=$PERSIST_LIBS
1584     fi
1585
1586     if test "$have_shmctl" = 'yes'; then
1587         AC_CHECK_LIB([Xext],[XShmAttach],[XEXT_LIBS='-lXext' ; AC_DEFINE(HAVE_SHARED_MEMORY,1,X11 server supports shared memory extension)],[],[])
1588     fi
1589
1590     #
1591     # Check for X11 shape extension
1592     #
1593     AC_CHECK_LIB([Xext],[XShapeCombineMask],[XEXT_LIBS='-lXext' ; AC_DEFINE(HAVE_SHAPE,1,X11 server supports shape extension)],[],[])
1594     AC_CHECK_LIB(Xt,XtSetEventDispatcher,XT_LIBS='-lXt',,)
1595     LIBS="$XEXT_LIBS $XT_LIBS $LIBS"
1596 fi
1597 if test "$no_x" != 'yes'; then
1598   have_x='yes'
1599 else
1600   have_x='no'
1601 fi
1602 AM_CONDITIONAL(X11_DELEGATE, test "$have_x" = 'yes')
1603 AC_SUBST(X11_LIBS)
1604 AC_SUBST(XEXT_LIBS)
1605
1606 dnl ===========================================================================
1607
1608 #
1609 # Check for ZLIB
1610 #
1611 AC_ARG_WITH([zlib],
1612     [AC_HELP_STRING([--without-zlib],
1613                     [disable ZLIB support])],
1614     [with_zlib=$withval],
1615     [with_zlib='yes'])
1616
1617 if test "$with_zlib" != 'yes'; then
1618     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-zlib=$with_zlib "
1619 fi
1620
1621 have_zlib='no'
1622 ZLIB_LIBS=''
1623 dnl PNG requires zlib so enable zlib check if PNG is requested
1624 if test "$with_zlib" != 'no' || test "$with_png" != 'no'; then
1625     AC_MSG_RESULT([-------------------------------------------------------------])
1626     AC_MSG_CHECKING([for ZLIB])
1627     AC_MSG_RESULT([])
1628     ZLIB_LIBS=''
1629     failed=0
1630     passed=0
1631     AC_CHECK_HEADER(zconf.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
1632     AC_CHECK_HEADER(zlib.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
1633     AC_CHECK_LIB(z,compress,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
1634     AC_CHECK_LIB(z,uncompress,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
1635     AC_CHECK_LIB(z,deflate,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
1636     AC_CHECK_LIB(z,inflate,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
1637     AC_CHECK_LIB(z,gzseek,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
1638     AC_CHECK_LIB(z,gztell,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
1639     AC_MSG_CHECKING([if ZLIB package is complete])
1640     if test $passed -gt 0; then
1641         if test $failed -gt 0; then
1642             AC_MSG_RESULT([no -- some components failed test])
1643             have_zlib='no (failed tests)'
1644         else
1645             ZLIB_LIBS='-lz'
1646             LIBS="$ZLIB_LIBS $LIBS"
1647             AC_DEFINE(ZLIB_DELEGATE,1,Define if you have zlib compression library)
1648             AC_MSG_RESULT([yes])
1649             have_zlib='yes'
1650         fi
1651     else
1652         AC_MSG_RESULT([no])
1653     fi
1654 fi
1655 AM_CONDITIONAL(ZLIB_DELEGATE, test "$have_zlib" = 'yes')
1656 AC_SUBST(ZLIB_LIBS)
1657
1658 # whether modules are built or not.
1659 with_ltdl='yes'
1660 have_ltdl='no'
1661 LTDL_LIBS=''
1662 if test "$build_modules" != 'no' ; then
1663   AC_MSG_RESULT([-------------------------------------------------------------])
1664   AC_MSG_CHECKING([for libltdl])
1665   AC_MSG_RESULT([])
1666   failed=0
1667   passed=0
1668   AC_CHECK_HEADER([ltdl.h],[passed=`expr $passed + 1`],[failed=`expr $failed + 1`])
1669   AC_CHECK_LIB([ltdl],[lt_dlinit],[passed=`expr $passed + 1`],[failed=`expr $failed + 1`],)
1670   AC_MSG_CHECKING([if libltdl package is complete])
1671   if test $passed -gt 0 ; then
1672     if test $failed -gt 0 ; then
1673       AC_MSG_RESULT([no -- some components failed test])
1674       have_ltdl='no (failed tests)'
1675     else
1676       LTDL_LIBS='-lltdl'
1677       LIBS="$LTDL_LIBS $LIBS"
1678       AC_DEFINE(LTDL_DELEGATE,1,[Define if using libltdl to support dynamically loadable modules])
1679       AC_MSG_RESULT([yes])
1680       have_ltdl='yes'
1681     fi
1682   else
1683     AC_MSG_RESULT([no])
1684   fi
1685   if test "$have_ltdl" != 'yes' ; then
1686     AC_MSG_FAILURE([libltdl is required for modules build],[1])
1687   fi
1688 fi
1689 AM_CONDITIONAL(WITH_LTDL, test "$have_ltdl" != 'no')
1690
1691 #
1692 # If profiling, then check for -ldl and dlopen (required for Solaris & gcc)
1693 #
1694 LIB_DL=''
1695 if test "$enable_profiling" = 'yes'; then
1696     AC_CHECK_LIB(dl,dlopen,LIB_DL='-ldl',,)
1697     LIBS="$LIB_DL $LIBS"
1698 fi
1699 AC_SUBST(LIB_DL)
1700
1701 dnl ===========================================================================
1702
1703 #
1704 # Check for Autotrace delegate library.
1705 #
1706 AC_ARG_WITH([autotrace],
1707     [AC_HELP_STRING([--with-autotrace],
1708                     [enable autotrace support])],
1709         [with_autotrace=$withval],
1710         [with_autotrace='no'])
1711
1712 if test "$with_autotrace" != 'yes'; then
1713     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-autotrace=$with_autotrace "
1714 fi
1715
1716 have_autotrace='no'
1717 AUTOTRACE_CFLAGS=""
1718 AUTOTRACE_LIBS=""
1719 AUTOTRACE_PKG=""
1720 if test "x$with_autotrace" = "xyes"; then
1721     AC_MSG_RESULT([-------------------------------------------------------------])
1722     PKG_CHECK_MODULES(AUTOTRACE,[autotrace >= 0.31.1], have_autotrace=yes, have_autotrace=no)
1723     AC_MSG_RESULT([])
1724 fi
1725
1726 if test "$have_autotrace" = 'yes'; then
1727     failed=0
1728     AC_DEFINE(AUTOTRACE_DELEGATE,1,Define if you have AUTOTRACE library)
1729     if test "$build_modules" = 'no'; then
1730       CPPFLAGS="$AUTOTRACE_CFLAGS $CPPFLAGS"
1731     fi
1732 fi
1733
1734 AM_CONDITIONAL(AUTOTRACE_DELEGATE,test "$have_autotrace" = 'yes')
1735 AC_SUBST(AUTOTRACE_CFLAGS)
1736 AC_SUBST(AUTOTRACE_LIBS)
1737
1738 dnl ===========================================================================
1739
1740 #
1741 # Check for Display Postscript delegate library.
1742 #
1743 AC_ARG_WITH([dps],
1744     [AC_HELP_STRING([--without-dps],
1745                     [disable Display Postscript support])],
1746     [with_dps=$withval],
1747     [with_dps='yes'])
1748
1749 if test "$with_dps" != 'yes'; then
1750     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-dps=$with_dps "
1751 fi
1752
1753 have_dps='no'
1754 DPS_LIBS=''
1755 if test "$with_dps" != 'no' && test "$with_x" != 'no'; then
1756     AC_MSG_RESULT([-------------------------------------------------------------])
1757     AC_MSG_CHECKING([for DPS])
1758     AC_MSG_RESULT([])
1759     failed=0
1760     passed=0
1761     PERSIST_CPPFLAGS="$CPPFLAGS"
1762     CPPFLAGS="$CPPFLAGS -I${ac_x_includes}/X11"
1763     AC_CHECK_HEADER(DPS/dpsXclient.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
1764     # DPS issues:
1765     # XFree86-4.x needs -lXt to provide XtMalloc for -ldps.
1766     # Cygwin doesn't deliver -lXt as a DLL, which prevents a DLL build.
1767     # Adobe DPS (as delivered on Solaris) doesn't require -lXt.
1768     # ImageMagick itself doesn't use -lXt.
1769     have_libdps='no'
1770     LIBDPS_XT=''
1771     AC_CHECK_LIB(dps,DPSInitialize,have_libdps='yes',have_libdps='no',)
1772     if test "$have_libdps" != 'yes'; then
1773         # Unset cache variable so we can try again.
1774         unset ac_cv_lib_dps_DPSInitialize
1775         AC_CHECK_LIB(dps,DPSInitialize,have_libdps='yes',have_libdps='no',-lXt)
1776         if test "$have_libdps" = 'yes'; then
1777             LIBDPS_XT='-lXt'
1778         fi
1779     fi
1780     if test "$have_libdps" = 'yes'; then
1781         passed=`expr $passed + 1`
1782     else
1783         failed=`expr $failed + 1`
1784     fi
1785     AC_CHECK_LIB(dpstk,XDPSPixelsPerPoint,passed=`expr $passed + 1`,failed=`expr $failed + 1`,-ldps $LIBDPS_XT)
1786     AC_MSG_CHECKING([if DPS package is complete])
1787     if test $passed -gt 0; then
1788         if test $failed -gt 0; then
1789             AC_MSG_RESULT([no -- some components failed test])
1790             have_dps='no (failed tests)'
1791             CPPFLAGS="$PERSIST_CPPFLAGS"
1792         else
1793             DPS_LIBS="-ldpstk -ldps ${LIBDPS_XT}"
1794             LIBS="$DPS_LIBS $LIBS"
1795             AC_DEFINE(DPS_DELEGATE,1,Define if you have Display Postscript)
1796             AC_MSG_RESULT([yes])
1797             have_dps='yes'
1798         fi
1799     else
1800         AC_MSG_RESULT([no])
1801         CPPFLAGS=$PERSIST_CPPFLAGS
1802     fi
1803 fi
1804 AM_CONDITIONAL(DPS_DELEGATE, test "$have_dps" = 'yes')
1805 AC_SUBST(DPS_LIBS)
1806
1807 dnl ===========================================================================
1808
1809 #
1810 # Check for DJVU delegate library.
1811 #
1812 AC_ARG_WITH([djvu],
1813     [AC_HELP_STRING([--without-djvu],
1814                     [disable DjVu support])],
1815     [with_djvu=$withval],
1816     [with_djvu='yes'])
1817
1818 if test "$with_djvu" != 'yes'; then
1819     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-djvu=$with_djvu "
1820 fi
1821
1822 have_djvu='no'
1823 DJVU_LIBS=''
1824 if test "$with_djvu" != 'no'; then
1825     AC_MSG_RESULT([-------------------------------------------------------------])
1826     AC_MSG_CHECKING([for DJVU])
1827     AC_MSG_RESULT([])
1828     failed=0
1829     passed=0
1830     AC_CHECK_HEADER(libdjvu/ddjvuapi.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
1831     AC_CHECK_LIB(djvulibre,ddjvu_context_create,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
1832     AC_MSG_CHECKING([if DJVU package is complete])
1833     if test $passed -gt 0; then
1834         if test $failed -gt 0; then
1835             AC_MSG_RESULT([no -- some components failed test])
1836             have_djvu='no (failed tests)'
1837         else
1838             DJVU_LIBS='-ldjvulibre'
1839             LIBS="$DJVU_LIBS $LIBS"
1840             AC_DEFINE(DJVU_DELEGATE,1,Define if you have DJVU library)
1841             AC_MSG_RESULT([yes])
1842             have_djvu='yes'
1843         fi
1844     else
1845         AC_MSG_RESULT([no])
1846     fi
1847 fi
1848 AM_CONDITIONAL(DJVU_DELEGATE, test "$have_djvu" = 'yes')
1849 AC_SUBST(DJVU_LIBS)
1850
1851 dnl ===========================================================================
1852
1853 #
1854 # Set DejaVu font directory.
1855 #
1856 AC_ARG_WITH([dejavu-font-dir],
1857     [AC_HELP_STRING([--with-dejavu-font-dir=DIR],
1858                     [DejaVu font directory])],
1859     [with_dejavu_font_dir=$withval],
1860     [with_dejavu_font_dir='default'])
1861
1862 if test "$with_dejavu_font_dir" != 'default'; then
1863     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-dejavu-font-dir=$with_dejavu_font_dir "
1864 fi
1865
1866 dnl ===========================================================================
1867
1868 #
1869 # Check for FFTW delegate library.
1870 #
1871 AC_ARG_WITH([fftw],
1872     [AC_HELP_STRING([--without-fftw],
1873                     [disable FFTW support])],
1874     [with_fftw=$withval],
1875     [with_fftw='yes'])
1876
1877 if test "$with_fftw" != 'yes'; then
1878     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-fftw=$with_fftw "
1879 fi
1880
1881 have_fftw='no'
1882 FFTW_LIBS=''
1883 if test "$with_fftw" != 'no'; then
1884     AC_MSG_RESULT([-------------------------------------------------------------])
1885     AC_MSG_CHECKING([for FFTW])
1886     AC_MSG_RESULT([])
1887     failed=0
1888     passed=0
1889     AC_CHECK_HEADER(fftw3.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
1890     AC_CHECK_LIB(fftw3,fftw_execute,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
1891     AC_MSG_CHECKING([if FFTW package is complete])
1892     if test $passed -gt 0; then
1893         if test $failed -gt 0; then
1894             AC_MSG_RESULT([no -- some components failed test])
1895             have_fftw='no (failed tests)'
1896         else
1897             FFTW_LIBS='-lfftw3'
1898             LIBS="$FFTW_LIBS $LIBS"
1899             AC_DEFINE(FFTW_DELEGATE,1,Define if you have FFTW library)
1900             AC_MSG_RESULT([yes])
1901             have_fftw='yes'
1902         fi
1903     else
1904         AC_MSG_RESULT([no])
1905     fi
1906 fi
1907 AM_CONDITIONAL(FFTW_DELEGATE, test "$have_fftw" = 'yes')
1908 AC_SUBST(FFTW_LIBS)
1909
1910 dnl ===========================================================================
1911
1912 #
1913 # Check for FlashPIX delegate library.
1914 #
1915 AC_ARG_WITH([fpx],
1916     [AC_HELP_STRING([--without-fpx],
1917                     [disable FlashPIX support])],
1918     [with_fpx=$withval],
1919     [with_fpx='yes'])
1920
1921 if test "$with_fpx" != 'yes'; then
1922     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-fpx=$with_fpx "
1923 fi
1924
1925 have_fpx='no'
1926 FPX_LIBS=''
1927 if test "$with_fpx" != 'no'; then
1928     AC_MSG_RESULT([-------------------------------------------------------------])
1929     AC_MSG_CHECKING([for FlashPIX])
1930     AC_MSG_RESULT([])
1931     failed=0
1932     passed=0
1933     AC_LANG_PUSH(C++)
1934     AC_CHECK_HEADER(fpxlib.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
1935     AC_CHECK_LIB(fpx,FPX_OpenImageByFilename,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
1936     AC_LANG_POP
1937     AC_MSG_CHECKING([if FlashPIX package is complete])
1938     if test $passed -gt 0; then
1939         if test $failed -gt 0; then
1940             AC_MSG_RESULT([no -- some components failed test])
1941             have_fpx='no (failed tests)'
1942         else
1943             FPX_LIBS='-lfpx'
1944             AC_DEFINE(FPX_DELEGATE,1,Define if you have FlashPIX library)
1945             AC_MSG_RESULT([yes])
1946             have_fpx='yes'
1947             PERLMAINCC="$CXX"
1948         fi
1949     else
1950         AC_MSG_RESULT([no])
1951     fi
1952 fi
1953 AM_CONDITIONAL(FPX_DELEGATE, test "$have_fpx" = 'yes')
1954 AC_SUBST(FPX_LIBS)
1955
1956 dnl ===========================================================================
1957
1958 #
1959 # Check for fontconfig delegate library.
1960 #
1961 AC_ARG_WITH([fontconfig],
1962     [AC_HELP_STRING([--without-fontconfig],
1963                     [disable fontconfig support])],
1964         [with_fontconfig=$withval],
1965         [with_fontconfig='yes'])
1966
1967 if test "$with_fontconfig" != 'yes'; then
1968     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-fontconfig=$with_fontconfig "
1969 fi
1970
1971 have_fontconfig='no'
1972 FONTCONFIG_CFLAGS=""
1973 FONTCONFIG_LIBS=""
1974 FONTCONFIG_PKG=""
1975 if test "x$with_fontconfig" = "xyes"; then
1976     AC_MSG_RESULT([-------------------------------------------------------------])
1977     PKG_CHECK_MODULES(FONTCONFIG,[fontconfig >= 2.1.0], have_fontconfig=yes, have_fontconfig=no)
1978     AC_MSG_RESULT([])
1979 fi
1980
1981 if test "$have_fontconfig" = 'yes'; then
1982   AC_DEFINE(FONTCONFIG_DELEGATE,1,Define if you have FONTCONFIG library)
1983   if test "$build_modules" = 'no'; then
1984     CPPFLAGS="$FONTCONFIG_CFLAGS $CPPFLAGS"
1985   fi
1986 fi
1987
1988 AM_CONDITIONAL(FONTCONFIG_DELEGATE,test "$have_fontconfig" = 'yes')
1989 AC_SUBST(FONTCONFIG_CFLAGS)
1990 AC_SUBST(FONTCONFIG_LIBS)
1991
1992 dnl ===========================================================================
1993
1994 #
1995 # Check for the Freetype delegate library.
1996 #
1997 AC_ARG_WITH([freetype],
1998     [AC_HELP_STRING([--without-freetype],
1999                     [disable Freetype support])],
2000     [with_freetype=$withval],
2001     [with_freetype='yes'])
2002
2003 if test "$with_freetype" != 'yes'; then
2004     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-freetype=$with_freetype "
2005 fi
2006
2007 have_freetype='no'
2008 FREETYPE_CFLAGS=""
2009 FREETYPE_LIBS=""
2010 FREETYPE_PKG=""
2011 if test "x$with_freetype" = "xyes"; then
2012     AC_MSG_RESULT([-------------------------------------------------------------])
2013     PKG_CHECK_MODULES(FREETYPE,[freetype2], have_freetype=yes, have_freetype=no)
2014     AC_MSG_RESULT([])
2015 fi
2016
2017 if test "$have_freetype" = 'yes'; then
2018     AC_DEFINE(FREETYPE_DELEGATE,1,Define if you have FREETYPE library)
2019     CFLAGS="$FREETYPE_CFLAGS $CFLAGS"
2020 fi
2021
2022 AM_CONDITIONAL(FREETYPE_DELEGATE, test "$have_freetype" = 'yes')
2023 AC_SUBST(FREETYPE_CFLAGS)
2024 AC_SUBST(FREETYPE_LIBS)
2025
2026 dnl ===========================================================================
2027
2028 #
2029 # Check for Ghostscript library or framework.
2030 #
2031 # Test for iapi.h & test for gsapi_new_instance in -lgs
2032 # or -framework Ghostscript
2033
2034 AC_ARG_WITH([gslib],
2035     [AC_HELP_STRING([--with-gslib],
2036                     [enable Ghostscript library support])],
2037     [with_gslib=$withval],
2038     [with_gslib='no'])
2039
2040 gslib_framework='no'
2041 if test "$with_gslib" != 'yes'; then
2042     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-gslib=$with_gslib "
2043 fi
2044
2045 have_gslib='no'
2046 GS_LIBS=''
2047 if test "$with_gslib" != 'no'; then
2048     AC_MSG_RESULT([-------------------------------------------------------------])
2049     AC_MSG_CHECKING([for Ghostscript])
2050     AC_MSG_RESULT([])
2051     framework=0
2052     failed=0
2053     passed=0
2054     AC_CHECK_HEADER(ghostscript/iapi.h,passed=`expr $passed + 1`,
2055         failed=`expr $failed + 1`,)
2056     AC_CHECK_HEADER(ghostscript/ierrors.h,passed=`expr $passed + 1`,
2057         failed=`expr $failed + 1`,)
2058     AC_CHECK_FRAMEWORK(Ghostscript,gsapi_new_instance,framework=`expr $framework + 1`,
2059     AC_CHECK_LIB(gs,gsapi_new_instance,passed=`expr $passed + 1`,failed=`expr $failed + 1`,),)
2060     AC_MSG_CHECKING([if Ghostscript package is complete])
2061     if test $passed -gt 0; then
2062         if test $failed -gt 0; then
2063             AC_MSG_RESULT([no -- some components failed test])
2064             have_gslib='no (failed tests)'
2065         else
2066             if test $framework -gt 0; then
2067                 GS_LIBS='-framework Ghostscript'
2068                 gslib_framework='yes'
2069                 AC_MSG_RESULT([yes, using framework.])
2070             else
2071                 AC_MSG_RESULT([yes, using library.])
2072                 GS_LIBS='-lgs'
2073             fi
2074             LIBS="$GS_LIBS $LIBS"
2075             AC_DEFINE(GS_DELEGATE,1,Define if you have Ghostscript library or framework)
2076             have_gslib='yes'
2077         fi
2078     else
2079         AC_MSG_RESULT([no])
2080     fi
2081 fi
2082 AM_CONDITIONAL(GS_DELEGATE, test "$have_gslib" = 'yes')
2083 AC_SUBST(GS_LIBS)
2084
2085 # Set default font search path
2086 AC_ARG_WITH([fontpath],
2087     [AC_HELP_STRING([--with-fontpath=DIR],
2088                     [prepend to default font search path])],
2089     [with_fontpath=$withval],
2090     [with_fontpath=''])
2091
2092 if test "$with_fontpath" != "yes" && test -z "$with_fontpath"; then
2093     with_fontpath=''
2094 else
2095     AC_DEFINE_UNQUOTED(MAGICK_FONT_PATH,"$with_fontpath",[Define to prepend to default font search path.])
2096 fi
2097 if test "$with_fontpath=" != ''; then
2098     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-fontpath=$with_fontpath "
2099 fi
2100
2101 # Set Ghostscript font directory
2102 AC_ARG_WITH([gs-font-dir],
2103     [AC_HELP_STRING([--with-gs-font-dir=DIR],
2104                     [Ghostscript font directory])],
2105     [with_gs_font_dir=$withval],
2106     [with_gs_font_dir='default'])
2107
2108 if test "$with_gs_font_dir" != 'default'; then
2109     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-gs-font-dir=$with_gs_font_dir "
2110 fi
2111
2112 dnl ===========================================================================
2113
2114 #
2115 # Check for GVC delegate library.
2116 #
2117 AC_ARG_WITH(gvc,
2118     [AC_HELP_STRING([--with-gvc],
2119                     [enable GVC support])],
2120     [with_gvc=$withval],
2121     [with_gvc='no'])
2122
2123 if test "$with_gvc" != 'yes'; then
2124     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-gvc=$with_gvc "
2125 fi
2126
2127 GVC_PKG=""
2128 if test "x$with_gvc" = "xyes"; then
2129     AC_MSG_RESULT([-------------------------------------------------------------])
2130     PKG_CHECK_MODULES(GVC,[libgvc >= 2.9.0], have_gvc=yes, have_gvc=no)
2131     AC_MSG_RESULT([])
2132 fi
2133
2134 if test "$have_gvc" = 'yes'; then
2135     AC_DEFINE(GVC_DELEGATE,1,Define if you have GVC library)
2136     if test "$build_modules" = 'no'; then
2137         CPPFLAGS="$GVC_CFLAGS $CPPFLAGS"
2138     fi
2139 fi
2140
2141 AM_CONDITIONAL(GVC_DELEGATE, test "$have_gvc" = 'yes')
2142 AC_SUBST(GVC_CFLAGS)
2143 AC_SUBST(GVC_LIBS)
2144
2145 dnl ===========================================================================
2146
2147 #
2148 # Check for JBIG delegate library.
2149 #
2150
2151 AC_ARG_WITH([jbig],
2152     [AC_HELP_STRING([--without-jbig],
2153                     [disable JBIG support])],
2154     [with_jbig=$withval],
2155     [with_jbig='yes'])
2156
2157 have_jbig='no'
2158 JBIG_LIBS=''
2159 if test "$with_jbig" != 'no'; then
2160     AC_MSG_RESULT([-------------------------------------------------------------])
2161     AC_MSG_CHECKING([for JBIG])
2162     AC_MSG_RESULT([])
2163     failed=0
2164     passed=0
2165     AC_CHECK_HEADER(jbig.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
2166     AC_CHECK_LIB(jbig,jbg_dec_init,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
2167     AC_MSG_CHECKING([if JBIG package is complete])
2168     if test $passed -gt 0; then
2169         if test $failed -gt 0; then
2170             AC_MSG_RESULT([no -- some components failed test])
2171             have_jbig='no (failed tests)'
2172         else
2173             JBIG_LIBS='-ljbig'
2174             LIBS="$JBIG_LIBS $LIBS"
2175             AC_DEFINE(JBIG_DELEGATE,1,Define if you have JBIG library)
2176             AC_MSG_RESULT([yes])
2177             have_jbig='yes'
2178         fi
2179     else
2180         AC_MSG_RESULT([no])
2181     fi
2182 fi
2183 AM_CONDITIONAL(JBIG_DELEGATE, test "$have_jbig" = 'yes')
2184 AC_SUBST(JBIG_LIBS)
2185
2186 dnl ===========================================================================
2187
2188 #
2189 # Check for JPEG delegate library.
2190 #
2191 AC_ARG_WITH([jpeg],
2192     [AC_HELP_STRING([--without-jpeg],
2193                     [disable JPEG support])],
2194     [with_jpeg=$withval],
2195     [with_jpeg='yes'])
2196
2197 if test "$with_jpeg" != 'yes'; then
2198     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-jpeg=$with_jpeg "
2199 fi
2200
2201 have_jpeg='no'
2202 JPEG_LIBS=''
2203 if test "$with_jpeg" != 'no'; then
2204     AC_MSG_RESULT([-------------------------------------------------------------])
2205     AC_MSG_CHECKING([for JPEG])
2206     AC_MSG_RESULT([])
2207     failed=0
2208     passed=0
2209     AC_CHECK_HEADER(jconfig.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
2210     AC_CHECK_HEADER(jerror.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
2211     AC_CHECK_HEADER(jmorecfg.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
2212     AC_CHECK_HEADER(jpeglib.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
2213     AC_CHECK_LIB(jpeg,jpeg_read_header,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
2214
2215 # Test for compatible JPEG library
2216 if test "$ac_cv_jpeg_version_ok" != 'yes'; then
2217 AC_CACHE_CHECK(for JPEG library is version 6b or later, ac_cv_jpeg_version_ok,
2218 [AC_TRY_COMPILE(
2219 #include <stdio.h>
2220 #include <stdlib.h>
2221 #include <jpeglib.h>
2222 ,
2223 changequote(<<, >>)dnl
2224 <<
2225 #if JPEG_LIB_VERSION < 62
2226 #error IJG JPEG library must be version 6b or newer!
2227 #endif
2228 return 0;
2229 >>,
2230 changequote([, ])dnl
2231 ac_cv_jpeg_version_ok='yes'; passed=`expr $passed + 1`,
2232 ac_cv_jpeg_version_ok='no'; failed=`expr $failed + 1`)])
2233 fi
2234     AC_MSG_CHECKING([if JPEG package is complete])
2235     if test $passed -gt 0; then
2236         if test $failed -gt 0; then
2237             AC_MSG_RESULT([no -- some components failed test])
2238             have_jpeg='no (failed tests)'
2239         else
2240             JPEG_LIBS='-ljpeg'
2241             LIBS="$JPEG_LIBS $LIBS"
2242             AC_DEFINE(JPEG_DELEGATE,1,Define if you have JPEG library)
2243             AC_MSG_RESULT([yes])
2244             have_jpeg='yes'
2245         fi
2246     else
2247         AC_MSG_RESULT([no])
2248     fi
2249 fi
2250 AM_CONDITIONAL(JPEG_DELEGATE, test "$have_jpeg" = 'yes')
2251 AC_SUBST(JPEG_LIBS)
2252
2253 dnl ===========================================================================
2254
2255 #
2256 # Check for LCMS delegate library.
2257 #
2258 # Disable LCMS.
2259 AC_ARG_WITH(lcms,
2260         [  --without-lcms          disable lcms (v1.1X) support],
2261         [with_lcms=$withval],
2262         [with_lcms='yes'])
2263 if test "$with_lcms" != 'yes' ; then
2264     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-lcms=$with_lcms "
2265 fi
2266
2267 # Disable LCMS2.
2268 AC_ARG_WITH(lcms2,
2269         [  --without-lcms2         disable lcms (v2.X) support],
2270         [with_lcms2=$withval],
2271         [with_lcms2='yes'])
2272 if test "$with_lcms2" != 'yes' ; then
2273     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-lcms2=$with_lcms2 "
2274 fi
2275
2276 have_lcms2='no'
2277 LCMS_LIBS=''
2278 if test "$with_lcms2" != 'no'; then
2279     AC_MSG_RESULT([-------------------------------------------------------------])
2280     AC_MSG_CHECKING([for LCMS v2])
2281     AC_MSG_RESULT()
2282     failed=0
2283     passed=0
2284     have_lcms_header='no'
2285
2286     # Check for <lcms2.h>
2287     AC_CHECK_HEADER(lcms2.h,have_lcms_header='yes',,)
2288     if test "$have_lcms_header" = 'yes'; then
2289        AC_DEFINE(HAVE_LCMS2_H,1,Define if you have the <lcms2.h> header file.)
2290        passed=`expr $passed + 1`
2291     fi
2292
2293     # Check for <lcms2/lcms2.h)
2294     if test "$have_lcms_header" != 'yes'; then
2295       AC_CHECK_HEADER(lcms2/lcms2.h,have_lcms_header='yes',,)
2296       if test "$have_lcms_header" = 'yes'; then
2297         passed=`expr $passed + 1`
2298         AC_DEFINE(HAVE_LCMS2_LCMS2_H,1,Define if you have the <lcms2/lcms2.h> header file.)
2299       fi
2300     fi
2301
2302     # Failed to find lcms header?
2303     if test "$have_lcms_header" != 'yes'; then
2304       failed=`expr $failed + 1`
2305     fi
2306
2307     AC_CHECK_LIB(lcms2,cmsSetLogErrorHandler,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
2308     AC_MSG_CHECKING(if LCMS v2 package is complete)
2309     if test $passed -gt 0; then
2310       if test $failed -gt 0; then
2311         AC_MSG_RESULT(no -- some components failed test)
2312         have_lcms2='no (failed tests)'
2313       else
2314         LCMS_LIBS='-llcms2'
2315         LIBS="$LCMS_LIBS $LIBS"
2316         AC_MSG_RESULT(yes)
2317         have_lcms2='yes'
2318       fi
2319     else
2320       AC_MSG_RESULT(no)
2321     fi
2322 fi
2323
2324 #
2325 # Check for LCMS v1 (1.11 or later)
2326 #
2327 if test $have_lcms2 = 'yes'; then
2328   with_lcms='no'
2329 fi
2330
2331 have_lcms='no'
2332 if test "$with_lcms" != 'no'; then
2333     AC_MSG_RESULT([-------------------------------------------------------------])
2334     AC_MSG_CHECKING([for LCMS v1.1X])
2335     AC_MSG_RESULT()
2336     failed=0
2337     passed=0
2338     have_lcms_header='no'
2339
2340     # Check for <lcms.h>
2341     if test "$have_lcms_header" != 'yes'; then
2342       AC_CHECK_HEADER(lcms.h,have_lcms_header='yes',,)
2343       if test "$have_lcms_header" = 'yes'; then
2344         passed=`expr $passed + 1`
2345         AC_DEFINE(HAVE_LCMS_H,1,Define if you have the <lcms.h> header file.)
2346       fi
2347     fi
2348
2349     # Check for <lcms/lcms.h>
2350     if test "$have_lcms_header" != 'yes'; then
2351       AC_CHECK_HEADER(lcms/lcms.h,have_lcms_header='yes',,)
2352       if test "$have_lcms_header" = 'yes'; then
2353         passed=`expr $passed + 1`
2354         AC_DEFINE(HAVE_LCMS_LCMS_H,1,Define if you have the <lcms/lcms.h> header file.)
2355       fi
2356     fi
2357
2358     # Failed to find lcms header?
2359     if test "$have_lcms_header" != 'yes'; then
2360       failed=`expr $failed + 1`
2361     fi
2362
2363     AC_CHECK_LIB(lcms,cmsSetErrorHandler,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
2364     AC_MSG_CHECKING(if LCMS package is complete)
2365     if test $passed -gt 0; then
2366       if test $failed -gt 0; then
2367         AC_MSG_RESULT(no -- some components failed test)
2368         have_lcms='no (failed tests)'
2369       else
2370         LCMS_LIBS='-llcms'
2371         LIBS="$LCMS_LIBS $LIBS"
2372         AC_MSG_RESULT(yes)
2373         have_lcms='yes'
2374       fi
2375     else
2376       AC_MSG_RESULT(no)
2377     fi
2378 fi
2379
2380 AM_CONDITIONAL(LCMS_DELEGATE, test "$have_lcms2" = 'yes' -o "$have_lcms" = 'yes')
2381 if test "$have_lcms2" = 'yes' -o "$have_lcms" = 'yes'; then
2382   AC_DEFINE(LCMS_DELEGATE,1,[Define if you have LCMS (v1.11 or later) library])
2383 fi
2384 AC_SUBST(LCMS_LIBS)
2385
2386
2387 dnl ===========================================================================
2388
2389 #
2390 # Check for the OpenJP2 delegate library.
2391 #
2392 AC_ARG_WITH([openjp2],
2393     [AC_HELP_STRING([--without-openjp2],
2394                     [disable OpenJP2 support])],
2395     [with_openjp2=$withval],
2396     [with_openjp2='yes'])
2397
2398 if test "$with_openjp2" != 'yes'; then
2399     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-openjp2=$with_openjp2 "
2400 fi
2401
2402 have_openjp2='no'
2403 LIBOPENJP2_CFLAGS=""
2404 LIBOPENJP2_LIBS=""
2405 LIBOPENJP2_PKG=""
2406 if test "x$with_openjp2" = "xyes"; then
2407     AC_MSG_RESULT([-------------------------------------------------------------])
2408     PKG_CHECK_MODULES(LIBOPENJP2,[libopenjp2 >= 2.0.0], have_openjp2=yes, have_openjp2=no)
2409     AC_MSG_RESULT([])
2410 fi
2411
2412 if test "$have_openjp2" = 'yes'; then
2413     AC_DEFINE(LIBOPENJP2_DELEGATE,1,Define if you have OPENJP2 library)
2414     if test "$build_modules" = 'no'; then
2415         CFLAGS="$LIBOPENJP2_CFLAGS $CFLAGS"
2416     fi
2417 fi
2418
2419 AM_CONDITIONAL(LIBOPENJP2_DELEGATE, test "$have_openjp2" = 'yes')
2420 AC_SUBST(LIBOPENJP2_CFLAGS)
2421 AC_SUBST(LIBOPENJP2_LIBS)
2422
2423
2424 dnl ===========================================================================
2425
2426 #
2427 # Check for the LQR (Liquid Rescale) delegate library.
2428 #
2429 AC_ARG_WITH([lqr],
2430     [AC_HELP_STRING([--without-lqr],
2431                     [disable Liquid Rescale support])],
2432     [with_lqr=$withval],
2433     [with_lqr='yes'])
2434
2435 if test "$with_lqr" != 'yes'; then
2436     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-lqr=$with_lqr "
2437 fi
2438
2439 have_lqr='no'
2440 LQR_CFLAGS=""
2441 LQR_LIBS=""
2442 LQR_PKG=""
2443 if test "x$with_lqr" = "xyes"; then
2444     AC_MSG_RESULT([-------------------------------------------------------------])
2445     PKG_CHECK_MODULES(LQR,[lqr-1 >= 0.1.0], have_lqr=yes, have_lqr=no)
2446     AC_MSG_RESULT([])
2447 fi
2448
2449 if test "$have_lqr" = 'yes'; then
2450     AC_DEFINE(LQR_DELEGATE,1,Define if you have LQR library)
2451     CFLAGS="$LQR_CFLAGS $CFLAGS"
2452 fi
2453
2454 AM_CONDITIONAL(LQR_DELEGATE, test "$have_lqr" = 'yes')
2455 AC_SUBST(LQR_CFLAGS)
2456 AC_SUBST(LQR_LIBS)
2457
2458 dnl ===========================================================================
2459
2460 # Disable LZMA (lzma library)
2461 AC_ARG_WITH(lzma,
2462             [  --without-lzma          disable LZMA support],
2463             [with_lzma=$withval],
2464             [with_lzma='yes'])
2465 if test "$with_lzma" != 'yes' ; then
2466     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-lzma=$with_lzma "
2467 fi
2468
2469 LZMA_PKG=""
2470 if test "x$with_lzma" = "xyes"; then
2471     AC_MSG_RESULT([-------------------------------------------------------------])
2472     PKG_CHECK_MODULES(LZMA,[liblzma >= 2.9.0], have_lzma=yes, have_lzma=no)
2473     AC_MSG_RESULT([])
2474 fi
2475
2476 if test "$have_lzma" = 'yes'; then
2477     AC_DEFINE(LZMA_DELEGATE,1,Define if you have LZMA library)
2478     if test "$build_modules" = 'no'; then
2479         CPPFLAGS="$LZMA_CFLAGS $CPPFLAGS"
2480     fi
2481 fi
2482
2483 AM_CONDITIONAL(LZMA_DELEGATE, test "$have_lzma" = 'yes')
2484 AC_SUBST(LZMA_CFLAGS)
2485 AC_SUBST(LZMA_LIBS)
2486
2487 dnl ===========================================================================
2488
2489 #
2490 # Check for MUPDF delegate library.
2491 #
2492 AC_ARG_WITH(mupdf,
2493     [AC_HELP_STRING([--with-mupdf],
2494                     [enable MUPDF support])],
2495     [with_mupdf=$withval],
2496     [with_mupdf='no'])
2497
2498 if test "$with_mupdf" != 'yes'; then
2499     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-mupdf=$with_mupdf "
2500 fi
2501
2502 have_mupdf='no'
2503 MUPDF_LIBS=''
2504 if test "$with_mupdf" != 'no'; then
2505     AC_MSG_RESULT([-------------------------------------------------------------])
2506     AC_MSG_CHECKING([for MUPDF])
2507     AC_MSG_RESULT([])
2508     failed=0
2509     passed=0
2510     AC_CHECK_HEADER(mupdf/fitz.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
2511     AC_CHECK_LIB(mupdf,fz_new_context,passed=`expr $passed + 1`,failed=`expr $failed + 1`,-lmupdf $FREETYPE_LIBS)
2512     AC_MSG_CHECKING([if MUPDF package is complete])
2513     if test $passed -gt 0; then
2514         if test $failed -gt 0; then
2515             AC_MSG_RESULT([no -- some components failed test])
2516             have_mupdf='no (failed tests)'
2517         else
2518             MUPDF_LIBS='-lmupdf'
2519             LIBS="$MUPDF_LIBS $LIBS"
2520             AC_DEFINE(MUPDF_DELEGATE,1,Define if you have MUPDF library)
2521             AC_MSG_RESULT([yes])
2522             have_mupdf='yes'
2523         fi
2524     else
2525         AC_MSG_RESULT([no])
2526     fi
2527 fi
2528 AM_CONDITIONAL(MUPDF_DELEGATE,test "$have_mupdf" = 'yes')
2529 AC_SUBST(MUPDF_LIBS)
2530
2531 dnl ===========================================================================
2532
2533 #
2534 # Check for the OpenEXR delegate library.
2535 #
2536 AC_ARG_WITH([openexr],
2537     [AC_HELP_STRING([--without-openexr],
2538                     [disable OpenEXR support])],
2539     [with_openexr=$withval],
2540     [with_openexr='yes'])
2541
2542 if test "$with_openexr" != 'yes'; then
2543     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-openexr=$with_openexr "
2544 fi
2545
2546 have_openexr='no'
2547 OPENEXR_CFLAGS=""
2548 OPENEXR_LIBS=""
2549 OPENEXR_PKG=""
2550 if test "x$with_openexr" = "xyes"; then
2551     AC_MSG_RESULT([-------------------------------------------------------------])
2552     PKG_CHECK_MODULES(OPENEXR,[OpenEXR >= 1.0.6], have_openexr=yes, have_openexr=no)
2553     AC_MSG_RESULT([])
2554 fi
2555
2556 if test "$have_openexr" = 'yes'; then
2557     AC_DEFINE(OPENEXR_DELEGATE,1,Define if you have OPENEXR library)
2558     if test "$build_modules" = 'no'; then
2559         CFLAGS="$OPENEXR_CFLAGS $CFLAGS"
2560     fi
2561 fi
2562
2563 AM_CONDITIONAL(OPENEXR_DELEGATE, test "$have_openexr" = 'yes')
2564 AC_SUBST(OPENEXR_CFLAGS)
2565 AC_SUBST(OPENEXR_LIBS)
2566
2567 dnl ===========================================================================
2568
2569 #
2570 # Check for PANGO delegate library.
2571 #
2572 AC_ARG_WITH([pango],
2573     [AC_HELP_STRING([--without-pango],
2574                     [disable PANGO support])],
2575     [with_pango=$withval],
2576     [with_pango='yes'])
2577
2578 if test "$with_pango" != 'yes'; then
2579     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-pango=$with_pango "
2580 fi
2581
2582 have_pango='no'
2583 have_pangocairo='no'
2584 PANGO_CFLAGS=""
2585 PANGO_LIBS=""
2586 PANGO_PKG=""
2587 if test "x$with_pango" = "xyes"; then
2588     AC_MSG_RESULT([-------------------------------------------------------------])
2589     PKG_CHECK_MODULES(PANGO, [pangocairo >= 1.28.1], have_pangocairo=yes, have_pangocairo=no)
2590     AC_MSG_RESULT([])
2591     PKG_CHECK_MODULES(PANGO, [pango >= 1.28.1], have_pango=yes, have_pango=no)
2592     AC_MSG_RESULT([])
2593 fi
2594
2595 if test "$have_pango" = 'yes'; then
2596     AC_DEFINE(PANGO_DELEGATE,1,Define if you have PANGO library)
2597     if test "$build_modules" = 'no'; then
2598         CPPFLAGS="$PANGO_CFLAGS $CPPFLAGS"
2599     fi
2600 fi
2601
2602 if test "$have_pangocairo" = 'yes'; then
2603     AC_DEFINE(PANGOCAIRO_DELEGATE,1,Define if you have PANGOCAIRO library)
2604     if test "$build_modules" = 'no'; then
2605         CPPFLAGS="$PANGOCAIRO_CFLAGS $CPPFLAGS"
2606     fi
2607 fi
2608
2609 AM_CONDITIONAL(PANGO_DELEGATE, test "$have_pango" = 'yes')
2610 AM_CONDITIONAL(PANGOCAIRO_DELEGATE, test "$have_pangocairo" = 'yes')
2611 AC_SUBST(PANGO_CFLAGS)
2612 AC_SUBST(PANGO_LIBS)
2613
2614 dnl ===========================================================================
2615
2616 #
2617 # Check for PNG delegate library.
2618 #
2619 AC_ARG_WITH(png,
2620     [AC_HELP_STRING([--without-png],
2621                     [disable PNG support])],
2622     [with_png=$withval],
2623     [with_png='yes'])
2624
2625 if test "$with_png" != 'yes'; then
2626     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-png=$with_png "
2627 fi
2628
2629 have_png='no'
2630 PNG_LIBS=''
2631
2632 if test "$with_png" != 'no' -a  "$have_zlib" != 'no' ; then
2633   AC_MSG_RESULT([-------------------------------------------------------------])
2634   AC_MSG_CHECKING(for PNG support )
2635   AC_MSG_RESULT()
2636   failed=0
2637   passed=0
2638   AC_CHECK_HEADER(png.h,passed=`expr $passed + 1`,
2639      failed=`expr $failed + 1`,)
2640
2641   if test $passed -gt 0; then
2642     for var in 7 6 5 4 2 '' ; do
2643       if test "$have_png" = 'no' ; then
2644         if test "x${var}" = 'x' ; then
2645           pnglib='png'
2646         else
2647           pnglib="png1${var}"
2648         fi
2649
2650 #       Test for compatible LIBPNG library
2651         failed=0
2652         passed=0
2653         if test "$with_png" = 'yes' -o "$with_png" = "libpng1${var}" ; then
2654           if test "${pnglib}" != 'png' ; then
2655             AC_MSG_CHECKING(for LIBPNG1${var} support )
2656             AC_TRY_COMPILE(
2657 #include <stdio.h>
2658 #include <stdlib.h>
2659 #include <png.h>
2660 ,
2661 changequote(<<, >>)dnl
2662 <<
2663 #if PNG_LIBPNG_VER_MINOR != ${var}
2664 #error LIBPNG library must be version 1${var}!
2665 Kaboom, Kaboom
2666 #endif
2667 return 0;
2668 >>,
2669             changequote([, ])dnl
2670             ac_cv_libpng_ok='yes',
2671             ac_cv_libpng_ok='no')
2672             if test "$ac_cv_libpng_ok" = 'yes' ; then
2673               passed=`expr $passed + 1`
2674               AC_MSG_RESULT(yes)
2675             else
2676               failed=`expr $failed + 1`
2677               AC_MSG_RESULT(no)
2678             fi
2679           else
2680             passed=`expr $passed + 1`
2681             AC_MSG_RESULT(yes)
2682           fi
2683         fi
2684
2685         if test $passed -gt 0 -a $failed -le 0; then
2686           if test "1${var}" = '17' ; then
2687             AC_CHECK_LIB(png17,png_get_io_ptr,passed=`expr $passed + 1`,
2688                failed=`expr $failed + 1`,)
2689             AC_CHECK_LIB(png17,png_longjmp,passed=`expr $passed + 1`,
2690                failed=`expr $failed + 1`,)
2691           fi
2692           if test "1${var}" = '16' ; then
2693             AC_CHECK_LIB(png16,png_get_io_ptr,passed=`expr $passed + 1`,
2694                failed=`expr $failed + 1`,)
2695             AC_CHECK_LIB(png16,png_longjmp,passed=`expr $passed + 1`,
2696                failed=`expr $failed + 1`,)
2697           fi
2698           if test "1${var}" = '15' ; then
2699             AC_CHECK_LIB(png15,png_get_io_ptr,passed=`expr $passed + 1`,
2700                failed=`expr $failed + 1`,)
2701             AC_CHECK_LIB(png15,png_longjmp,passed=`expr $passed + 1`,
2702                failed=`expr $failed + 1`,)
2703           fi
2704           if test "1${var}" = '14' ; then
2705             AC_CHECK_LIB(png14,png_get_io_ptr,passed=`expr $passed + 1`,
2706                failed=`expr $failed + 1`,)
2707             AC_CHECK_LIB(png14,png_get_io_state,passed=`expr $passed + 1`,
2708                failed=`expr $failed + 1`,)
2709           fi
2710           if test "1${var}" = '12' ; then
2711             AC_CHECK_LIB(png12,png_get_io_ptr,passed=`expr $passed + 1`,
2712                failed=`expr $failed + 1`,)
2713           fi
2714           if test "1${var}" = '1' ; then
2715               AC_CHECK_LIB(png,png_get_io_ptr,passed=`expr $passed + 1`,
2716                  failed=`expr $failed + 1`,)
2717           fi
2718           if test $passed -gt 0 -a $failed -le 0 ; then
2719             AC_MSG_CHECKING(if ${pnglib} package is complete)
2720             if test $passed -gt 0 ; then
2721               if test $failed -gt 0 ; then
2722                   AC_MSG_RESULT(no -- some components failed test)
2723                   have_png='no (failed tests)'
2724               else
2725                   PNG_LIBS="-l${pnglib}"
2726                   LIBS="$PNG_LIBS $LIBS"
2727                   AC_DEFINE(PNG_DELEGATE,1,Define if you have PNG library)
2728                   AC_MSG_RESULT(yes)
2729                   have_png='yes'
2730               fi
2731             fi
2732           fi
2733         fi
2734       fi
2735     done
2736   fi
2737 fi
2738
2739 AM_CONDITIONAL(PNG_DELEGATE,test "$have_png" = 'yes')
2740 AC_SUBST(PNG_LIBS)
2741
2742
2743 dnl ===========================================================================
2744
2745 #
2746 # Check for RSVG delegate library.
2747 #
2748 AC_ARG_WITH([rsvg],
2749     [AC_HELP_STRING([--with-rsvg],
2750                     [enable RSVG support])],
2751     [with_rsvg=$withval],
2752     [with_rsvg='no'])
2753
2754 if test "$with_rsvg" != 'yes'; then
2755     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-rsvg=$with_rsvg "
2756 fi
2757
2758 have_rsvg='no'
2759 have_cairo='no'
2760 RSVG_CFLAGS=""
2761 RSVG_LIBS=""
2762 RSVG_PKG=""
2763 if test "x$with_rsvg" = "xyes"; then
2764     AC_MSG_RESULT([-------------------------------------------------------------])
2765     PKG_CHECK_MODULES(RSVG,[librsvg-2.0 >= 2.9.0], have_rsvg=yes, have_rsvg=no)
2766     AC_MSG_RESULT([])
2767     PKG_CHECK_MODULES(CAIRO_SVG, cairo-svg, have_cairo=yes, have_cairo=no)
2768     AC_MSG_RESULT([])
2769 fi
2770
2771 if test "$have_rsvg" = 'yes'; then
2772     AC_DEFINE(RSVG_DELEGATE,1,Define if you have RSVG library)
2773     if test "$build_modules" = 'no'; then
2774         CPPFLAGS="$RSVG_CFLAGS $CPPFLAGS"
2775     fi
2776 fi
2777
2778 if test "$have_cairo" = 'yes'; then
2779     AC_DEFINE(CAIRO_DELEGATE,1,Define if you have CAIRO library)
2780     if test "$build_modules" = 'no'; then
2781         CPPFLAGS="$CAIRO_SVG_CFLAGS $CPPFLAGS"
2782     fi
2783 fi
2784
2785 AM_CONDITIONAL(RSVG_DELEGATE, test "$have_rsvg" = 'yes')
2786 AM_CONDITIONAL(CAIRO_DELEGATE, test "$have_cairo" = 'yes')
2787 AC_SUBST(RSVG_CFLAGS)
2788 AC_SUBST(RSVG_LIBS)
2789
2790 dnl ===========================================================================
2791
2792 #
2793 # Check for TIFF delegate library.
2794 #
2795 AC_ARG_WITH([tiff],
2796     [AC_HELP_STRING([--without-tiff],
2797                     [disable TIFF support])],
2798     [with_tiff=$withval],
2799     [with_tiff='yes'])
2800
2801 if test "$with_tiff" != 'yes'; then
2802     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-tiff=$with_tiff "
2803 fi
2804
2805 have_tiff='no'
2806 TIFF_LIBS=''
2807 if test "$with_tiff" != 'no'; then
2808     AC_MSG_RESULT([-------------------------------------------------------------])
2809     AC_MSG_CHECKING([for TIFF])
2810     AC_MSG_RESULT([])
2811     failed=0
2812     passed=0
2813     AC_CHECK_HEADER(tiff.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
2814     AC_CHECK_HEADER(tiffio.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
2815     AC_CHECK_LIB(tiff,TIFFOpen,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
2816     AC_CHECK_LIB(tiff,TIFFClientOpen,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
2817     AC_CHECK_LIB(tiff,TIFFIsByteSwapped,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
2818     AC_CHECK_LIB(tiff,TIFFReadRGBATile,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
2819     AC_CHECK_LIB(tiff,TIFFReadRGBAStrip,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
2820     AC_MSG_CHECKING([if TIFF package is complete])
2821     if test $passed -gt 0; then
2822         if test $failed -gt 0; then
2823             AC_MSG_RESULT([no -- some components failed test])
2824             have_tiff='no (failed tests)'
2825         else
2826             TIFF_LIBS='-ltiff'
2827             LIBS="$TIFF_LIBS $LIBS"
2828             AC_DEFINE(TIFF_DELEGATE,1,Define if you have TIFF library)
2829             AC_MSG_RESULT([yes])
2830             have_tiff='yes'
2831             AC_CHECK_HEADERS(tiffconf.h)
2832             AC_CHECK_FUNCS([TIFFIsCODECConfigured TIFFMergeFieldInfo \
2833               TIFFIsBigEndian TIFFReadEXIFDirectory TIFFSetErrorHandlerExt \
2834               TIFFSetTagExtender TIFFSetWarningHandlerExt \
2835               TIFFSwabArrayOfTriples])
2836         fi
2837     else
2838         AC_MSG_RESULT([no])
2839     fi
2840 fi
2841 AM_CONDITIONAL(TIFF_DELEGATE, test "$have_tiff" = 'yes')
2842 AC_SUBST(TIFF_LIBS)
2843
2844 dnl ===========================================================================
2845
2846 #
2847 # Check for WEBP delegate library.
2848 #
2849 AC_ARG_WITH(webp,
2850     [AC_HELP_STRING([--without-webp],
2851                     [disable WEBP support])],
2852     [with_webp=$withval],
2853     [with_webp='yes'])
2854
2855 if test "$with_webp" != 'yes'; then
2856     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-webp=$with_webp "
2857 fi
2858
2859 have_webp='no'
2860 WEBP_LIBS=''
2861 if test "$with_webp" != 'no'; then
2862     AC_MSG_RESULT([-------------------------------------------------------------])
2863     AC_MSG_CHECKING([for WEBP])
2864     AC_MSG_RESULT([])
2865     failed=0
2866     passed=0
2867     AC_CHECK_HEADER(webp/decode.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
2868     AC_CHECK_LIB(webp,WebPPictureInitInternal,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
2869     AC_MSG_CHECKING([if WEBP package is complete])
2870     if test $passed -gt 0; then
2871         if test $failed -gt 0; then
2872             AC_MSG_RESULT([no -- some components failed test])
2873             have_webp='no (failed tests)'
2874         else
2875             WEBP_LIBS='-lwebp'
2876             LIBS="$WEBP_LIBS $LIBS"
2877             AC_DEFINE(WEBP_DELEGATE,1,Define if you have WEBP library)
2878             AC_MSG_RESULT([yes])
2879             have_webp='yes'
2880         fi
2881     else
2882         AC_MSG_RESULT([no])
2883     fi
2884 fi
2885 AM_CONDITIONAL(WEBP_DELEGATE,test "$have_webp" = 'yes')
2886 AC_SUBST(WEBP_LIBS)
2887
2888 dnl ===========================================================================
2889
2890 #
2891 # Set Windows font directory.
2892 #
2893 AC_ARG_WITH([windows-font-dir],
2894     [AC_HELP_STRING([--with-windows-font-dir=DIR],
2895                     [directory containing MS-Windows fonts])],
2896                     [with_windows_font_dir=$withval],
2897                     [with_windows_font_dir=''])
2898 if test "$with_windows_font_dir" != '' ; then
2899     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-windows-font-dir=$with_windows_font_dir "
2900 fi
2901
2902 dnl ===========================================================================
2903
2904 #
2905 # Check for WMF delegate library.
2906 #
2907 AC_ARG_WITH([wmf],
2908     [AC_HELP_STRING([--with-wmf],
2909                     [enable WMF support])],
2910     [with_wmf=$withval],
2911     [with_wmf='no'])
2912
2913 if test "$with_wmf" != 'yes'; then
2914     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-wmf=$with_wmf "
2915 fi
2916
2917 have_wmf='no'
2918 WMF_LIBS=''
2919 WMF_LIBS_DEPS=''
2920 OLIBS="$LIBS"
2921 if test "$with_wmf" != 'no'; then
2922     AC_MSG_RESULT([-------------------------------------------------------------])
2923     AC_MSG_CHECKING([for WMF])
2924     AC_MSG_RESULT([])
2925     have_libwmf='no'
2926     have_libwmflite='no'
2927     have_libwmf_ipa_h='no'
2928
2929     AC_CHECK_HEADER([libwmf/ipa.h],[have_libwmf_ipa_h='yes'],,[$FT2BUILD_H])
2930     if test "$have_libwmf_ipa_h" = 'yes'; then
2931         AC_CHECK_LIB(wmflite,wmf_lite_create,have_libwmflite='yes',,)
2932         if test "$have_libwmflite" = 'yes'; then
2933             AC_DEFINE(WMFLITE_DELEGATE,1,Define if you have wmflite library)
2934             WMF_LIBS='-lwmflite'
2935             LIBS="$WMF_LIBS $LIBS"
2936             have_wmf='yes'
2937         else
2938             WMF_LIBS_DEPS=''
2939             WMF_CONFIG_LIBS=`libwmf-config --libs`
2940             for lib in xml2 expat freetype jpeg png z; do
2941                 testlib="-l${lib}"
2942                 echo "$WMF_CONFIG_LIBS" | grep -- "$testlib" > /dev/null && WMF_LIBS_DEPS="$WMF_LIBS_DEPS $testlib"
2943             done
2944             AC_CHECK_LIB(wmf,wmf_api_create,have_libwmf='yes',,$WMF_LIBS_DEPS)
2945             if test "$have_libwmf" = 'yes'; then
2946                 AC_DEFINE(WMF_DELEGATE,1,Define if you have wmf library)
2947                 WMF_LIBS='-lwmf'
2948                 LIBS="$WMF_LIBS $LIBS"
2949                 have_wmf='yes'
2950             else
2951                 AC_MSG_RESULT([no -- some components failed test])
2952                 have_wmf='no (failed tests)'
2953                 have_wmflite='no (failed tests)'
2954                 LIBS="$OLIBS"
2955                 WMF_LIBS=''
2956             fi
2957         fi
2958     fi
2959     AC_MSG_CHECKING([if WMF package is complete])
2960     if test "$have_wmf" = 'yes'; then
2961         AC_MSG_RESULT([yes])
2962     else
2963         AC_MSG_RESULT([no])
2964     fi
2965 fi
2966 AM_CONDITIONAL(WMF_DELEGATE, test "$have_wmf" = 'yes')
2967 AC_SUBST(WMF_LIBS)
2968 AC_SUBST(WMF_LIBS_DEPS)
2969
2970
2971 dnl ===========================================================================
2972
2973 #
2974 # Check for XML delegate library.
2975 #
2976 AC_ARG_WITH([xml],
2977     [AC_HELP_STRING([--without-xml],
2978                     [disable XML support])],
2979     [with_xml=$withval],
2980     [with_xml='yes'])
2981
2982 if test "$with_xml" != 'yes' ; then
2983     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-xml=$with_xml "
2984 fi
2985
2986 have_xml='no'
2987 XML_LIBS=''
2988 if test "$with_xml" != 'no'; then
2989     AC_MSG_RESULT([-------------------------------------------------------------])
2990     AC_MSG_CHECKING([for XML])
2991     AC_MSG_RESULT([])
2992     PERSIST_LDFLAGS=$LDFLAGS
2993     PERSIST_CPPFLAGS=$CPPFLAGS
2994     xml2_config=''
2995     AC_PATH_PROG(xml2_config,xml2-config,)dnl
2996     if test -n "$xml2_config"; then
2997         # Debian installs libxml headers under /usr/include/libxml2/libxml with
2998         # the shared library installed under /usr/lib, whereas the package
2999         # installs itself under $prefix/libxml and $prefix/lib.
3000         xml2_prefix=`xml2-config --prefix`
3001         if test -d "${xml2_prefix}/include/libxml2"; then
3002             CPPFLAGS="$CPPFLAGS -I${xml2_prefix}/include/libxml2"
3003         fi
3004         if test "${xml2_prefix}" != '/usr'; then
3005             LDFLAGS="$LDFLAGS -L${xml2_prefix}/lib"
3006         fi
3007     fi
3008     failed=0
3009     passed=0
3010     AC_CHECK_HEADER(libxml/parser.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
3011     AC_CHECK_LIB(xml2,xmlSAXVersion,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
3012     AC_CHECK_LIB(xml2,xmlParseChunk,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
3013     AC_CHECK_LIB(xml2,xmlCreatePushParserCtxt,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
3014     AC_MSG_CHECKING([if XML package is complete])
3015     if test $passed -gt 0; then
3016         if test $failed -gt 0; then
3017             AC_MSG_RESULT([no -- some components failed test])
3018             have_xml='no (failed tests)'
3019             LDFLAGS="$PERSIST_LDFLAGS"
3020             CPPFLAGS="$PERSIST_CPPFLAGS"
3021         else
3022             XML_LIBS='-lxml2'
3023             LIBS="$XML_LIBS $LIBS"
3024             AC_DEFINE(XML_DELEGATE,1,Define if you have XML library)
3025             AC_MSG_RESULT([yes])
3026             have_xml='yes'
3027         fi
3028     else
3029         AC_MSG_RESULT([no])
3030     fi
3031 fi
3032 AM_CONDITIONAL(XML_DELEGATE,test "$have_xml" = 'yes')
3033 AC_SUBST(XML_LIBS)
3034
3035 dnl ===========================================================================
3036
3037 # Substitute compiler name to build/link PerlMagick
3038 #
3039 AC_SUBST(PERLMAINCC)
3040
3041 #
3042 # Configure install Paths
3043 #
3044
3045 # Path to ImageMagick header files
3046 INCLUDE_RELATIVE_PATH="${PACKAGE_NAME}-${MAGICK_MAJOR_VERSION}"
3047 INCLUDE_PATH="${INCLUDE_DIR}/${INCLUDE_RELATIVE_PATH}"
3048 DEFINE_INCLUDE_PATH="${INCLUDE_DIR}/${INCLUDE_RELATIVE_PATH}/"
3049 case "${build_os}" in
3050   mingw* )
3051     DEFINE_INCLUDE_PATH=`$WinPathScript "$DEFINE_INCLUDE_PATH" 1`
3052     ;;
3053 esac
3054 AC_DEFINE_UNQUOTED(INCLUDE_PATH,"$DEFINE_INCLUDE_PATH",[Directory where ImageMagick headers live.])
3055 AC_SUBST(INCLUDE_PATH)
3056
3057 # Path to ImageMagick header files (arch part)
3058 INCLUDEARCH_PATH="${INCLUDEARCH_DIR}/${INCLUDE_RELATIVE_PATH}"
3059 DEFINE_INCLUDEARCH_PATH="${INCLUDEARCH_DIR}/${INCLUDE_RELATIVE_PATH}/"
3060 case "${build_os}" in
3061   mingw* )
3062     DEFINE_INCLUDEARCH_PATH=`$WinPathScript "$DEFINE_INCLUDEARCH_PATH" 1`
3063     ;;
3064 esac
3065 AC_DEFINE_UNQUOTED(INCLUDEARCH_PATH,"$DEFINE_INCLUDE_PATH",[Directory where ImageMagick architecture headers live.])
3066 AC_SUBST(INCLUDEARCH_PATH)
3067
3068 # Subdirectory under lib to place ImageMagick lib files
3069 LIBRARY_RELATIVE_PATH="${PACKAGE_NAME}-${PACKAGE_VERSION}"
3070 AC_DEFINE_UNQUOTED(LIBRARY_RELATIVE_PATH,"$LIBRARY_RELATIVE_PATH",[Subdirectory of lib where ImageMagick architecture dependent files are installed.])
3071
3072 # Path to ImageMagick bin directory
3073 EXECUTABLE_PATH="${BIN_DIR}"
3074 DEFINE_EXECUTABLE_PATH="${BIN_DIR}/"
3075 case "${build_os}" in
3076   mingw* )
3077     DEFINE_EXECUTABLE_PATH=`$WinPathScript "$DEFINE_EXECUTABLE_PATH" 1`
3078     ;;
3079 esac
3080 AC_DEFINE_UNQUOTED(EXECUTABLE_PATH,"$DEFINE_EXECUTABLE_PATH",[Directory where executables are installed.])
3081 AC_SUBST(EXECUTABLE_PATH)
3082
3083 # Path to ImageMagick lib
3084 LIBRARY_PATH="${LIB_DIR}/${LIBRARY_RELATIVE_PATH}"
3085 DEFINE_LIBRARY_PATH="${LIB_DIR}/${LIBRARY_RELATIVE_PATH}/"
3086 case "${build_os}" in
3087   mingw* )
3088     DEFINE_LIBRARY_PATH=`$WinPathScript "$DEFINE_LIBRARY_PATH" 1`
3089     ;;
3090 esac
3091 AC_DEFINE_UNQUOTED(LIBRARY_PATH,"$DEFINE_LIBRARY_PATH",[Directory where architecture-dependent files live.])
3092 AC_SUBST(LIBRARY_PATH)
3093
3094 #
3095 # path to local binaries
3096 if test "x$LIB_BIN_BASEDIRNAME" = "x"; then
3097    LIB_BIN_BASEDIRNAME="bin"
3098 fi
3099 AC_DEFINE_UNQUOTED(LIB_BIN_BASEDIRNAME,"$LIB_BIN_BASEDIRNAME",[Binaries in libraries path base name (will be during install linked to bin)])
3100 AC_SUBST(LIB_BIN_BASEDIRNAME)
3101
3102 if test "x$LIB_BIN_DIR" = "x"; then
3103    LIB_BIN_DIR=${LIB_BIN_BASEDIRNAME}-${MAGICK_ABI_SUFFIX}
3104 fi
3105 AC_SUBST(LIB_BIN_DIR)
3106
3107 LIB_BIN_DIR_RELATIVE_PATH=$LIB_BIN_DIR
3108 AC_SUBST(LIB_BIN_DIR_RELATIVE_PATH)
3109 LIB_BIN_DIR_PATH="${LIBRARY_PATH}/${LIB_BIN_DIR_RELATIVE_PATH}"
3110 AC_SUBST(LIB_BIN_DIR_PATH)
3111
3112 #
3113 # path to modules lib
3114 if test "x$MODULES_BASEDIRNAME" = "x"; then
3115    MODULES_BASEDIRNAME="modules"
3116 fi
3117 AC_DEFINE_UNQUOTED(MODULES_BASEDIRNAME,"$MODULES_BASEDIRNAME",[Module directory name without ABI part.])
3118 AC_SUBST(MODULES_BASEDIRNAME)
3119
3120 if test "x$MODULES_DIRNAME" = "x"; then
3121   MODULES_DIRNAME=${MODULES_BASEDIRNAME}-${MAGICK_ABI_SUFFIX}
3122 else
3123   AC_DEFINE_UNQUOTED(MODULES_DIRNAME,"$MODULES_DIRNAME",[Module directory dirname])
3124 fi
3125 AC_SUBST(MODULES_DIRNAME)
3126
3127 MODULES_RELATIVE_PATH="${MODULES_DIRNAME}"
3128 AC_SUBST(MODULES_RELATIVE_PATH)
3129 MODULES_PATH="${LIBRARY_PATH}/${MODULES_RELATIVE_PATH}"
3130 AC_SUBST(MODULES_PATH)
3131
3132 #
3133 # path to coders lib
3134 if test "x$CODER_DIRNAME" = "x"; then
3135    CODER_DIRNAME="coders"
3136 fi
3137 AC_DEFINE_UNQUOTED(CODER_DIRNAME,"$CODER_DIRNAME",[coders subdirectory.])
3138 AC_SUBST(CODER_DIRNAME)
3139
3140 CODER_RELATIVE_PATH="${CODER_DIRNAME}"
3141 CODER_PATH="${MODULES_PATH}/${CODER_DIRNAME}"
3142 AC_SUBST(CODER_PATH)
3143
3144 #
3145 # Subdirectory under lib to place ImageMagick filter module files
3146 #
3147 # path to coders lib
3148 if test "x$FILTER_DIRNAME" = "x"; then
3149    FILTER_DIRNAME="filters"
3150 fi
3151 AC_DEFINE_UNQUOTED(FILTER_DIRNAME,"$FILTER_DIRNAME",[filter subdirectory.])
3152 AC_SUBST(FILTER_DIRNAME)
3153
3154 FILTER_RELATIVE_PATH="${FILTER_DIRNAME}"
3155 FILTER_PATH="${MODULES_PATH}/${FILTER_DIRNAME}"
3156 AC_SUBST(FILTER_PATH)
3157
3158 #
3159 # Path to ImageMagick documentation files
3160 DOCUMENTATION_RELATIVE_PATH="${PACKAGE_NAME}-${MAGICK_MAJOR_VERSION}"
3161 DOCUMENTATION_PATH="${DOC_DIR}/${DOCUMENTATION_RELATIVE_PATH}"
3162 DEFINE_DOCUMENTATION_PATH="${DOC_DIR}/${DOCUMENTATION_RELATIVE_PATH}/"
3163 case "${build_os}" in
3164   mingw* )
3165     DEFINE_DOCUMENTATION_PATH=`$WinPathScript "$DEFINE_DOCUMENTATION_PATH" 1`
3166     ;;
3167 esac
3168 AC_DEFINE_UNQUOTED(DOCUMENTATION_PATH,"$DEFINE_DOCUMENTATION_PATH",[Directory where ImageMagick documents live.])
3169 AC_SUBST(DOCUMENTATION_PATH)
3170
3171 # Subdirectory to place architecture-dependent configuration files
3172 CONFIGURE_RELATIVE_PATH="${PACKAGE_NAME}-${MAGICK_MAJOR_VERSION}"
3173 AC_DEFINE_UNQUOTED(CONFIGURE_RELATIVE_PATH,"$CONFIGURE_RELATIVE_PATH",[Subdirectory of lib where architecture-dependent configuration files live.])
3174 CONFIGURE_PATH="${SYSCONF_DIR}/${CONFIGURE_RELATIVE_PATH}/"
3175 DEFINE_CONFIGURE_PATH="${SYSCONF_DIR}/${CONFIGURE_RELATIVE_PATH}/"
3176 case "${build_os}" in
3177   mingw* )
3178     DEFINE_CONFIGURE_PATH=`$WinPathScript "$DEFINE_CONFIGURE_PATH" 1`
3179     ;;
3180 esac
3181 AC_DEFINE_UNQUOTED(CONFIGURE_PATH,"$DEFINE_CONFIGURE_PATH",[Directory where architecture-dependent configuration files live.])
3182 AC_SUBST(CONFIGURE_PATH)
3183
3184 # Subdirectory to place architecture-independent configuration files
3185 SHARE_RELATIVE_PATH="${PACKAGE_NAME}-${MAGICK_MAJOR_VERSION}"
3186 AC_DEFINE_UNQUOTED(SHARE_RELATIVE_PATH,"$SHARE_RELATIVE_PATH",[Subdirectory of lib where architecture-independent configuration files live.])
3187 SHARE_PATH="${DATA_DIR}/${SHARE_RELATIVE_PATH}"
3188 DEFINE_SHARE_PATH="${DATA_DIR}/${SHARE_RELATIVE_PATH}/"
3189 case "${build_os}" in
3190   mingw* )
3191     DEFINE_SHARE_PATH=`$WinPathScript "$DEFINE_SHARE_PATH" 1`
3192     ;;
3193 esac
3194 AC_DEFINE_UNQUOTED(SHARE_PATH,"$DEFINE_SHARE_PATH",[Directory where architecture-independent configuration files live.])
3195 AC_SUBST(SHARE_PATH)
3196
3197 #
3198 # Subdirectory to place architecture-dependent configuration files.
3199 if test "x$SHAREARCH_BASEDIRNAME" = "x"; then
3200    SHAREARCH_BASEDIRNAME="config"
3201 fi
3202 AC_DEFINE_UNQUOTED(SHAREARCH_BASEDIRNAME,"$SHAREARCH_BASEDIRNAME",[Sharearch directory name without ABI part.])
3203 AC_SUBST(SHAREARCH_BASEDIRNAME)
3204
3205 if test "x$SHAREARCH_DIRNAME" = "x"; then
3206   SHAREARCH_DIRNAME=${SHAREARCH_BASEDIRNAME}-${MAGICK_ABI_SUFFIX}
3207 else
3208   AC_DEFINE_UNQUOTED(SHAREARCH_DIRNAME,"$SHAREARCH_DIRNAME",[Sharearch directory dirname])
3209 fi
3210 AC_SUBST(SHAREARCH_DIRNAME)
3211
3212 SHAREARCH_RELATIVE_PATH="${SHAREARCH_DIRNAME}"
3213 AC_SUBST(SHAREARCH_RELATIVE_PATH)
3214 SHAREARCH_PATH="${LIBRARY_PATH}/${SHAREARCH_RELATIVE_PATH}"
3215 AC_SUBST(SHAREARCH_PATH)
3216
3217 #
3218 # program_transform_name is formed for use in a Makefile, so create a
3219 # modified version for use in a shell script.
3220 configure_transform_name=`echo ${program_transform_name} | sed 's,\\$\\$,$,'`
3221
3222 # Default delegate definitions
3223 AC_MSG_RESULT([-------------------------------------------------------------])
3224 AC_MSG_CHECKING([for ImageMagick delegate programs])
3225 AC_MSG_RESULT([])
3226 AutotraceDecodeDelegateDefault='autotrace'
3227 BlenderDecodeDelegateDefault='blender'
3228 BZIPDelegateDefault='bzip2'
3229 BrowseDelegateDefault='xdg-open'
3230 CatDelegateDefault='cat'
3231 DNGDecodeDelegateDefault='ufraw-batch'
3232 GVCDecodeDelegateDefault='dot'
3233 DVIDecodeDelegateDefault='dvips'
3234 EchoDelegateDefault='echo'
3235 EditorDelegateDefault='xterm'
3236 ConvertDelegateDefault=`echo convert | sed ${configure_transform_name}`
3237 DisplayDelegateDefault=`echo display | sed ${configure_transform_name}`
3238 MogrifyDelegateDefault=`echo mogrify | sed ${configure_transform_name}`
3239 GnuplotDecodeDelegateDefault='gnuplot'
3240 HPGLDecodeDelegateDefault='hp2xx'
3241 HTMLDecodeDelegateDefault='html2ps'
3242 ILBMDecodeDelegateDefault='ilbmtoppm'
3243 ILBMEncodeDelegateDefault='ppmtoilbm'
3244 JXRDecodeDelegateDefault='JxrDecApp'
3245 JXREncodeDelegateDefault='JxrEncApp'
3246 LPDelegateDefault='lp'
3247 LPRDelegateDefault='lpr'
3248 LaunchDelegateDefault='gimp'
3249 MANDelegateDefault='groff'
3250 MPEGDecodeDelegateDefault='avconv'
3251 MPEGEncodeDelegateDefault='avconv'
3252 MrSIDDecodeDelegateDefault='mrsidgeodecode'
3253 MVDelegateDefault='mv'
3254 PCLDelegateDefault='pcl6'
3255 PGPDecodeDelegateDefault='pgpv'
3256 POVDelegateDefault='povray'
3257 if test "$native_win32_build" = 'yes'; then
3258     PSDelegateDefault='gswin32c'
3259 elif test "$gslib_framework" = 'yes'; then
3260     PSDelegateDefault='gsc'
3261 else
3262     PSDelegateDefault='gs'
3263 fi
3264 RLEEncodeDelegateDefault='rawtorle'
3265 RMDelegateDefault='rm'
3266 RSVGDecodeDelegateDefault='rsvg-convert'
3267 SCANDecodeDelegateDefault='scanimage'
3268 SVGDecodeDelegateDefault='inkscape'
3269 TXTDelegateDefault='enscript'
3270 UniconvertorDelegateDefault='uniconvertor'
3271 WebPDecodeDelegateDefault='dwebp'
3272 WebPEncodeDelegateDefault='cwebp'
3273 WMFDecodeDelegateDefault='wmf2eps'
3274 WWWDecodeDelegateDefault='curl'
3275 XPSDelegateDefault='gxps'
3276 ZipDelegateDefault='gzip'
3277
3278 # Search for delegates
3279 AC_PATH_PROG(AutotraceDecodeDelegate, "$AutotraceDecodeDelegateDefault", "$AutotraceDecodeDelegateDefault")
3280 AC_PATH_PROG(BlenderDecodeDelegate, "$BlenderDecodeDelegateDefault", "$BlenderDecodeDelegateDefault")
3281 AC_PATH_PROG(BZIPDelegate, "$BZIPDelegateDefault", "$BZIPDelegateDefault")
3282 AC_PATH_PROGS(BrowseDelegate, "$BrowseDelegateDefault" google-chrome firefox konqueror mozilla lynx, "$BrowseDelegateDefault")
3283 AC_PATH_PROG(CatDelegate, "$CatDelegateDefault", "$CatDelegateDefault")
3284 AC_PATH_PROG(DNGDecodeDelegate, "$DNGDecodeDelegateDefault", "$DNGDecodeDelegateDefault")
3285 AC_PATH_PROG(GVCDecodeDelegate, "$GVCDecodeDelegateDefault", "$GVCDecodeDelegateDefault")
3286 AC_PATH_PROG(DVIDecodeDelegate, "$DVIDecodeDelegateDefault", "$DVIDecodeDelegateDefault")
3287 AC_PATH_PROG(EchoDelegate, "$EchoDelegateDefault", "$EchoDelegateDefault")
3288 AC_PATH_PROG(EditorDelegate, "$EditorDelegateDefault", "$EditorDelegateDefault")
3289 AC_PATH_PROG(ConvertDelegate, "$ConvertDelegateDefault", "$ConvertDelegateDefault")
3290 AC_PATH_PROG(DisplayDelegate, "$DisplayDelegateDefault", "$DisplayDelegateDefault")
3291 AC_PATH_PROG(MogrifyDelegate, "$MogrifyDelegateDefault", "$MogrifyDelegateDefault")
3292 AC_PATH_PROG(GnuplotDecodeDelegate, "$GnuplotDecodeDelegateDefault", "$GnuplotDecodeDelegateDefault")
3293 AC_PATH_PROG(HPGLDecodeDelegate, "$HPGLDecodeDelegateDefault", "$HPGLDecodeDelegateDefault")
3294 AC_PATH_PROG(HTMLDecodeDelegate, "$HTMLDecodeDelegateDefault", "$HTMLDecodeDelegateDefault")
3295 AC_PATH_PROG(ILBMDecodeDelegate, "$ILBMDecodeDelegateDefault", "$ILBMDecodeDelegateDefault")
3296 AC_PATH_PROG(ILBMEncodeDelegate, "$ILBMEncodeDelegateDefault", "$ILBMEncodeDelegateDefault")
3297 AC_PATH_PROG(JXRDecodeDelegate, "$JXRDecodeDelegateDefault", "$JXRDecodeDelegateDefault")
3298 AC_PATH_PROG(JXREncodeDelegate, "$JXREncodeDelegateDefault", "$JXREncodeDelegateDefault")
3299 AC_PATH_PROG(LPDelegate, "$LPDelegateDefault", no)
3300 AC_PATH_PROG(LPRDelegate, "$LPRDelegateDefault", "$LPRDelegateDefault")
3301 AC_PATH_PROG(LaunchDelegate, "$LaunchDelegateDefault", "$LaunchDelegateDefault")
3302 AC_PATH_PROG(MANDelegate, "$MANDelegateDefault", "$MANDelegateDefault")
3303 AC_PATH_PROG(MPEGDecodeDelegate, "$MPEGDecodeDelegateDefault", "$MPEGDecodeDelegateDefault")
3304 if test "$MPEGDecodeDelegate" == "$MPEGDecodeDelegateDefault" ; then
3305   MPEGDecodeDelegateDefault='ffmpeg'
3306   AC_PATH_PROG(MPEGDecodeDelegate, "$MPEGDecodeDelegateDefault", "$MPEGDecodeDelegateDefault")
3307 fi;
3308 AC_PATH_PROG(MPEGEncodeDelegate, "$MPEGEncodeDelegateDefault", "$MPEGEncodeDelegateDefault")
3309 if test "$MPEGEncodeDelegate" == "$MPEGEncodeDelegateDefault" ; then
3310   MPEGEncodeDelegateDefault='ffmpeg'
3311   AC_PATH_PROG(MPEGEncodeDelegate, "$MPEGEncodeDelegateDefault", "$MPEGEncodeDelegateDefault")
3312 fi;
3313 AC_PATH_PROG(MrSIDDecodeDelegate, "$MrSIDDecodeDelegateDefault", "$MrSIDDecodeDelegateDefault")
3314 AC_PATH_PROG(MVDelegate, "$MVDelegateDefault", "$MVDelegateDefault")
3315 AC_PATH_PROG(PCLDelegate, "$PCLDelegateDefault", "$PCLDelegateDefault")
3316 AC_PATH_PROG(PGPDecodeDelegate, "$PGPDecodeDelegateDefault", "$PGPDecodeDelegateDefault")
3317 AC_PATH_PROG(POVDelegate, "$POVDelegateDefault", "$POVDelegateDefault")
3318 AC_PATH_PROGS(PSDelegate, gsx gsc "$PSDelegateDefault", "$PSDelegateDefault")
3319 AC_PATH_PROG(RLEEncodeDelegate, "$RLEEncodeDelegateDefault", "$RLEEncodeDelegateDefault")
3320 AC_PATH_PROG(RMDelegate, "$RMDelegateDefault", "$RMDelegateDefault")
3321 AC_PATH_PROG(RSVGDecodeDelegate, "$RSVGDecodeDelegateDefault", "$RSVGDecodeDelegateDefault")
3322 AC_PATH_PROG(SCANDecodeDelegate, "$SCANDecodeDelegateDefault", "$SCANDecodeDelegateDefault")
3323 AC_PATH_PROG(SVGDecodeDelegate, "$SVGDecodeDelegateDefault", "$SVGDecodeDelegateDefault")
3324 AC_PATH_PROG(TXTDelegate, "$TXTDelegateDefault", "$TXTDelegateDefault")
3325 AC_PATH_PROG(UniconvertorDelegate, "$UniconvertorDelegateDefault", "$UniconvertorDelegateDefault")
3326 AC_PATH_PROG(WebPDecodeDelegate, "$WebPDecodeDelegateDefault", "$WebPDecodeDelegateDefault")
3327 AC_PATH_PROG(WebPEncodeDelegate, "$WebPEncodeDelegateDefault", "$WebPEncodeDelegateDefault")
3328 AC_PATH_PROG(WMFDecodeDelegate, "$WMFDecodeDelegateDefault", "$WMFDecodeDelegateDefault")
3329 AC_PATH_PROG(WWWDecodeDelegate, "$WWWDecodeDelegateDefault", "$WWWDecodeDelegateDefault")
3330 AC_PATH_PROG(XPSDelegate, "$XPSDelegateDefault", "$XPSDelegateDefault")
3331 AC_PATH_PROG(ZipDelegate, "$ZipDelegateDefault", "$ZipDelegateDefault")
3332
3333 # Prefer lpr to lp; lp needs options tacked on.
3334 if test "$LPRDelegate" != no; then
3335     PrintDelegate="$LPRDelegate"
3336 else
3337     PrintDelegate="$LPDelegate -c -s"
3338 fi
3339 AC_SUBST(PrintDelegate)
3340
3341 # Installed ImageMagick utiltity paths
3342 ConvertDelegate="${BIN_DIR}/${ConvertDelegateDefault}"
3343 DisplayDelegate="${BIN_DIR}/${DisplayDelegateDefault}"
3344 MogrifyDelegate="${BIN_DIR}/${MogrifyDelegateDefault}"
3345
3346 # Set delegate booleans
3347 have_avconv='no'; if test "$MPEGDecodeDelegate" != "$MPEGDecodeDelegateDefault" ; then have_avconv='yes'; fi
3348 have_gs='no'         ; if test "$PSDelegate" != "$PSDelegateDefault"; then have_gs='yes'; fi
3349 have_hp2xx='no'      ; if test "$HPGLDecodeDelegate" !=  "$HPGLDecodeDelegateDefault" ; then have_hp2xx='yes'; fi
3350 have_ilbmtoppm='no'  ; if test "$ILBMDecodeDelegate" != "$ILBMDecodeDelegateDefault" ; then have_ilbmtoppm='yes'; fi
3351 have_mrsid='no'; if test "$MrSIDDecodeDelegate" != "$MrSIDDecodeDelegateDefault" ; then have_mrsid='yes'; fi
3352 have_pcl='no'        ; if test "$PCLDelegate" != "$PCLDelegateDefault"; then have_pcl='yes'; fi
3353 have_ppmtoilbm='no'  ; if test "$ILBMEncodeDelegate" != "$ILBMEncodeDelegateDefault" ; then have_ppmtoilbm='yes'; fi
3354 have_xps='no'        ; if test "$XPSDelegate" != "$XPSDelegateDefault"; then have_xps='yes'; fi
3355
3356 #
3357 # Test for font directories
3358 #
3359 type_include_files=''
3360
3361 # Dejavu fonts.
3362 AC_MSG_CHECKING(for Dejavu fonts directory)
3363 dejavu_font_dir=''
3364 if test "${with_dejavu_font_dir}" != 'default'; then
3365   dejavu_font_dir="${with_dejavu_font_dir}/"
3366 else
3367   for font_dir in "${prefix}/share/dejavu/fonts/" '/usr/share/fonts/dejavu/'; do
3368     if test -f "${font_dir}DejaVuSerif.ttf"; then
3369       dejavu_font_dir="${font_dir}"
3370       break 1
3371     fi
3372   done
3373 fi
3374 if test "${dejavu_font_dir}x" != 'x'; then
3375   type_include_files="${type_include_files} "'<include file="type-dejavu.xml" />'
3376   AC_MSG_RESULT([$dejavu_font_dir])
3377 else
3378   AC_MSG_RESULT([not found!]);
3379 fi
3380 AC_SUBST(dejavu_font_dir)
3381
3382 # Windows
3383 windows_font_dir=''
3384 if test "$with_windows_font_dir" != "no" && test -n "$with_windows_font_dir"; then
3385    windows_font_dir="${with_windows_font_dir}/"
3386 fi
3387 if test "${windows_font_dir}x" != 'x'; then
3388     if test -f '/usr/X11R6/lib/X11/fonts/truetype/arial.ttf'; then
3389       windows_font_dir='/usr/X11R6/lib/X11/fonts/truetype/'
3390     fi
3391     if test -f '/usr/X11R7/lib/X11/fonts/truetype/arial.ttf'; then
3392       windows_font_dir='/usr/X11R7/lib/X11/fonts/truetype/'
3393     fi
3394     if test -f '/usr/share/fonts/msttcore/arial.ttf'; then
3395       windows_font_dir='/usr/share/fonts/msttcore/truetype/'
3396     fi
3397 fi
3398 if test "${windows_font_dir}x" != 'x'; then
3399   type_include_files="$type_include_files "'<include file="type-windows.xml" />'
3400 fi
3401 AC_SUBST(windows_font_dir)
3402
3403 # Ghostscript
3404 AC_MSG_CHECKING(for Ghostscript fonts directory)
3405 ghostscript_font_dir=''
3406 if test "${with_gs_font_dir}" != 'default'; then
3407   ghostscript_font_dir="${with_gs_font_dir}/"
3408 else
3409   if test "${native_win32_build}" = 'yes'; then
3410     # Native Windows Build
3411     for font_dir in "c:\\Program Files\\gs\\fonts\\" "c:\\Program Files \(x86\)\\gs\\fonts\\" "c:\\gs\\fonts\\"; do
3412       if test -f "${font_dir}a010013l.pfb"; then
3413         ghostscript_font_dir="$font_dir"
3414         break 1
3415       fi
3416     done
3417     if test "${PSDelegate}" != 'gswin32c'; then
3418       ghostscript_font_dir=`echo "${PSDelegate}" | sed -e 's:/gs/.*:/gs:;s:^/::;s/./&:/;s:/:\\\\:g'`"\\fonts\\"
3419     fi
3420   else
3421     # Linux / Mac OS X / Unix Build
3422     for font_dir in "${prefix}/share/ghostscript/fonts/" '/usr/share/fonts/default/Type1/' '/usr/share/ghostscript/fonts/' '/usr/share/fonts/ghostscript/' '/usr/share/fonts/type1/gsfonts/' '/opt/local/share/ghostscript/fonts/' '/sw/share/ghostscript/fonts/' '/System/Library/Frameworks/Ghostscript.framework/Resources/fonts/'; do
3423       if test -f "${font_dir}a010013l.pfb"; then
3424         ghostscript_font_dir="${font_dir}"
3425         break 1
3426       fi
3427     done
3428     if test "${ghostscript_font_dir}x" = 'x'; then
3429       if test "$PSDelegate" != 'gs'; then
3430         ghostscript_font_dir=`echo "$PSDelegate" | sed -e 's:/bin/gs:/share/ghostscript/fonts:'`"/"
3431       fi
3432     fi
3433   fi
3434 fi
3435 if test "${ghostscript_font_dir}x" != 'x'; then
3436   type_include_files="${type_include_files} "'<include file="type-ghostscript.xml" />'
3437   AC_MSG_RESULT([$ghostscript_font_dir])
3438 else
3439   AC_MSG_RESULT([not found!]);
3440 fi
3441 AC_SUBST(ghostscript_font_dir)
3442 case "${build_os}" in
3443   mingw* )
3444     PSDelegate=`$WinPathScript "$PSDelegate" 1`
3445     ;;
3446 esac
3447
3448 AC_SUBST(type_include_files)
3449
3450 #
3451 # Handle case where user doesn't want frozen paths
3452 #
3453 if test "$with_frozenpaths" != 'yes'; then
3454   # Re-set delegate definitions to default (no paths)
3455   AutotraceDecodeDelegate="$AutotraceDecodeDelegateDefault"
3456   BlenderDecodeDelegate="$BlenderDecodeDelegateDefault"
3457   BZIPDelegate="$BZIPDelegateDefault"
3458   BrowseDelegate="$BrowseDelegateDefault"
3459   CatDelegate="$CatDelegateDefault"
3460   ConvertDelegate="$ConvertDelegateDefault"
3461   DisplayDelegate="$DisplayDelegateDefault"
3462   DNGDecodeDelegate="$DNGDecodeDelegateDefault"
3463   DVIDecodeDelegate="$DVIDecodeDelegateDefault"
3464   EchoDelegate="$EchoDelegateDefault"
3465   EditorDelegate="$EditorDelegateDefault"
3466   GnuplotDecodeDelegate="$GnuplotDecodeDelegateDefault"
3467   GVCDecodeDelegate="$GVCDecodeDelegateDefault"
3468   HPGLDecodeDelegate="$HPGLDecodeDelegateDefault"
3469   HTMLDecodeDelegate="$HTMLDecodeDelegateDefault"
3470   ILBMDecodeDelegate="$ILBMDecodeDelegateDefault"
3471   ILBMEncodeDelegate="$ILBMEncodeDelegateDefault"
3472   JXRDecodeDelegate="$JXRDecodeDelegateDefault"
3473   JXREncodeDelegate="$JXREncodeDelegateDefault"
3474   LPDelegate="$LPDelegateDefault"
3475   LaunchDelegate="$LaunchDelegateDefault"
3476   MANDelegate="$MANDelegateDefault"
3477   MPEGDecodeDelegate="$MPEGDecodeDelegateDefault"
3478   MPEGEncodeDelegate="$MPEGEncodeDelegateDefault"
3479   MogrifyDelegate="$MogrifyDelegateDefault"
3480   MrSIDDecodeDelegate="$MrSIDDecodeDelegateDefault"
3481   MVDelegate="$MVDelegateDefault"
3482   PCLDelegate="$PCLDelegateDefault"
3483   PGPDecodeDelegate="$PGPDecodeDelegateDefault"
3484   POVDelegate="$POVDelegateDefault"
3485   PSDelegate="$PSDelegateDefault"
3486   RLEEncodeDelegate="$RLEEncodeDelegateDefault"
3487   RMDelegate="$RMDelegateDefault"
3488   RSVGDecodeDelegate="$RSVGDecodeDelegateDefault"
3489   SCANDecodeDelegate="$SCANDecodeDelegateDefault"
3490   SVGDecodeDelegate="$SVGDecodeDelegateDefault"
3491   ShowImageDelegate="$ShowImageDelegateDefault"
3492   TXTDelegate="$TXTDelegateDefault"
3493   UniconvertorDelegate="$UniconvertorDelegateDefault"
3494   WebPDecodeDelegate="$WebPDecodeDelegateDefault"
3495   WebPEncodeDelegate="$WebPEncodeDelegateDefault"
3496   WMFDecodeDelegate="$WMFDecodeDelegateDefault"
3497   WWWDecodeDelegate="$WWWDecodeDelegateDefault"
3498   XPSDelegate="$XPSDelegateDefault"
3499   ZipDelegate="$ZipDelegateDefault"
3500 fi
3501
3502 # Delegate substitutions
3503 AC_SUBST(AutotraceDecodeDelegate)
3504 AC_SUBST(BlenderDecodeDelegate)
3505 AC_SUBST(BZIPDelegate)
3506 AC_SUBST(BrowseDelegate)
3507 AC_SUBST(CatDelegate)
3508 AC_SUBST(ConvertDelegate)
3509 AC_SUBST(GVCDecodeDelegate)
3510 AC_SUBST(DVIDecodeDelegate)
3511 AC_SUBST(EchoDelegate)
3512 AC_SUBST(EditorDelegate)
3513 AC_SUBST(GnuplotDecodeDelegate)
3514 AC_SUBST(HPGLDecodeDelegate)
3515 AC_SUBST(HTMLDecodeDelegate)
3516 AC_SUBST(ILBMDecodeDelegate)
3517 AC_SUBST(ILBMEncodeDelegate)
3518 AC_SUBST(JXRDecodeDelegate)
3519 AC_SUBST(JXREncodeDelegate)
3520 AC_SUBST(LPDelegate)
3521 AC_SUBST(LaunchDelegate)
3522 AC_SUBST(MANDelegate)
3523 AC_SUBST(MPEGDecodeDelegate)
3524 AC_SUBST(MPEGEncodeDelegate)
3525 AC_SUBST(MogrifyDelegate)
3526 AC_SUBST(MrSIDDecodeDelegate)
3527 AC_SUBST(MVDelegate)
3528 AC_SUBST(PCLDelegate)
3529 AC_SUBST(PGPDecodeDelegate)
3530 AC_SUBST(POVDelegate)
3531 AC_SUBST(PSDelegate)
3532 AC_SUBST(RLEEncodeDelegate)
3533 AC_SUBST(RMDelegate)
3534 AC_SUBST(SCANDecodeDelegate)
3535 AC_SUBST(ShowImageDelegate)
3536 AC_SUBST(TXTDelegate)
3537 AC_SUBST(UniconvertorDelegate)
3538 AC_SUBST(WMFDecodeDelegate)
3539 AC_SUBST(WebPDecodeDelegate)
3540 AC_SUBST(WebPEncodeDelegate)
3541 AC_SUBST(WWWDecodeDelegate)
3542 AC_SUBST(XPSDelegate)
3543 AC_SUBST(ZipDelegate)
3544
3545 #
3546 # RPM support.
3547 #
3548 RPM=''
3549 AC_CHECK_PROGS(TAR,gnutar gtar tar)
3550 AC_CHECK_PROGS(PERL,perl)
3551 AC_CHECK_PROGS(RPM,rpmbuild rpm)
3552 AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir)
3553 AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir)
3554 AM_MISSING_PROG(AUTOMAKE, automake, $missing_dir)
3555 AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir)
3556 AC_SUBST(RPM)
3557 AM_CONDITIONAL(RPM_DELEGATE, test "x$RPM" != "x" )
3558
3559 #
3560 # 7ZIP support (http://p7zip.sourceforge.net/)
3561 #
3562 P7ZIP=''
3563 AC_CHECK_PROGS(P7ZIP,[7za])
3564 AC_SUBST(P7ZIP)
3565 AM_CONDITIONAL(P7ZIP_DELEGATE, test "x$P7ZIP" != "x" )
3566
3567 #
3568 # ZIP support (http://www.info-zip.org/Zip.html)
3569 #
3570 ZIP=''
3571 AC_CHECK_PROGS(ZIP,[zip])
3572 AC_SUBST(ZIP)
3573 AM_CONDITIONAL(ZIP_DELEGATE, test "x$ZIP" != "x" )
3574
3575 #
3576 # GhostPCL related configuration.
3577 #
3578 PCLColorDevice=ppmraw
3579 PCLCMYKDevice=pamcmyk32
3580 PCLMonoDevice=pbmraw
3581 if test -z "$PCLVersion"; then
3582     PCLVersion='unknown'
3583 fi
3584 if test $have_pcl = 'yes'; then
3585     AC_MSG_RESULT([-------------------------------------------------------------])
3586     AC_MSG_CHECKING([for PCL])
3587     AC_MSG_RESULT([])
3588     # PCLColorDevice
3589     AC_MSG_CHECKING([for pcl color device])
3590     if $PCLDelegate -dBATCH -sDEVICE=$PCLColorDevice -sOutputFile=/dev/null < /dev/null 2> /dev/null; then
3591         :
3592     else
3593         PCLColorDevice=ppmraw
3594     fi
3595     AC_MSG_RESULT([$PCLColorDevice])
3596
3597     # PCLCMYKDevice
3598     AC_MSG_CHECKING([for pcl CMYK device])
3599     if $PCLDelegate -dBATCH -sDEVICE=$PCLColorDevice -sOutputFile=/dev/null < /dev/null 2> /dev/null; then
3600         :
3601     else
3602         PCLCMYKDevice=$PCLColorDevice
3603     fi
3604     AC_MSG_RESULT([$PCLCMYKDevice])
3605
3606     # PCLMonoDevice
3607     AC_MSG_CHECKING([for pcl mono device])
3608     if $PCLDelegate -dBATCH -sDEVICE=$PCLMonoDevice -sOutputFile=/dev/null < /dev/null 2> /dev/null; then
3609         :
3610     else
3611         PCLMonoDevice=$PCLColorDevice
3612     fi
3613     AC_MSG_RESULT([$PCLMonoDevice])
3614 fi
3615
3616 AC_SUBST(PCLMonoDevice)
3617 AC_SUBST(PCLColorDevice)
3618 AC_SUBST(PCLCMYKDevice)
3619 AC_SUBST(PCLVersion)
3620
3621 #
3622 # GhostXPS related configuration.
3623 #
3624 XPSColorDevice=ppmraw
3625 XPSCMYKDevice=bmpsep8
3626 XPSMonoDevice=pbmraw
3627 if test -z "$XPSVersion"; then
3628     XPSVersion='unknown'
3629 fi
3630 if test $have_xps = 'yes'; then
3631     AC_MSG_RESULT([-------------------------------------------------------------])
3632     AC_MSG_CHECKING([for XPS])
3633     AC_MSG_RESULT([])
3634     # XPSColorDevice
3635     AC_MSG_CHECKING([for xps color device])
3636     if $XPSDelegate -dBATCH -sDEVICE=$XPSColorDevice -sOutputFile=/dev/null < /dev/null 2> /dev/null; then
3637         :
3638     else
3639         XPSColorDevice=ppmraw
3640     fi
3641     AC_MSG_RESULT([$XPSColorDevice])
3642
3643     # XPSCMYKDevice
3644     AC_MSG_CHECKING([for xps CMYK device])
3645     if $XPSDelegate -dBATCH -sDEVICE=$XPSColorDevice -sOutputFile=/dev/null < /dev/null 2> /dev/null; then
3646         :
3647     else
3648         XPSCMYKDevice=$XPSColorDevice
3649     fi
3650     AC_MSG_RESULT([$XPSCMYKDevice])
3651
3652     # XPSMonoDevice
3653     AC_MSG_CHECKING([for xps mono device])
3654     if $XPSDelegate -dBATCH -sDEVICE=$XPSMonoDevice -sOutputFile=/dev/null < /dev/null 2> /dev/null; then
3655         :
3656     else
3657         XPSMonoDevice=$XPSColorDevice
3658     fi
3659     AC_MSG_RESULT([$XPSMonoDevice])
3660 fi
3661
3662 AC_SUBST(XPSMonoDevice)
3663 AC_SUBST(XPSColorDevice)
3664 AC_SUBST(XPSCMYKDevice)
3665 AC_SUBST(XPSVersion)
3666
3667 #
3668 # Ghostscript related configuration.
3669 #
3670 GSAlphaDevice=pngalpha
3671 GSColorDevice=pnmraw
3672 GSCMYKDevice=pam
3673 GSMonoDevice=pbmraw
3674 GSPDFDevice=pdfwrite
3675 GSPSDevice=ps2write
3676 GSEPSDevice=epswrite
3677 GSVersion='unknown'
3678 if test $have_gs = 'yes'; then
3679     AC_MSG_RESULT([-------------------------------------------------------------])
3680     AC_MSG_CHECKING([for Ghostscript])
3681     AC_MSG_RESULT([])
3682     AC_MSG_CHECKING([for Ghostscript version])
3683     if GSVersion=`$PSDelegate --version`; then
3684         :
3685     else
3686         GSVersion=`$PSDelegate --help | sed -e '1q' | awk '{ print $3 }'`
3687     fi
3688     AC_MSG_RESULT([$GSVersion])
3689
3690     # GSAlphaDevice
3691     AC_MSG_CHECKING([for gs alpha device])
3692     if $PSDelegate -q -dBATCH -sDEVICE=$GSAlphaDevice -sOutputFile=/dev/null < /dev/null 2> /dev/null; then
3693         :
3694     else
3695         GSAlphaDevice=pnmraw
3696     fi
3697     AC_MSG_RESULT([$GSAlphaDevice])
3698
3699     # GSColorDevice
3700     AC_MSG_CHECKING([for gs color device])
3701     if $PSDelegate -q -dBATCH -sDEVICE=$GSColorDevice -sOutputFile=/dev/null < /dev/null 2> /dev/null; then
3702         :
3703     else
3704         GSColorDevice=pnmraw
3705     fi
3706     AC_MSG_RESULT([$GSColorDevice])
3707
3708     # GSCMYKDevice
3709     AC_MSG_CHECKING([for gs CMYK device])
3710     if $PSDelegate -q -dBATCH -sDEVICE=$GSCMYKDevice -sOutputFile=/dev/null < /dev/null 2> /dev/null; then
3711         :
3712     else
3713         GSCMYKDevice=bmpsep8
3714     fi
3715     AC_MSG_RESULT([$GSCMYKDevice])
3716
3717     # GSMonoDevice
3718     AC_MSG_CHECKING([for gs mono device])
3719     if $PSDelegate -q -dBATCH -sDEVICE=$GSMonoDevice -sOutputFile=/dev/null < /dev/null 2> /dev/null; then
3720         :
3721     else
3722         GSMonoDevice=$GSColorDevice
3723     fi
3724     AC_MSG_RESULT([$GSMonoDevice])
3725
3726     # GSPDFDevice
3727     AC_MSG_CHECKING([for gs PDF writing device])
3728     if $PSDelegate -q -dBATCH -sDEVICE=$GSPDFDevice -sOutputFile=/dev/null < /dev/null 2> /dev/null; then
3729         :
3730     else
3731         GSPDFDevice=nodevice
3732     fi
3733         AC_MSG_RESULT([$GSPDFDevice])
3734
3735     # GSPSDevice
3736     AC_MSG_CHECKING([for gs PS writing device])
3737     if $PSDelegate -q -dBATCH -sDEVICE=$GSPSDevice -sOutputFile=/dev/null < /dev/null 2> /dev/null; then
3738         :
3739     else
3740         GSPSDevice=nodevice
3741     fi
3742     AC_MSG_RESULT([$GSPSDevice])
3743
3744     # GSEPSDevice
3745     AC_MSG_CHECKING([for gs EPS writing device])
3746     if $PSDelegate -q -dBATCH -sDEVICE=$GSEPSDevice -sOutputFile=/dev/null < /dev/null 2> /dev/null; then
3747         :
3748     else
3749         GSEPSDevice=nodevice
3750     fi
3751     AC_MSG_RESULT([$GSEPSDevice])
3752 fi
3753
3754 AC_SUBST(GSAlphaDevice)
3755 AC_SUBST(GSCMYKDevice)
3756 AC_SUBST(GSColorDevice)
3757 AC_SUBST(GSEPSDevice)
3758 AC_SUBST(GSMonoDevice)
3759 AC_SUBST(GSPDFDevice)
3760 AC_SUBST(GSPSDevice)
3761 AC_SUBST(GSVersion)
3762
3763 #
3764 # PerlMagick-related configuration
3765 #
3766
3767 # Look for PERL if PerlMagick requested
3768 # If name/path of desired PERL interpreter is specified, look for that one first
3769 have_perl='no'
3770 if test "$with_perl" != 'no'; then
3771     AC_MSG_RESULT([-------------------------------------------------------------])
3772     AC_MSG_CHECKING([for Perl])
3773     AC_MSG_RESULT([])
3774     if test "$with_perl" != 'yes'; then
3775         AC_CACHE_CHECK(for perl,ac_cv_path_PERL,ac_cv_path_PERL="$with_perl");
3776         PERL=$ac_cv_path_PERL
3777         AC_SUBST(PERL)dnl
3778         have_perl="$ac_cv_path_PERL"
3779     else
3780         AC_PATH_PROGS(PERL,perl perl5,)dnl
3781         if test "$ac_cv_path_PERL"; then
3782             have_perl="$ac_cv_path_PERL"
3783         fi
3784     fi
3785 fi
3786
3787 if test "$with_perl" != 'yes' ; then
3788     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-perl=$with_perl "
3789 fi
3790
3791 PERL_SUPPORTS_DESTDIR='no'
3792
3793 with_perl_static='no'
3794 with_perl_dynamic='no'
3795 if test "$have_perl" != 'no'; then
3796     if test "$with_perl" != 'no' && test "$libtool_build_shared_libs" = 'no'; then
3797         with_perl_static='yes'
3798     fi
3799     if test "$with_perl" != 'no' && test "$libtool_build_shared_libs" = 'yes'; then
3800         with_perl_dynamic='yes'
3801     fi
3802     # Is PERL's MakeMaker new enough to support DESTDIR?
3803     AX_PROG_PERL_VERSION(5.8.1,[PERL_SUPPORTS_DESTDIR='yes'],[PERL_SUPPORTS_DESTDIR='no'])
3804 fi
3805 AM_CONDITIONAL(WITH_PERL, test "$have_perl" != 'no')
3806 AM_CONDITIONAL(WITH_PERL_STATIC, test $with_perl_static = 'yes')
3807 AM_CONDITIONAL(WITH_PERL_DYNAMIC, test $with_perl_dynamic = 'yes')
3808 AC_SUBST(PERL_SUPPORTS_DESTDIR)
3809
3810 # Determine path to pick up MagickCore library from for use with building PerlMagick
3811 MAGICKCORE_PATH="${LIB_DIR}"
3812 if test $with_perl_static = 'yes'; then
3813     # Find out where libtool hides its uninstalled libraries (as libtool_objdir)
3814     libtool_objdir=$objdir
3815
3816     # Linker search path to library, followed by -lMagickCore
3817     MAGICKCORE_PATH="${builddir}/MagickCore/${libtool_objdir}"
3818 fi
3819 AC_SUBST(MAGICKCORE_PATH)
3820
3821 # Create a simple string containing format names for all delegate libraries.
3822 MAGICK_DELEGATES=''
3823 if test "$have_autotrace"  = 'yes' ; then
3824    MAGICK_DELEGATES="$MAGICK_DELEGATES autotrace"
3825 fi
3826 if test "$have_bzlib"  = 'yes' ; then
3827    MAGICK_DELEGATES="$MAGICK_DELEGATES bzlib"
3828 fi
3829 if test "$have_dps"    = 'yes' ; then
3830    MAGICK_DELEGATES="$MAGICK_DELEGATES dps"
3831 fi
3832 if test "$have_djvu"    = 'yes' ; then
3833    MAGICK_DELEGATES="$MAGICK_DELEGATES djvu"
3834 fi
3835 if test "$have_avconv"   = 'yes' ; then
3836    MAGICK_DELEGATES="$MAGICK_DELEGATES mpeg"
3837 fi
3838 if test "$have_mupdf"    = 'yes' ; then
3839    MAGICK_DELEGATES="$MAGICK_DELEGATES mupdf"
3840 fi
3841 if test "$have_fftw"    = 'yes' ; then
3842    MAGICK_DELEGATES="$MAGICK_DELEGATES fftw"
3843 fi
3844 if test "$have_fpx"    = 'yes' ; then
3845    MAGICK_DELEGATES="$MAGICK_DELEGATES fpx"
3846 fi
3847 if test "$have_fontconfig"    = 'yes' ; then
3848    MAGICK_DELEGATES="$MAGICK_DELEGATES fontconfig"
3849 fi
3850 if test "$have_freetype"    = 'yes' ; then
3851    MAGICK_DELEGATES="$MAGICK_DELEGATES freetype"
3852 fi
3853 if test "$have_gslib"    = 'yes' ; then
3854    MAGICK_DELEGATES="$MAGICK_DELEGATES gslib"
3855 fi
3856 if test "$have_jbig"    = 'yes' ; then
3857    MAGICK_DELEGATES="$MAGICK_DELEGATES jbig"
3858 fi
3859 if test "$have_png$have_jpeg" = 'yesyes' ; then
3860    MAGICK_DELEGATES="$MAGICK_DELEGATES jng"
3861 fi
3862 if test "$have_jp2"   = 'yes' ; then
3863    MAGICK_DELEGATES="$MAGICK_DELEGATES jp2"
3864 fi
3865 if test "$have_jpeg"   = 'yes' ; then
3866    MAGICK_DELEGATES="$MAGICK_DELEGATES jpeg"
3867 fi
3868 if test "$have_lcms" = 'yes' || test "$have_lcms2" = 'yes' ; then
3869    MAGICK_DELEGATES="$MAGICK_DELEGATES lcms"
3870 fi
3871 if test "$have_lqr"    = 'yes' ; then
3872    MAGICK_DELEGATES="$MAGICK_DELEGATES lqr"
3873 fi
3874 if test "$have_lzma"    = 'yes' ; then
3875    MAGICK_DELEGATES="$MAGICK_DELEGATES lzma"
3876 fi
3877 if test "$have_openexr"    = 'yes' ; then
3878    MAGICK_DELEGATES="$MAGICK_DELEGATES openexr"
3879 fi
3880 if test "$have_openjp2"    = 'yes' ; then
3881    MAGICK_DELEGATES="$MAGICK_DELEGATES openjp2"
3882 fi
3883 if test "$have_pango"    = 'yes' ; then
3884    MAGICK_DELEGATES="$MAGICK_DELEGATES pango"
3885 fi
3886 if test "$have_png"    = 'yes' ; then
3887    MAGICK_DELEGATES="$MAGICK_DELEGATES png"
3888 fi
3889 have_ps='no'
3890 if test "$have_dps"    = 'yes' || \
3891    test "$have_gs" = 'yes' || \
3892    test "${native_win32_build}" = 'yes' ; then
3893    have_ps='yes'
3894 fi
3895 if test "$have_ps"     = 'yes' ; then
3896    MAGICK_DELEGATES="$MAGICK_DELEGATES ps"
3897 fi
3898 if test "$have_ra_ppm" = 'yes' ; then
3899    MAGICK_DELEGATES="$MAGICK_DELEGATES rad"
3900 fi
3901 if test "$have_rsvg"   = 'yes' ; then
3902    MAGICK_DELEGATES="$MAGICK_DELEGATES rsvg"
3903 fi
3904 if test "$have_tiff"   = 'yes' ; then
3905    MAGICK_DELEGATES="$MAGICK_DELEGATES tiff"
3906 fi
3907 if test "$have_ttf"    = 'yes' ; then
3908    MAGICK_DELEGATES="$MAGICK_DELEGATES ttf"
3909 fi
3910 if test "$have_webp"    = 'yes' ; then
3911    MAGICK_DELEGATES="$MAGICK_DELEGATES webp"
3912 fi
3913 if test "$have_wmf"    = 'yes' ; then
3914    MAGICK_DELEGATES="$MAGICK_DELEGATES wmf"
3915 fi
3916 if test "$have_x"      = 'yes' ; then
3917    MAGICK_DELEGATES="$MAGICK_DELEGATES x"
3918 fi
3919 if test "$have_xml"      = 'yes' ; then
3920    MAGICK_DELEGATES="$MAGICK_DELEGATES xml"
3921 fi
3922 if test "$have_zlib"   = 'yes' ; then
3923    MAGICK_DELEGATES="$MAGICK_DELEGATES zlib"
3924 fi
3925 # Remove extraneous spaces from output variables (asthetic)
3926 MAGICK_DELEGATES=`echo $MAGICK_DELEGATES | sed -e 's/  */ /g'`
3927 MAGICK_FEATURES=`echo $MAGICK_FEATURES | sed -e 's/  */ /g'`
3928 AC_SUBST(MAGICK_DELEGATES)
3929 AC_SUBST(MAGICK_FEATURES)
3930
3931 #
3932 # Handle special compiler flags
3933 #
3934
3935 # Add '-p' if prof source profiling support enabled
3936 if test "$enable_prof" = 'yes'; then
3937     CFLAGS="-p $CFLAGS"
3938     CXXFLAGS="-p $CXXFLAGS"
3939     LDFLAGS="-p $LDFLAGS"
3940 fi
3941
3942 # Add '-pg' if gprof source profiling support enabled
3943 if test "$enable_gprof" = 'yes'; then
3944     CFLAGS="-pg $CFLAGS"
3945     CXXFLAGS="-pg $CXXFLAGS"
3946     LDFLAGS="-pg $LDFLAGS"
3947 fi
3948
3949 # Add '-ftest-coverage -fprofile-arcs' if gcov source profiling support enabled
3950 # This is a gcc-specific feature
3951 if test "$enable_gcov" = 'yes'; then
3952     AC_CHECK_LIB(gcov,_gcov_init)
3953     AC_CHECK_LIB(gcov,__gcov_init)
3954     case "$target_os" in
3955         darwin*)
3956             OSX_GCOV_LDFLAG="-Wl,-single_module"
3957         ;;
3958         *)
3959             OSX_GCOV_LDFLAG=""
3960         ;;
3961     esac
3962     AC_SUBST(OSX_GCOV_LDFLAG)
3963     CFLAGS="-ftest-coverage -fprofile-arcs  $CFLAGS"
3964     CXXFLAGS="-ftest-coverage -fprofile-arcs  $CXXFLAGS"
3965     LDFLAGS="-ftest-coverage -fprofile-arcs $LDFLAGS"
3966 fi
3967
3968 #
3969 # Build library dependency list for libMagickCore
3970 #
3971
3972 if test "$build_modules" != 'no'; then
3973     MAGICK_DEP_LIBS="$LCMS_LIBS $FREETYPE_LIBS $LQR_LIBS $FFTW_LIBS $FONTCONFIG_LIBS $XEXT_LIBS $IPC_LIBS $X11_LIBS $XT_LIBS $LZMA_LIBS $BZLIB_LIBS $ZLIB_LIBS $LTDL_LIBS $GDI32_LIBS $MATH_LIBS $GOMP_LIBS $CL_LIBS $UMEM_LIBS $THREAD_LIBS"
3974 else
3975     MAGICK_DEP_LIBS="$JBIG_LIBS $LCMS_LIBS $TIFF_LIBS $FREETYPE_LIBS $JPEG_LIBS $GS_LIBS $LQR_LIBS $PNG_LIBS $AUTOTRACE_LIBS $DJVU_LIBS $FFTW_LIBS $FPX_LIBS $FONTCONFIG_LIBS $WEBP_LIBS $WMF_LIBS $DPS_LIBS $XEXT_LIBS $XT_LIBS $IPC_LIBS $X11_LIBS $LZMA_LIBS $BZLIB_LIBS $OPENEXR_LIBS $OPENJPEG_LIBS $PANGO_LIBS $RSVG_LIBS $XML_LIBS $GVC_LIBS $ZLIB_LIBS $GDI32_LIBS $MATH_LIBS $GOMP_LIBS $CL_LIBS $UMEM_LIBS $THREAD_LIBS"
3976 fi
3977 AC_SUBST(MAGICK_DEP_LIBS)
3978
3979 #
3980 # Remove extraneous spaces from output variables (asthetic)
3981 #
3982 X_CFLAGS=`echo $X_CFLAGS | sed -e 's/  */ /g'`
3983 X_PRE_LIBS=`echo $X_PRE_LIBS | sed -e 's/  */ /g'`
3984 X_LIBS=`echo $X_LIBS | sed -e 's/  */ /g'`
3985 X_EXTRA_LIBS=`echo $X_EXTRA_LIBS | sed -e 's/  */ /g'`
3986
3987 CC=`echo $CC | sed -e 's/  */ /g'`
3988 CFLAGS=`echo $CFLAGS | sed -e 's/  */ /g'`
3989 CPPFLAGS=`echo $CPPFLAGS | sed -e 's/  */ /g'`
3990 CXXFLAGS=`echo $CXXFLAGS | sed -e 's/  */ /g'`
3991 DISTCHECK_CONFIG_FLAGS=`echo $DISTCHECK_CONFIG_FLAGS | sed -e 's/  */ /g'`
3992 LDFLAGS=`echo $LDFLAGS | sed -e 's/  */ /g'`
3993 TESTED_LIBS=`echo $LIBS | sed -e 's/  */ /g'`
3994 MAGICK_DEP_LIBS=`echo $MAGICK_DEP_LIBS | sed -e 's/  */ /g'`
3995 #LIBS=`echo $LIBS | sed -e 's/  */ /g'`
3996
3997 # Pass only user-provided LIBS as "global" libraries
3998 LIBS=$USER_LIBS
3999
4000 #AC_SUBST(CPPFLAGS)
4001 AC_SUBST(X_CFLAGS)
4002 #AC_SUBST(LDFLAGS)
4003 #AC_SUBST(X_PRE_LIBS)
4004 #AC_SUBST(X_LIBS)
4005 #AC_SUBST(X_EXTRA_LIBS)
4006
4007 MAGICK_CFLAGS=$CFLAGS
4008 MAGICK_CXXFLAGS="$CXXFLAGS"
4009 MAGICK_CPPFLAGS=`echo $MAGICK_CPPFLAGS | sed -e 's/  */ /g'`
4010 MAGICK_PCFLAGS=`echo $MAGICK_PCFLAGS | sed -e 's/  */ /g'`
4011 MAGICK_LDFLAGS="-L$LIB_DIR $LDFLAGS"
4012 MAGICK_LIBS="$MAGICK_DEP_LIBS"
4013
4014 AC_SUBST(MAGICK_CFLAGS)
4015 AC_SUBST(MAGICK_CXXFLAGS)
4016 AC_SUBST(MAGICK_CPPFLAGS)
4017 AC_SUBST(MAGICK_PCFLAGS)
4018 AC_SUBST(MAGICK_LDFLAGS)
4019 AC_SUBST(MAGICK_LIBS)
4020
4021 # Set configured scripts to executable.
4022 AC_CONFIG_COMMANDS([default],[],[])
4023 AC_CONFIG_COMMANDS([magick.sh.in],[chmod +x magick.sh])
4024 AC_CONFIG_COMMANDS([MagickCore-config.in],[chmod +x MagickCore/MagickCore-config])
4025 AC_CONFIG_COMMANDS([MagickWand-config.in],[chmod +x MagickWand/MagickWand-config])
4026 AC_CONFIG_COMMANDS([Magick++-config.in],[chmod +x Magick++/bin/Magick++-config])
4027 AC_CONFIG_COMMANDS([PerlMagick/check.sh.in],[chmod +x PerlMagick/check.sh])
4028
4029 AC_MSG_RESULT([-------------------------------------------------------------])
4030 AC_MSG_RESULT([Update ImageMagick configuration])
4031 AC_OUTPUT
4032
4033 rm -f magick-version
4034
4035 result_dejavu_font_dir='none'
4036 if test "${dejavu_font_dir}x" != 'x'; then
4037     result_dejavu_font_dir=$dejavu_font_dir
4038 fi
4039
4040 result_ghostscript_font_dir='none'
4041 if test "${ghostscript_font_dir}x" != 'x'; then
4042     result_ghostscript_font_dir=$ghostscript_font_dir
4043 fi
4044
4045 result_windows_font_dir='none'
4046 if test "${windows_font_dir}x" != 'x'; then
4047     result_windows_font_dir=${windows_font_dir}
4048 fi
4049
4050 AC_MSG_RESULT([
4051 ImageMagick is configured as follows. Please verify that this configuration
4052 matches your expectations.
4053
4054 Host system type: $host
4055 Build system type: $build
4056
4057                   Option                        Value
4058 -------------------------------------------------------------------------------
4059 Shared libraries  --enable-shared=$enable_shared                $libtool_build_shared_libs
4060 Static libraries  --enable-static=$enable_static                $libtool_build_static_libs
4061 Module support    --with-modules=$build_modules         $build_modules
4062 GNU ld            --with-gnu-ld=$with_gnu_ld            $lt_cv_prog_gnu_ld
4063 Quantum depth     --with-quantum-depth=$with_quantum_depth      $with_quantum_depth
4064 High Dynamic Range Imagery
4065                   --enable-hdri=$enable_hdri            $enable_hdri
4066
4067 Delegate Configuration:
4068 BZLIB             --with-bzlib=$with_bzlib              $have_bzlib
4069 Autotrace         --with-autotrace=$with_autotrace              $have_autotrace
4070 Dejavu fonts      --with-dejavu-font-dir=$with_dejavu_font_dir  $result_dejavu_font_dir
4071 DJVU              --with-djvu=$with_djvu                $have_djvu
4072 DPS               --with-dps=$with_dps          $have_dps
4073 FFTW              --with-fftw=$with_fftw                $have_fftw
4074 FlashPIX          --with-fpx=$with_fpx          $have_fpx
4075 FontConfig        --with-fontconfig=$with_fontconfig            $have_fontconfig
4076 FreeType          --with-freetype=$with_freetype                $have_freetype
4077 GhostPCL          None                          $PCLDelegate ($PCLVersion)
4078 GhostXPS          None                          $XPSDelegate ($XPSVersion)
4079 Ghostscript       None                          $PSDelegate ($GSVersion)
4080 Ghostscript fonts --with-gs-font-dir=$with_gs_font_dir  $result_ghostscript_font_dir
4081 Ghostscript lib   --with-gslib=$with_gslib              $have_gslib
4082 Graphviz          --with-gvc=$with_gvc          $have_gvc
4083 JBIG              --with-jbig=$with_jbig                $have_jbig
4084 JPEG v1           --with-jpeg=$with_jpeg                $have_jpeg
4085 JPEG-2000         --with-jp2=$with_jp2          $have_jp2
4086 LCMS v1           --with-lcms=$with_lcms                $have_lcms
4087 LCMS v2           --with-lcms2=$with_lcms2              $have_lcms2
4088 LIBJPEG2          --with-openjp2=$with_openjp2  $have_openjp2
4089 LQR               --with-lqr=$with_lqr          $have_lqr
4090 LTDL              --with-ltdl=$with_ltdl                $have_ltdl
4091 LZMA              --with-lzma=$with_lzma                $have_lzma
4092 Magick++          --with-magick-plus-plus=$with_magick_plus_plus        $have_magick_plus_plus
4093 MUPDF             --with-mupdf=$with_mupdf              $have_mupdf
4094 OpenEXR           --with-openexr=$with_openexr          $have_openexr
4095 PANGO             --with-pango=$with_pango              $have_pango
4096 PERL              --with-perl=$with_perl                $have_perl
4097 PNG               --with-png=$with_png          $have_png
4098 RSVG              --with-rsvg=$with_rsvg                $have_rsvg
4099 TIFF              --with-tiff=$with_tiff                $have_tiff
4100 WEBP              --with-webp=$with_webp                $have_webp
4101 Windows fonts     --with-windows-font-dir=$with_windows_font_dir        $result_windows_font_dir
4102 WMF               --with-wmf=$with_wmf          $have_wmf
4103 X11               --with-x=$with_x                      $have_x
4104 XML               --with-xml=$with_xml          $have_xml
4105 ZLIB              --with-zlib=$with_zlib                $have_zlib
4106
4107 X11 Configuration:
4108       X_CFLAGS        = $X_CFLAGS
4109       X_PRE_LIBS      = $X_PRE_LIBS
4110       X_LIBS          = $X_LIBS
4111       X_EXTRA_LIBS    = $X_EXTRA_LIBS
4112
4113 Options used to compile and link:
4114   PREFIX          = $PREFIX_DIR
4115   EXEC-PREFIX     = $EXEC_PREFIX_DIR
4116   VERSION         = $PACKAGE_VERSION
4117   CC              = $CC
4118   CFLAGS          = $CFLAGS
4119   CPPFLAGS        = $MAGICK_CPPFLAGS
4120   PCFLAGS         = $MAGICK_PCFLAGS
4121   DEFS            = $DEFS
4122   LDFLAGS         = $LDFLAGS
4123   MAGICK_LDFLAGS  = $MAGICK_LDFLAGS
4124   LIBS            = $MAGICK_LIBS
4125   CXX             = $CXX
4126   CXXFLAGS        = $CXXFLAGS
4127   FEATURES        = $MAGICK_FEATURES
4128   DELEGATES       = $MAGICK_DELEGATES
4129 ])