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