]> 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.6],[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([#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 cimag 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_CXX_HAVE_LSTRING
1073     AC_OPENMP([C++])
1074     AC_LANG_POP
1075
1076     AC_MSG_CHECKING([whether C++ compiler is sufficient for Magick++])
1077     if \
1078         test $ax_cv_cxx_bool = 'yes' && \
1079         test $ac_cv_cxx_have_lstring = 'yes' && \
1080         test $ax_cv_cxx_namespaces = 'yes' && \
1081         test $ac_cv_cxx_have_std_libs = 'yes' && \
1082         test $ax_cv_cxx_have_std_namespace = 'yes'; then
1083         have_magick_plus_plus='yes'
1084     else
1085         have_magick_plus_plus='no (failed tests)'
1086     fi
1087     AC_MSG_RESULT([$have_magick_plus_plus])
1088     LIBS="$OLIBS"
1089 fi
1090 AM_CONDITIONAL(WITH_MAGICK_PLUS_PLUS, test "$have_magick_plus_plus" = 'yes')
1091
1092 # Only check for delegate libraries in subdirectories if requested.
1093 if test "$enable_delegate_build" != 'no'; then
1094     # Check for delegate sub-directories and add -I & -L options as required.
1095     # This presumes that delegates are installed as detailed in the ImageMagick
1096     # README. If delegates are installed in a standard location where the
1097     # compiler will automatically find them then these options should not be
1098     # required.
1099
1100     #
1101     # Most delegates have includes in the same directory as the library, but not all...
1102     #
1103     # Includes
1104     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
1105         if test -d "$builddir/$dir"; then
1106             CPPFLAGS="$CPPFLAGS -I$builddir/$dir"
1107         else
1108             if test -d "$srcdirfull/$dir"; then
1109                 CPPFLAGS="$CPPFLAGS -I$srcdirfull/$dir"
1110             fi
1111         fi
1112     done
1113
1114     # Libraries
1115     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
1116     if test -d "$builddir/$dir/.libs"; then
1117         LDFLAGS="$LDFLAGS -L$builddir/$dir/.libs"
1118     else
1119         if test -d "$srcdirfull/$dir/.libs"; then
1120             LDFLAGS="$LDFLAGS -L$srcdirfull/$dir/.libs"
1121         fi
1122     fi
1123     if test -d "$builddir/$dir"; then
1124         LDFLAGS="$LDFLAGS -L$builddir/$dir"
1125     else
1126         if test -d "$srcdirfull/$dir"; then
1127             LDFLAGS="$LDFLAGS -L$srcdirfull/$dir"
1128         fi
1129     fi
1130   done
1131 fi
1132
1133 # Assume that delegate headers reside under same directory as ImageMagick
1134 # installation prefix.
1135 MAGICK_CPPFLAGS="-I$INCLUDE_DIR/ImageMagick $MAGICK_CPPFLAGS"
1136
1137 #
1138 # Find the X11 RGB database
1139 #
1140 AC_CACHE_CHECK(for X11 configure files,im_cv_x_configure,
1141 [# Look for the header file in a standard set of common directories.
1142 # Check X11 before X11Rn because it is often a symlink to the current release.
1143     for ac_dir in          \
1144     /lib/usr/lib/X11       \
1145     /usr/X11/lib           \
1146     /usr/X11R4/lib         \
1147     /usr/X11R5/lib         \
1148     /usr/X11R6/lib         \
1149     /usr/X11R7/lib         \
1150     /usr/X386/lib          \
1151     /usr/XFree86/lib/X11   \
1152     /usr/athena/lib        \
1153     /usr/lib               \
1154     /usr/lib/X11           \
1155     /usr/lib/X11R4         \
1156     /usr/lib/X11R5         \
1157     /usr/lib/X11R6         \
1158     /usr/lib/X11R7         \
1159     /usr/local/X11/lib     \
1160     /usr/local/X11R4/lib   \
1161     /usr/local/X11R5/lib   \
1162     /usr/local/X11R6/lib   \
1163     /usr/local/lib         \
1164     /usr/local/lib/X11     \
1165     /usr/local/lib/X11R4   \
1166     /usr/local/lib/X11R5   \
1167     /usr/local/lib/X11R6   \
1168     /usr/local/lib/X11R7   \
1169     /usr/local/x11r5/lib   \
1170     /usr/lpp/Xamples/lib   \
1171     /usr/openwin/lib       \
1172     /usr/openwin/share/lib \
1173     /usr/unsupported/lib   \
1174     /usr/x386/lib          \
1175     ; do
1176     if test -f "$ac_dir/X11/rgb.txt"; then
1177       im_cv_x_configure="$ac_dir/X11/"
1178       break
1179     elif test -f "$ac_dir/rgb.txt"; then
1180       im_cv_x_configure="$ac_dir/"
1181       break
1182     fi
1183
1184   done])
1185 X11_CONFIGURE_PATH="$im_cv_x_configure"
1186 case "${build_os}" in
1187   mingw* )
1188     X11ConfigurePath=`$WinPathScript "$X11ConfigurePath=" 1`
1189   ;;
1190 esac
1191 AC_DEFINE_UNQUOTED(X11_CONFIGURE_PATH,"$X11ConfigurePath",Location of X11 configure files)
1192
1193 #
1194 # Find OpenMP library
1195 #
1196 GOMP_LIBS=''
1197 if test "$enable_openmp" != 'no'; then
1198   if test "${GCC}" = "yes"; then
1199     AC_CHECK_LIB(gomp,GOMP_parallel_start,GOMP_LIBS="-lgomp",,)  # gcc
1200   else
1201     AC_CHECK_LIB(mtsk,sunw_mp_register_warn,GOMP_LIBS="-lmtsk",,)  # solaris cc
1202     AC_CHECK_LIB(xlsmp,_xlsmpFlush,GOMP_LIBS="-lxlsmp",,)  # AIX xlc
1203     AC_CHECK_LIB(mp,mp_destroy,GOMP_LIBS="-lmp",,)  # SGI IRIX 6.5 MIPSpro C/C++
1204   fi
1205   LIBS="$GOMP_LIBS $LIBS"
1206 fi
1207 AC_SUBST(GOMP_LIBS)
1208
1209 #
1210 # Find Posix threads library
1211 #
1212 THREAD_LIBS=''
1213 if test "$with_threads" != 'no' && test "$have_threads" = 'yes'; then
1214
1215     if test "x$PTHREAD_LIBS" = "x"; then
1216     case "${host_cpu}-${host_os}" in
1217       *-freebsd*)
1218         MAGICK_CHECK_PTHREAD_LIB(c_r,PTHREAD_LIBS=-lc_r) ;;
1219     esac
1220     fi
1221
1222     for lib in pthread pthreads; do
1223         if test "x$PTHREAD_LIBS" = "x"; then
1224             MAGICK_CHECK_PTHREAD_LIB([$lib],[PTHREAD_LIBS=-l$lib])
1225         fi
1226     done
1227
1228     THREAD_LIBS="$PTHREAD_LIBS"
1229     LIBS="$LIBS $THREAD_LIBS"
1230 fi
1231 AC_SUBST(THREAD_LIBS)
1232
1233 #
1234 # Check for umem.
1235 #
1236 have_umem='no'
1237 UMEM_LIBS=''
1238 if test "$with_umem" != 'no'; then
1239   AC_MSG_CHECKING(for UMEM support )
1240   AC_MSG_RESULT()
1241   failed=0
1242   passed=0
1243   AC_CHECK_HEADER(umem.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
1244   AC_CHECK_LIB(umem,umem_alloc,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
1245   AC_CHECK_LIB(umem,umem_free,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
1246   AC_MSG_CHECKING(if umem memory allocation library is complete)
1247   if test $passed -gt 0; then
1248     if test $failed -gt 0; then
1249       AC_MSG_RESULT(no -- some components failed test)
1250       have_umem='no (failed tests)'
1251     else
1252       UMEM_LIBS='-lumem'
1253       LIBS="$UMEM_LIBS $LIBS"
1254       AC_DEFINE(HasUMEM,1,Define if you have umem memory allocation library)
1255       AC_MSG_RESULT(yes)
1256       have_umem='yes'
1257     fi
1258   else
1259     AC_MSG_RESULT(no)
1260   fi
1261 fi
1262 AM_CONDITIONAL(HasUMEM, test "$have_umem" = 'yes')
1263 AC_SUBST(UMEM_LIBS)
1264
1265 #
1266 # Add support for ccmalloc memory debugging library if requested
1267 #
1268 have_ccmalloc='no'
1269 CCMALLOC_LIBS=''
1270 if test "$enable_ccmalloc" = 'yes'; then
1271     AC_PATH_PROG(CCMALLOCDelegate,ccmalloc,)
1272     if test -n "$CCMALLOCDelegate"; then
1273         eval `grep PREFIX= $CCMALLOCDelegate | sed -e 's/PREFIX/CCMALLOC_PREFIX/'`
1274         OLIBS="$LIBS"
1275         # Assume that gcc is used with ccmalloc.
1276         LIBS="$LIBS $CCMALLOC_PREFIX/lib/ccmalloc-gcc.o"
1277        AC_CHECK_LIB(ccmalloc,ccmalloc_malloc,CCMALLOC_LIBS="$CCMALLOC_PREFIX/lib/ccmalloc-gcc.o -lccmalloc -ldl",,-ldl)
1278         if test -n "$CCMALLOC_LIBS"; then
1279             LIBS="$OLIBS"
1280             LIBS="$LIBS $CCMALLOC_LIBS"
1281             have_ccmalloc='yes'
1282         else
1283             LIBS="$OLIBS"
1284         fi
1285     fi
1286 fi
1287
1288 #
1289 # Add support for efence memory debugging library if requested
1290 #
1291 if test "$enable_efence" = 'yes'; then
1292     EFENCE_LIBS='-lefence'
1293     LIBS="$EFENCE_LIBS $LIBS"
1294 fi
1295
1296 dnl ===========================================================================
1297
1298 #
1299 # Check for BZLIB
1300 #
1301
1302 AC_ARG_WITH([bzlib],
1303     [AC_HELP_STRING([--without-bzlib],
1304                     [disable BZLIB support])],
1305     [with_bzlib=$withval],
1306     [with_bzlib='yes'])
1307
1308 if test "$with_bzlib" != 'yes'; then
1309     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-bzlib=$with_bzlib "
1310 fi
1311
1312 have_bzlib='no'
1313 if test "$with_bzlib" != 'no'; then
1314     BZLIB_LIBS=''
1315     AC_MSG_RESULT([-------------------------------------------------------------])
1316     AC_MSG_CHECKING([for BZLIB])
1317     AC_MSG_RESULT([])
1318     failed=0
1319     passed=0
1320     found_libbz=0
1321     AC_CHECK_HEADER(bzlib.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
1322     AC_CHECK_LIB(bz2,BZ2_bzDecompress,found_libbz=`expr $found_libbz + 1`,,)
1323     if test "$native_win32_build" = 'yes'; then
1324       AC_CHECK_LIB(bz2,_imp__BZ2_decompress,found_libbz=`expr $found_libbz + 1`,,)
1325     fi
1326     if test $found_libbz -gt 0; then
1327       passed=`expr $passed + 1`
1328     else
1329       failed=`expr $failed + 1`
1330     fi
1331     AC_MSG_CHECKING(if BZLIB package is complete)
1332     if test $passed -gt 0; then
1333       if test $failed -gt 0; then
1334         AC_MSG_RESULT(no -- some components failed test)
1335         have_bzlib='no (failed tests)'
1336       else
1337         BZLIB_LIBS='-lbz2'
1338         LIBS="$BZLIB_LIBS $LIBS"
1339         AC_DEFINE(BZLIB_DELEGATE,1,Define if you have the bzip2 library)
1340         AC_MSG_RESULT(yes)
1341         have_bzlib='yes'
1342       fi
1343     else
1344       AC_MSG_RESULT(no)
1345     fi
1346 fi
1347 AM_CONDITIONAL(BZLIB_DELEGATE, test "$have_bzlib" = 'yes')
1348 AC_SUBST(BZLIB_LIBS)
1349
1350 #
1351 # Find the X11 include and library directories.
1352 #
1353 IPC_LIBS=''
1354 X11_LIBS=''
1355 XEXT_LIBS=''
1356 XT_LIBS=''
1357 AC_PATH_XTRA
1358 if test "$no_x" != 'yes'; then
1359     AC_MSG_RESULT([-------------------------------------------------------------])
1360     AC_MSG_CHECKING([for X11])
1361     AC_MSG_RESULT([])
1362     LDFLAGS="$LDFLAGS $X_LIBS"
1363     X11_LIBS="$X_PRE_LIBS -lX11 $X_EXTRA_LIBS"
1364     LIBS="$X11_LIBS $LIBS"
1365     CPPFLAGS="$CPPFLAGS $X_CFLAGS"
1366
1367     AC_DEFINE(X11_DELEGATE,1,Define if you have X11 library)dnl
1368
1369     #
1370     # Check for X11 shared memory extension
1371     #
1372     # shmctl is required to support the shared memory extension
1373     AC_CHECK_FUNC([shmctl],[have_shmctl='yes'],[])
1374     if test "$have_shmctl" != 'yes'; then
1375         PERSIST_LIBS=$LIBS
1376         LIBS="$LIBS -lcygipc"
1377         AC_TRY_LINK_FUNC([shmctl],[have_shmctl='yes'; IPC_LIBS='-lcygipc'],[])
1378         LIBS=$PERSIST_LIBS
1379     fi
1380
1381     if test "$have_shmctl" = 'yes'; then
1382         AC_CHECK_LIB([Xext],[XShmAttach],[XEXT_LIBS='-lXext' ; AC_DEFINE(HAVE_SHARED_MEMORY,1,X11 server supports shared memory extension)],[],[])
1383     fi
1384
1385     #
1386     # Check for X11 shape extension
1387     #
1388     AC_CHECK_LIB([Xext],[XShapeCombineMask],[XEXT_LIBS='-lXext' ; AC_DEFINE(HAVE_SHAPE,1,X11 server supports shape extension)],[],[])
1389     AC_CHECK_LIB(Xt,XtSetEventDispatcher,XT_LIBS='-lXt',,)
1390     LIBS="$XEXT_LIBS $XT_LIBS $LIBS"
1391 fi
1392 if test "$no_x" != 'yes'; then
1393   have_x='yes'
1394 else
1395   have_x='no'
1396 fi
1397 AM_CONDITIONAL(X11_DELEGATE, test "$have_x" = 'yes')
1398 AC_SUBST(X11_LIBS)
1399 AC_SUBST(XEXT_LIBS)
1400
1401 dnl ===========================================================================
1402
1403 #
1404 # Check for ZLIB
1405 #
1406 AC_ARG_WITH([zlib],
1407     [AC_HELP_STRING([--without-zlib],
1408                     [disable ZLIB support])],
1409     [with_zlib=$withval],
1410     [with_zlib='yes'])
1411
1412 if test "$with_zlib" != 'yes'; then
1413     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-zlib=$with_zlib "
1414 fi
1415
1416 have_zlib='no'
1417 ZLIB_LIBS=''
1418 dnl PNG requires zlib so enable zlib check if PNG is requested
1419 if test "$with_zlib" != 'no' || test "$with_png" != 'no'; then
1420     AC_MSG_RESULT([-------------------------------------------------------------])
1421     AC_MSG_CHECKING([for ZLIB])
1422     AC_MSG_RESULT([])
1423     ZLIB_LIBS=''
1424     failed=0
1425     passed=0
1426     AC_CHECK_HEADER(zconf.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
1427     AC_CHECK_HEADER(zlib.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
1428     AC_CHECK_LIB(z,compress,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
1429     AC_CHECK_LIB(z,uncompress,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
1430     AC_CHECK_LIB(z,deflate,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
1431     AC_CHECK_LIB(z,inflate,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
1432     AC_CHECK_LIB(z,gzseek,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
1433     AC_CHECK_LIB(z,gztell,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
1434     AC_MSG_CHECKING([if ZLIB package is complete])
1435     if test $passed -gt 0; then
1436         if test $failed -gt 0; then
1437             AC_MSG_RESULT([no -- some components failed test])
1438             have_zlib='no (failed tests)'
1439         else
1440             ZLIB_LIBS='-lz'
1441             LIBS="$ZLIB_LIBS $LIBS"
1442             AC_DEFINE(ZLIB_DELEGATE,1,Define if you have zlib compression library)
1443             AC_MSG_RESULT([yes])
1444             have_zlib='yes'
1445         fi
1446     else
1447         AC_MSG_RESULT([no])
1448     fi
1449 fi
1450 AM_CONDITIONAL(ZLIB_DELEGATE, test "$have_zlib" = 'yes')
1451 AC_SUBST(ZLIB_LIBS)
1452
1453 #
1454 # If profiling, then check for -ldl and dlopen (required for Solaris & gcc)
1455 #
1456 LIB_DL=''
1457 if test "$enable_profiling" = 'yes'; then
1458     AC_CHECK_LIB(dl,dlopen,LIB_DL='-ldl',,)
1459     LIBS="$LIB_DL $LIBS"
1460 fi
1461 AC_SUBST(LIB_DL)
1462
1463 dnl ===========================================================================
1464
1465 #
1466 # Check for Autotrace delegate library.
1467 #
1468 AC_ARG_WITH([autotrace],
1469     [AC_HELP_STRING([--with-autotrace],
1470                     [enable autotrace support])],
1471         [with_autotrace=$withval],
1472         [with_autotrace='no'])
1473
1474 if test "$with_autotrace" != 'yes'; then
1475     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-autotrace=$with_autotrace "
1476 fi
1477
1478 have_autotrace='no'
1479 AUTOTRACE_CFLAGS=""
1480 AUTOTRACE_LIBS=""
1481 AUTOTRACE_PKG=""
1482 if test "x$with_autotrace" = "xyes"; then
1483     AC_MSG_RESULT([-------------------------------------------------------------])
1484     PKG_CHECK_MODULES(AUTOTRACE,[autotrace >= 0.31.1], have_autotrace=yes, have_autotrace=no)
1485     AC_MSG_RESULT([])
1486 fi
1487
1488 if test "$have_autotrace" = 'yes'; then
1489     failed=0
1490     AC_DEFINE(AUTOTRACE_DELEGATE,1,Define if you have AUTOTRACE library)
1491     if test "$with_modules" = 'no'; then
1492     CPPFLAGS="$AUTOTRACE_CFLAGS $CPPFLAGS"
1493     fi
1494 fi
1495
1496 AM_CONDITIONAL(AUTOTRACE_DELEGATE,test "$have_autotrace" = 'yes')
1497 AC_SUBST(AUTOTRACE_CFLAGS)
1498 AC_SUBST(AUTOTRACE_LIBS)
1499
1500 dnl ===========================================================================
1501
1502 #
1503 # Check for Display Postscript delegate library.
1504 #
1505 AC_ARG_WITH([dps],
1506     [AC_HELP_STRING([--without-dps],
1507                     [disable Display Postscript support])],
1508     [with_dps=$withval],
1509     [with_dps='yes'])
1510
1511 if test "$with_dps" != 'yes'; then
1512     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-dps=$with_dps "
1513 fi
1514
1515 have_dps='no'
1516 DPS_LIBS=''
1517 if test "$with_dps" != 'no' && test "$with_x" != 'no'; then
1518     AC_MSG_RESULT([-------------------------------------------------------------])
1519     AC_MSG_CHECKING([for DPS])
1520     AC_MSG_RESULT([])
1521     failed=0
1522     passed=0
1523     PERSIST_CPPFLAGS="$CPPFLAGS"
1524     CPPFLAGS="$CPPFLAGS -I${ac_x_includes}/X11"
1525     AC_CHECK_HEADER(DPS/dpsXclient.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
1526     # DPS issues:
1527     # XFree86-4.x needs -lXt to provide XtMalloc for -ldps.
1528     # Cygwin doesn't deliver -lXt as a DLL, which prevents a DLL build.
1529     # Adobe DPS (as delivered on Solaris) doesn't require -lXt.
1530     # ImageMagick itself doesn't use -lXt.
1531     have_libdps='no'
1532     LIBDPS_XT=''
1533     AC_CHECK_LIB(dps,DPSInitialize,have_libdps='yes',have_libdps='no',)
1534     if test "$have_libdps" != 'yes'; then
1535         # Unset cache variable so we can try again.
1536         unset ac_cv_lib_dps_DPSInitialize
1537         AC_CHECK_LIB(dps,DPSInitialize,have_libdps='yes',have_libdps='no',-lXt)
1538         if test "$have_libdps" = 'yes'; then
1539             LIBDPS_XT='-lXt'
1540         fi
1541     fi
1542     if test "$have_libdps" = 'yes'; then
1543         passed=`expr $passed + 1`
1544     else
1545         failed=`expr $failed + 1`
1546     fi
1547     AC_CHECK_LIB(dpstk,XDPSPixelsPerPoint,passed=`expr $passed + 1`,failed=`expr $failed + 1`,-ldps $LIBDPS_XT)
1548     AC_MSG_CHECKING([if DPS package is complete])
1549     if test $passed -gt 0; then
1550         if test $failed -gt 0; then
1551             AC_MSG_RESULT([no -- some components failed test])
1552             have_dps='no (failed tests)'
1553             CPPFLAGS="$PERSIST_CPPFLAGS"
1554         else
1555             DPS_LIBS="-ldpstk -ldps ${LIBDPS_XT}"
1556             LIBS="$DPS_LIBS $LIBS"
1557             AC_DEFINE(DPS_DELEGATE,1,Define if you have Display Postscript)
1558             AC_MSG_RESULT([yes])
1559             have_dps='yes'
1560         fi
1561     else
1562         AC_MSG_RESULT([no])
1563         CPPFLAGS=$PERSIST_CPPFLAGS
1564     fi
1565 fi
1566 AM_CONDITIONAL(DPS_DELEGATE, test "$have_dps" = 'yes')
1567 AC_SUBST(DPS_LIBS)
1568
1569 dnl ===========================================================================
1570
1571 #
1572 # Check for DJVU delegate library.
1573 #
1574 AC_ARG_WITH([djvu],
1575     [AC_HELP_STRING([--without-djvu],
1576                     [disable DjVu support])],
1577     [with_djvu=$withval],
1578     [with_djvu='yes'])
1579
1580 if test "$with_djvu" != 'yes'; then
1581     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-djvu=$with_djvu "
1582 fi
1583
1584 have_djvu='no'
1585 DJVU_LIBS=''
1586 if test "$with_djvu" != 'no'; then
1587     AC_MSG_RESULT([-------------------------------------------------------------])
1588     AC_MSG_CHECKING([for DJVU])
1589     AC_MSG_RESULT([])
1590     failed=0
1591     passed=0
1592     AC_CHECK_HEADER(libdjvu/ddjvuapi.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
1593     AC_CHECK_LIB(djvulibre,ddjvu_context_create,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
1594     AC_MSG_CHECKING([if DJVU package is complete])
1595     if test $passed -gt 0; then
1596         if test $failed -gt 0; then
1597             AC_MSG_RESULT([no -- some components failed test])
1598             have_djvu='no (failed tests)'
1599         else
1600             DJVU_LIBS='-ldjvulibre'
1601             LIBS="$DJVU_LIBS $LIBS"
1602             AC_DEFINE(DJVU_DELEGATE,1,Define if you have DJVU library)
1603             AC_MSG_RESULT([yes])
1604             have_djvu='yes'
1605         fi
1606     else
1607         AC_MSG_RESULT([no])
1608     fi
1609 fi
1610 AM_CONDITIONAL(DJVU_DELEGATE, test "$have_djvu" = 'yes')
1611 AC_SUBST(DJVU_LIBS)
1612
1613 dnl ===========================================================================
1614
1615 #
1616 # Set DejaVu font directory.
1617 #
1618 AC_ARG_WITH([dejavu-font-dir],
1619     [AC_HELP_STRING([--with-dejavu-font-dir=DIR],
1620                     [DejaVu font directory])],
1621     [with_dejavu_font_dir=$withval],
1622     [with_dejavu_font_dir='default'])
1623
1624 if test "$with_dejavu_font_dir" != 'default'; then
1625     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-dejavu-font-dir=$with_dejavu_font_dir "
1626 fi
1627
1628 dnl ===========================================================================
1629
1630 #
1631 # Check for FFTW delegate library.
1632 #
1633 AC_ARG_WITH([fftw],
1634     [AC_HELP_STRING([--without-fftw],
1635                     [disable FFTW support])],
1636     [with_fftw=$withval],
1637     [with_fftw='yes'])
1638
1639 if test "$with_fftw" != 'yes'; then
1640     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-fftw=$with_fftw "
1641 fi
1642
1643 have_fftw='no'
1644 FFTW_LIBS=''
1645 if test "$with_fftw" != 'no'; then
1646     AC_MSG_RESULT([-------------------------------------------------------------])
1647     AC_MSG_CHECKING([for FFTW])
1648     AC_MSG_RESULT([])
1649     failed=0
1650     passed=0
1651     AC_CHECK_HEADER(fftw3.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
1652     AC_CHECK_LIB(fftw3,fftw_execute,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
1653     AC_MSG_CHECKING([if FFTW package is complete])
1654     if test $passed -gt 0; then
1655         if test $failed -gt 0; then
1656             AC_MSG_RESULT([no -- some components failed test])
1657             have_fftw='no (failed tests)'
1658         else
1659             FFTW_LIBS='-lfftw3'
1660             LIBS="$FFTW_LIBS $LIBS"
1661             AC_DEFINE(FFTW_DELEGATE,1,Define if you have FFTW library)
1662             AC_MSG_RESULT([yes])
1663             have_fftw='yes'
1664         fi
1665     else
1666         AC_MSG_RESULT([no])
1667     fi
1668 fi
1669 AM_CONDITIONAL(FFTW_DELEGATE, test "$have_fftw" = 'yes')
1670 AC_SUBST(FFTW_LIBS)
1671
1672 dnl ===========================================================================
1673
1674 #
1675 # Check for FlashPIX delegate library.
1676 #
1677 AC_ARG_WITH([fpx],
1678     [AC_HELP_STRING([--without-fpx],
1679                     [disable FlashPIX support])],
1680     [with_fpx=$withval],
1681     [with_fpx='yes'])
1682
1683 if test "$with_fpx" != 'yes'; then
1684     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-fpx=$with_fpx "
1685 fi
1686
1687 have_fpx='no'
1688 FPX_LIBS=''
1689 if test "$with_fpx" != 'no'; then
1690     AC_MSG_RESULT([-------------------------------------------------------------])
1691     AC_MSG_CHECKING([for FlashPIX])
1692     AC_MSG_RESULT([])
1693     failed=0
1694     passed=0
1695     AC_LANG_PUSH(C++)
1696     AC_CHECK_HEADER(fpxlib.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
1697     AC_CHECK_LIB(fpx,FPX_OpenImageByFilename,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
1698     AC_LANG_POP
1699     AC_MSG_CHECKING([if FlashPIX package is complete])
1700     if test $passed -gt 0; then
1701         if test $failed -gt 0; then
1702             AC_MSG_RESULT([no -- some components failed test])
1703             have_fpx='no (failed tests)'
1704         else
1705             FPX_LIBS='-lfpx'
1706             AC_DEFINE(FPX_DELEGATE,1,Define if you have FlashPIX library)
1707             AC_MSG_RESULT([yes])
1708             have_fpx='yes'
1709             PERLMAINCC="$CXX"
1710         fi
1711     else
1712         AC_MSG_RESULT([no])
1713     fi
1714 fi
1715 AM_CONDITIONAL(FPX_DELEGATE, test "$have_fpx" = 'yes')
1716 AC_SUBST(FPX_LIBS)
1717
1718 dnl ===========================================================================
1719
1720 #
1721 # Check for fontconfig delegate library.
1722 #
1723 AC_ARG_WITH([fontconfig],
1724     [AC_HELP_STRING([--without-fontconfig],
1725                     [disable fontconfig support])],
1726         [with_fontconfig=$withval],
1727         [with_fontconfig=$have_x])
1728
1729 if test "$with_fontconfig" != 'yes'; then
1730     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-fontconfig=$with_fontconfig "
1731 fi
1732
1733 have_fontconfig='no'
1734 FONTCONFIG_CFLAGS=""
1735 FONTCONFIG_LIBS=""
1736 FONTCONFIG_PKG=""
1737 if test "x$with_fontconfig" = "xyes"; then
1738     AC_MSG_RESULT([-------------------------------------------------------------])
1739     PKG_CHECK_MODULES(FONTCONFIG,[fontconfig >= 2.1.0], have_fontconfig=yes, have_fontconfig=no)
1740     AC_MSG_RESULT([])
1741 fi
1742
1743 if test "$have_fontconfig" = 'yes'; then
1744   AC_DEFINE(FONTCONFIG_DELEGATE,1,Define if you have FONTCONFIG library)
1745   if test "$with_modules" = 'no'; then
1746     CPPFLAGS="$FONTCONFIG_CFLAGS $CPPFLAGS"
1747   fi
1748 fi
1749
1750 AM_CONDITIONAL(FONTCONFIG_DELEGATE,test "$have_fontconfig" = 'yes')
1751 AC_SUBST(FONTCONFIG_CFLAGS)
1752 AC_SUBST(FONTCONFIG_LIBS)
1753
1754 dnl ===========================================================================
1755
1756 #
1757 # Check for freetype delegate library.
1758 #
1759 AC_ARG_WITH([freetype],
1760     [AC_HELP_STRING([--without-freetype],
1761                     [disable Freetype support])],
1762     [with_freetype=$withval],
1763     [with_freetype='yes'])
1764
1765
1766 if test "$with_freetype" != 'yes'; then
1767     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-freetype=$with_freetype "
1768 fi
1769
1770 have_freetype='no'
1771 FREETYPE_LIBS=''
1772 if test "$with_freetype" != 'no'; then
1773     AC_MSG_RESULT([-------------------------------------------------------------])
1774     AC_MSG_CHECKING([for FreeType 2.0])
1775     AC_MSG_RESULT([])
1776     failed=0
1777     passed=0
1778     PERSIST_LIBS="$LIBS"
1779     PERSIST_CPPFLAGS="$CPPFLAGS"
1780     if test "$enable_delegate_build" != 'no' && test -d "$builddir/freetype/include"; then
1781         :
1782     else
1783         freetype_config=''
1784         AC_CHECK_PROGS(freetype_config,freetype-config,)dnl
1785         if test -n "$freetype_config"; then
1786             freetype_cflags=`$freetype_config --cflags`
1787             freetype_libs=`$freetype_config --libs`
1788             LIBS="$LIBS $freetype_libs"
1789             CPPFLAGS="$freetype_cflags $CPPFLAGS"
1790         fi
1791     fi
1792
1793 dnl First see if there is a library
1794     if test "$FREETYPE_LIBS" = ''; then
1795         AC_CHECK_LIB(freetype,FT_Init_FreeType,FREETYPE_LIBS='-lfreetype',,)
1796         if test "$FREETYPE_LIBS" != ''; then
1797             passed=`expr $passed + 1`
1798         else
1799             failed=`expr $failed + 1`
1800             LIBS="$PERSIST_LIBS"
1801         fi
1802     fi
1803
1804 dnl Now test for the headers
1805     AC_CHECK_HEADER([ft2build.h],[FT2BUILD_H='#include <ft2build.h>'],[ft2build=''],[])
1806     AC_CHECK_HEADER(freetype/freetype.h,[have_freetype_h='yes'],[have_freetype_h='no'],[$FT2BUILD_H])
1807     if test "$ac_cv_header_ft2build_h" = 'yes' || test "$have_freetype_h" = 'yes'; then
1808         passed=`expr $passed + 1`
1809     else
1810         failed=`expr $failed + 1`
1811         CPPFLAGS="$PERSIST_CPPFLAGS"
1812     fi
1813
1814     AC_MSG_CHECKING([if FreeType package is complete])
1815     if test $passed -gt 0; then
1816         if test $failed -gt 0; then
1817             FREETYPE_LIBS=''
1818             AC_MSG_RESULT([no -- some components failed test])
1819             have_freetype='no (failed tests)'
1820         else
1821             LIBS="$FREETYPE_LIBS $LIBS"
1822             AC_DEFINE(FREETYPE_DELEGATE,1,Define if you have FreeType (TrueType font) library)
1823             if test "$ac_cv_header_ft2build_h" = 'yes'; then
1824                 AC_DEFINE([HAVE_FT2BUILD_H],[1],[Define to 1 if you have the <ft2build.h> header file.])
1825             fi
1826             AC_MSG_RESULT([yes])
1827             have_freetype='yes'
1828         fi
1829     else
1830         AC_MSG_RESULT([no])
1831     fi
1832 fi
1833 AM_CONDITIONAL(FREETYPE_DELEGATE,test "$have_freetype" = 'yes')
1834 AC_SUBST(FREETYPE_LIBS)
1835
1836 dnl ===========================================================================
1837
1838 dnl ===========================================================================
1839
1840 #
1841 # Check for Ghostscript library or framework.
1842 #
1843 # Test for iapi.h & test for gsapi_new_instance in -lgs
1844 # or -framework Ghostscript
1845
1846 AC_ARG_WITH([gslib],
1847     [AC_HELP_STRING([--without-gslib],
1848                     [enable Ghostscript library support])],
1849     [with_gslib=$withval],
1850     [with_gslib='no'])
1851
1852 gslib_framework='no'
1853 if test "$with_gslib" != 'yes'; then
1854     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-gslib=$with_gslib "
1855 fi
1856
1857 have_gslib='no'
1858 GS_LIBS=''
1859 if test "$with_gslib" != 'no'; then
1860     AC_MSG_RESULT([-------------------------------------------------------------])
1861     AC_MSG_CHECKING([for Ghostscript])
1862     AC_MSG_RESULT([])
1863     framework=0
1864     failed=0
1865     passed=0
1866     AC_CHECK_HEADER(ghostscript/iapi.h,passed=`expr $passed + 1`,
1867         failed=`expr $failed + 1`,)
1868     AC_CHECK_HEADER(ghostscript/ierrors.h,passed=`expr $passed + 1`,
1869         failed=`expr $failed + 1`,)
1870     AC_CHECK_FRAMEWORK(Ghostscript,gsapi_new_instance,framework=`expr $framework + 1`,
1871     AC_CHECK_LIB(gs,gsapi_new_instance,passed=`expr $passed + 1`,failed=`expr $failed + 1`,),)
1872     AC_MSG_CHECKING([if Ghostscript package is complete])
1873     if test $passed -gt 0; then
1874         if test $failed -gt 0; then
1875             AC_MSG_RESULT([no -- some components failed test])
1876             have_gslib='no (failed tests)'
1877         else
1878             if test $framework -gt 0; then
1879                 GS_LIBS='-framework Ghostscript'
1880                 gslib_framework='yes'
1881                 AC_MSG_RESULT([yes, using framework.])
1882             else
1883                 AC_MSG_RESULT([yes, using library.])
1884                 GS_LIBS='-lgs'
1885             fi
1886             LIBS="$GS_LIBS $LIBS"
1887             AC_DEFINE(GS_DELEGATE,1,Define if you have Ghostscript library or framework)
1888             have_gslib='yes'
1889         fi
1890     else
1891         AC_MSG_RESULT([no])
1892     fi
1893 fi
1894 AM_CONDITIONAL(GS_DELEGATE, test "$have_gslib" = 'yes')
1895 AC_SUBST(GS_LIBS)
1896
1897 # Set default font search path
1898 AC_ARG_WITH([fontpath],
1899     [AC_HELP_STRING([--with-fontpath=DIR],
1900                     [prepend to default font search path])],
1901     [with_fontpath=$withval],
1902     [with_fontpath=''])
1903
1904 if test "$with_fontpath" != "yes" && test -z "$with_fontpath"; then
1905     with_fontpath=''
1906 else
1907     AC_DEFINE_UNQUOTED(MAGICK_FONT_PATH,"$with_fontpath",Define to prepend to default font search path.)
1908 fi
1909 if test "$with_fontpath=" != ''; then
1910     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-fontpath=$with_fontpath "
1911 fi
1912
1913 # Set Ghostscript font directory
1914 AC_ARG_WITH([gs-font-dir],
1915     [AC_HELP_STRING([--with-gs-font-dir=DIR],
1916                     [Ghostscript font directory])],
1917     [with_gs_font_dir=$withval],
1918     [with_gs_font_dir='default'])
1919
1920 if test "$with_gs_font_dir" != 'default'; then
1921     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-gs-font-dir=$with_gs_font_dir "
1922 fi
1923
1924 dnl ===========================================================================
1925
1926 #
1927 # Check for GVC delegate library.
1928 #
1929 AC_ARG_WITH(gvc,
1930     [AC_HELP_STRING([--without-gvc],
1931                     [disable GVC support])],
1932     [with_gvc=$withval],
1933     [with_gvc='yes'])
1934
1935 if test "$with_gvc" != 'yes'; then
1936     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-gvc=$with_gvc "
1937 fi
1938
1939 GVC_PKG=""
1940 if test "x$with_gvc" = "xyes"; then
1941     AC_MSG_RESULT([-------------------------------------------------------------])
1942     PKG_CHECK_MODULES(GVC,[libgvc >= 2.9.0], have_gvc=yes, have_gvc=no)
1943     AC_MSG_RESULT([])
1944 fi
1945
1946 if test "$have_gvc" = 'yes'; then
1947     AC_DEFINE(GVC_DELEGATE,1,Define if you have GVC library)
1948     if test "$with_modules" = 'no'; then
1949         CPPFLAGS="$GVC_CFLAGS $CPPFLAGS"
1950     fi
1951 fi
1952
1953 AM_CONDITIONAL(GVC_DELEGATE, test "$have_gvc" = 'yes')
1954 AC_SUBST(GVC_CFLAGS)
1955 AC_SUBST(GVC_LIBS)
1956
1957 dnl ===========================================================================
1958
1959 #
1960 # Check for JBIG delegate library.
1961 #
1962
1963 AC_ARG_WITH([jbig],
1964     [AC_HELP_STRING([--without-jbig],
1965                     [disable JBIG support])],
1966     [with_jbig=$withval],
1967     [with_jbig='yes'])
1968
1969 have_jbig='no'
1970 JBIG_LIBS=''
1971 if test "$with_jbig" != 'no'; then
1972     AC_MSG_RESULT([-------------------------------------------------------------])
1973     AC_MSG_CHECKING([for JBIG])
1974     AC_MSG_RESULT([])
1975     failed=0
1976     passed=0
1977     AC_CHECK_HEADER(jbig.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
1978     AC_CHECK_LIB(jbig,jbg_dec_init,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
1979     AC_MSG_CHECKING([if JBIG package is complete])
1980     if test $passed -gt 0; then
1981         if test $failed -gt 0; then
1982             AC_MSG_RESULT([no -- some components failed test])
1983             have_jbig='no (failed tests)'
1984         else
1985             JBIG_LIBS='-ljbig'
1986             LIBS="$JBIG_LIBS $LIBS"
1987             AC_DEFINE(JBIG_DELEGATE,1,Define if you have JBIG library)
1988             AC_MSG_RESULT([yes])
1989             have_jbig='yes'
1990         fi
1991     else
1992         AC_MSG_RESULT([no])
1993     fi
1994 fi
1995 AM_CONDITIONAL(JBIG_DELEGATE, test "$have_jbig" = 'yes')
1996 AC_SUBST(JBIG_LIBS)
1997
1998 dnl ===========================================================================
1999
2000 #
2001 # Check for JPEG delegate library.
2002 #
2003 AC_ARG_WITH([jpeg],
2004     [AC_HELP_STRING([--without-jpeg],
2005                     [disable JPEG support])],
2006     [with_jpeg=$withval],
2007     [with_jpeg='yes'])
2008
2009 if test "$with_jpeg" != 'yes'; then
2010     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-jpeg=$with_jpeg "
2011 fi
2012
2013 have_jpeg='no'
2014 JPEG_LIBS=''
2015 if test "$with_jpeg" != 'no'; then
2016     AC_MSG_RESULT([-------------------------------------------------------------])
2017     AC_MSG_CHECKING([for JPEG])
2018     AC_MSG_RESULT([])
2019     failed=0
2020     passed=0
2021     AC_CHECK_HEADER(jconfig.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
2022     AC_CHECK_HEADER(jerror.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
2023     AC_CHECK_HEADER(jmorecfg.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
2024     AC_CHECK_HEADER(jpeglib.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
2025     AC_CHECK_LIB(jpeg,jpeg_read_header,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
2026
2027 # Test for compatible JPEG library
2028 if test "$ac_cv_jpeg_version_ok" != 'yes'; then
2029 AC_CACHE_CHECK(for JPEG library is version 6b or later, ac_cv_jpeg_version_ok,
2030 [AC_TRY_COMPILE(
2031 #include <stdio.h>
2032 #include <stdlib.h>
2033 #include <jpeglib.h>
2034 ,
2035 changequote(<<, >>)dnl
2036 <<
2037 #if JPEG_LIB_VERSION < 62
2038 #error IJG JPEG library must be version 6b or newer!
2039 #endif
2040 return 0;
2041 >>,
2042 changequote([, ])dnl
2043 ac_cv_jpeg_version_ok='yes'; passed=`expr $passed + 1`,
2044 ac_cv_jpeg_version_ok='no'; failed=`expr $failed + 1`)])
2045 fi
2046     AC_MSG_CHECKING([if JPEG package is complete])
2047     if test $passed -gt 0; then
2048         if test $failed -gt 0; then
2049             AC_MSG_RESULT([no -- some components failed test])
2050             have_jpeg='no (failed tests)'
2051         else
2052             JPEG_LIBS='-ljpeg'
2053             LIBS="$JPEG_LIBS $LIBS"
2054             AC_DEFINE(JPEG_DELEGATE,1,Define if you have JPEG library)
2055             AC_MSG_RESULT([yes])
2056             have_jpeg='yes'
2057         fi
2058     else
2059         AC_MSG_RESULT([no])
2060     fi
2061 fi
2062 AM_CONDITIONAL(JPEG_DELEGATE, test "$have_jpeg" = 'yes')
2063 AC_SUBST(JPEG_LIBS)
2064
2065 dnl ===========================================================================
2066
2067 #
2068 # Check for JPEG Version 2 delegate library.
2069 #
2070 AC_ARG_WITH([jp2],
2071     [AC_HELP_STRING([--without-jp2],
2072                     [disable JPEG-2000 support])],
2073     [with_jp2=$withval],
2074     [with_jp2='yes'])
2075
2076 if test "$with_jp2" != 'yes'; then
2077     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-jp2=$with_jp2 "
2078 fi
2079
2080 have_jp2='no'
2081 JP2_LIBS=''
2082 if test "$with_jp2" != 'no'; then
2083     AC_MSG_RESULT([-------------------------------------------------------------])
2084     AC_MSG_CHECKING([for JPEG Version 2])
2085     AC_MSG_RESULT([])
2086     failed=0
2087     passed=0
2088     AC_CHECK_HEADER(jasper/jasper.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
2089     AC_CHECK_LIB(jasper,jas_stream_fopen,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
2090     AC_MSG_CHECKING([if JPEG version 2 support package is complete])
2091     if test $passed -gt 0; then
2092         if test $failed -gt 0; then
2093             AC_MSG_RESULT([no -- some components failed test])
2094             have_jp2='no (failed tests)'
2095         else
2096             JP2_LIBS='-ljasper'
2097             LIBS="$JP2_LIBS $LIBS"
2098             AC_DEFINE(JP2_DELEGATE,1,Define if you have JPEG version 2 "Jasper" library)
2099             AC_MSG_RESULT([yes])
2100             have_jp2='yes'
2101         fi
2102     else
2103         AC_MSG_RESULT([no])
2104     fi
2105 fi
2106 AM_CONDITIONAL(JP2_DELEGATE, test "$have_jp2" = 'yes')
2107 AC_SUBST(JP2_LIBS)
2108
2109 dnl ===========================================================================
2110
2111 #
2112 # Check for LCMS delegate library.
2113 #
2114 # Disable LCMS.
2115 AC_ARG_WITH(lcms,
2116         [  --without-lcms          disable lcms (v1.1X) support],
2117         [with_lcms=$withval],
2118         [with_lcms='yes'])
2119 if test "$with_lcms" != 'yes' ; then
2120     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-lcms=$with_lcms "
2121 fi
2122
2123 # Disable LCMS2.
2124 AC_ARG_WITH(lcms2,
2125         [  --without-lcms2         disable lcms (v2.X) support],
2126         [with_lcms2=$withval],
2127         [with_lcms2='yes'])
2128 if test "$with_lcms2" != 'yes' ; then
2129     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-lcms2=$with_lcms2 "
2130 fi
2131
2132 have_lcms2='no'
2133 LCMS_LIBS=''
2134 if test "$with_lcms2" != 'no'; then
2135     AC_MSG_RESULT([-------------------------------------------------------------])
2136     AC_MSG_CHECKING([for LCMS v2])
2137     AC_MSG_RESULT()
2138     failed=0
2139     passed=0
2140     have_lcms_header='no'
2141
2142     # Check for <lcms2.h>
2143     AC_CHECK_HEADER(lcms2.h,have_lcms_header='yes',,)
2144     if test "$have_lcms_header" = 'yes'; then
2145        AC_DEFINE(HAVE_LCMS2_H,1,Define if you have the <lcms2.h> header file.)
2146        passed=`expr $passed + 1`
2147     fi
2148
2149     # Check for <lcms2/lcms2.h)
2150     if test "$have_lcms_header" != 'yes'; then
2151       AC_CHECK_HEADER(lcms2/lcms2.h,have_lcms_header='yes',,)
2152       if test "$have_lcms_header" = 'yes'; then
2153         passed=`expr $passed + 1`
2154         AC_DEFINE(HAVE_LCMS2_LCMS2_H,1,Define if you have the <lcms2/lcms2.h> header file.)
2155       fi
2156     fi
2157
2158     # Failed to find lcms header?
2159     if test "$have_lcms_header" != 'yes'; then
2160       failed=`expr $failed + 1`
2161     fi
2162
2163     AC_CHECK_LIB(lcms2,cmsSetLogErrorHandler,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
2164     AC_MSG_CHECKING(if LCMS v2 package is complete)
2165     if test $passed -gt 0; then
2166       if test $failed -gt 0; then
2167         AC_MSG_RESULT(no -- some components failed test)
2168         have_lcms2='no (failed tests)'
2169       else
2170         LCMS_LIBS='-llcms2'
2171         LIBS="$LCMS_LIBS $LIBS"
2172         AC_MSG_RESULT(yes)
2173         have_lcms2='yes'
2174       fi
2175     else
2176       AC_MSG_RESULT(no)
2177     fi
2178 fi
2179
2180 #
2181 # Check for LCMS v1 (1.11 or later)
2182 #
2183 if test $have_lcms2 = 'yes'; then
2184   with_lcms='no'
2185 fi
2186
2187 have_lcms='no'
2188 if test "$with_lcms" != 'no'; then
2189     AC_MSG_RESULT([-------------------------------------------------------------])
2190     AC_MSG_CHECKING([for LCMS v1.1X])
2191     AC_MSG_RESULT()
2192     failed=0
2193     passed=0
2194     have_lcms_header='no'
2195
2196     # Check for <lcms.h>
2197     if test "$have_lcms_header" != 'yes'; then
2198       AC_CHECK_HEADER(lcms.h,have_lcms_header='yes',,)
2199       if test "$have_lcms_header" = 'yes'; then
2200         passed=`expr $passed + 1`
2201         AC_DEFINE(HAVE_LCMS_H,1,Define if you have the <lcms.h> header file.)
2202       fi
2203     fi
2204
2205     # Check for <lcms/lcms.h>
2206     if test "$have_lcms_header" != 'yes'; then
2207       AC_CHECK_HEADER(lcms/lcms.h,have_lcms_header='yes',,)
2208       if test "$have_lcms_header" = 'yes'; then
2209         passed=`expr $passed + 1`
2210         AC_DEFINE(HAVE_LCMS_LCMS_H,1,Define if you have the <lcms/lcms.h> header file.)
2211       fi
2212     fi
2213
2214     # Failed to find lcms header?
2215     if test "$have_lcms_header" != 'yes'; then
2216       failed=`expr $failed + 1`
2217     fi
2218
2219     AC_CHECK_LIB(lcms,cmsSetErrorHandler,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
2220     AC_MSG_CHECKING(if LCMS package is complete)
2221     if test $passed -gt 0; then
2222       if test $failed -gt 0; then
2223         AC_MSG_RESULT(no -- some components failed test)
2224         have_lcms='no (failed tests)'
2225       else
2226         LCMS_LIBS='-llcms'
2227         LIBS="$LCMS_LIBS $LIBS"
2228         AC_MSG_RESULT(yes)
2229         have_lcms='yes'
2230       fi
2231     else
2232       AC_MSG_RESULT(no)
2233     fi
2234 fi
2235
2236 AM_CONDITIONAL(LCMS_DELEGATE, test "$have_lcms2" = 'yes' -o "$have_lcms" = 'yes')
2237 if test "$have_lcms2" = 'yes' -o "$have_lcms" = 'yes'; then
2238   AC_DEFINE(LCMS_DELEGATE,1,[Define if you have LCMS (v1.11 or later) library])
2239 fi
2240 AC_SUBST(LCMS_LIBS)
2241
2242
2243 dnl ===========================================================================
2244
2245 #
2246 # Check for the LQR (Liquid Rescale) delegate library.
2247 #
2248 AC_ARG_WITH([lqr],
2249     [AC_HELP_STRING([--without-lqr],
2250                     [disable Liquid Rescale support])],
2251     [with_lqr=$withval],
2252     [with_lqr='yes'])
2253
2254 if test "$with_lqr" != 'yes'; then
2255     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-lqr=$with_lqr "
2256 fi
2257
2258 have_lqr='no'
2259 LQR_CFLAGS=""
2260 LQR_LIBS=""
2261 LQR_PKG=""
2262 if test "x$with_lqr" = "xyes"; then
2263     AC_MSG_RESULT([-------------------------------------------------------------])
2264     PKG_CHECK_MODULES(LQR,[lqr-1 >= 0.1.0], have_lqr=yes, have_lqr=no)
2265     AC_MSG_RESULT([])
2266 fi
2267
2268 if test "$have_lqr" = 'yes'; then
2269     AC_DEFINE(LQR_DELEGATE,1,Define if you have LQR library)
2270     CFLAGS="$LQR_CFLAGS $CFLAGS"
2271 fi
2272
2273 AM_CONDITIONAL(LQR_DELEGATE, test "$have_lqr" = 'yes')
2274 AC_SUBST(LQR_CFLAGS)
2275 AC_SUBST(LQR_LIBS)
2276
2277 dnl ===========================================================================
2278
2279 # Disable LZMA (lzma library)
2280 AC_ARG_WITH(lzma,
2281               [  --without-lzma          disable LZMA support],
2282               [with_lzma=$withval],
2283               [with_lzma='yes'])
2284 if test "$with_lzma" != 'yes' ; then
2285     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-lzma=$with_lzma "
2286 fi
2287
2288 #
2289 # Check for LZMA
2290 #
2291 have_lzma='no'
2292 LZMA_LIBS=''
2293 if test "$with_lzma" != 'no' || test "$with_tiff" != 'no'; then
2294     AC_MSG_RESULT([-------------------------------------------------------------])
2295   AC_MSG_CHECKING(for LZMA)
2296   AC_MSG_RESULT()
2297   failed=0
2298   passed=0
2299   AC_CHECK_HEADER(lzma.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
2300   AC_CHECK_LIB(lzma,lzma_code,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
2301   AC_MSG_CHECKING(if LZMA package is complete)
2302   if test $passed -gt 0; then
2303     if test $failed -gt 0; then
2304       AC_MSG_RESULT(no -- some components failed test)
2305       have_lzma='no (failed tests)'
2306     else
2307       LZMA_LIBS='-llzma'
2308       LIBS="$LZMA_LIBS $LIBS"
2309       AC_DEFINE(LZMA_DELEGATE,1,Define if you have lzma compression library)
2310       AC_MSG_RESULT(yes)
2311       have_lzma='yes'
2312     fi
2313   else
2314     AC_MSG_RESULT(no)
2315   fi
2316 fi
2317 AM_CONDITIONAL(LZMA_DELEGATE, test "$have_lzma" = 'yes')
2318 AC_SUBST(LZMA_LIBS)
2319
2320 dnl ===========================================================================
2321
2322 #
2323 # Check for the OpenEXR delegate library.
2324 #
2325 AC_ARG_WITH([openexr],
2326     [AC_HELP_STRING([--without-openexr],
2327                     [disable OpenEXR support])],
2328     [with_openexr=$withval],
2329     [with_openexr='yes'])
2330
2331 if test "$with_openexr" != 'yes'; then
2332     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-openexr=$with_openexr "
2333 fi
2334
2335 have_openexr='no'
2336 OPENEXR_CFLAGS=""
2337 OPENEXR_LIBS=""
2338 OPENEXR_PKG=""
2339 if test "x$with_openexr" = "xyes"; then
2340     AC_MSG_RESULT([-------------------------------------------------------------])
2341     PKG_CHECK_MODULES(OPENEXR,[OpenEXR >= 1.0.6], have_openexr=yes, have_openexr=no)
2342     AC_MSG_RESULT([])
2343 fi
2344
2345 if test "$have_openexr" = 'yes'; then
2346     AC_DEFINE(OPENEXR_DELEGATE,1,Define if you have OPENEXR library)
2347     if test "$with_modules" = 'no'; then
2348         CFLAGS="$OPENEXR_CFLAGS $CFLAGS"
2349     fi
2350 fi
2351
2352 AM_CONDITIONAL(OPENEXR_DELEGATE, test "$have_openexr" = 'yes')
2353 AC_SUBST(OPENEXR_CFLAGS)
2354 AC_SUBST(OPENEXR_LIBS)
2355
2356 dnl ===========================================================================
2357
2358 #
2359 # Check for PNG delegate library.
2360 #
2361 AC_ARG_WITH(png,
2362     [AC_HELP_STRING([--without-png],
2363                     [disable PNG support])],
2364     [with_png=$withval],
2365     [with_png='yes'])
2366
2367 if test "$with_png" != 'yes'; then
2368     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-png=$with_png "
2369 fi
2370
2371 have_png='no'
2372 PNG_LIBS=''
2373 if test "$with_png" != 'no'; then
2374     AC_MSG_RESULT([-------------------------------------------------------------])
2375     AC_MSG_CHECKING([for PNG])
2376     AC_MSG_RESULT([])
2377     failed=0
2378     passed=0
2379     AC_CHECK_HEADER(png.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
2380     AC_CHECK_LIB(png,png_get_io_ptr,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
2381     AC_MSG_CHECKING([if PNG package is complete])
2382     if test $passed -gt 0; then
2383         if test $failed -gt 0; then
2384             AC_MSG_RESULT([no -- some components failed test])
2385             have_png='no (failed tests)'
2386         else
2387             PNG_LIBS='-lpng'
2388             LIBS="$PNG_LIBS $LIBS"
2389             AC_DEFINE(PNG_DELEGATE,1,Define if you have PNG library)
2390             AC_MSG_RESULT([yes])
2391             have_png='yes'
2392         fi
2393     else
2394         AC_MSG_RESULT([no])
2395     fi
2396 fi
2397 AM_CONDITIONAL(PNG_DELEGATE,test "$have_png" = 'yes')
2398 AC_SUBST(PNG_LIBS)
2399
2400 dnl ===========================================================================
2401
2402 #
2403 # Check for RSVG delegate library.
2404 #
2405 AC_ARG_WITH([rsvg],
2406     [AC_HELP_STRING([--without-rsvg],
2407                     [disable RSVG support])],
2408     [with_rsvg=$withval],
2409     [with_rsvg=$have_x])
2410
2411 if test "$with_rsvg" != 'yes'; then
2412     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-rsvg=$with_rsvg "
2413 fi
2414
2415 have_rsvg='no'
2416 have_cairo='no'
2417 RSVG_CFLAGS=""
2418 RSVG_LIBS=""
2419 RSVG_PKG=""
2420 if test "x$with_rsvg" = "xyes"; then
2421     AC_MSG_RESULT([-------------------------------------------------------------])
2422     PKG_CHECK_MODULES(RSVG,[librsvg-2.0 >= 2.9.0], have_rsvg=yes, have_rsvg=no)
2423     AC_MSG_RESULT([])
2424     PKG_CHECK_MODULES(CAIRO_SVG, cairo-svg, have_cairo=yes, have_cairo=no)
2425     AC_MSG_RESULT([])
2426 fi
2427
2428 if test "$have_rsvg" = 'yes'; then
2429     AC_DEFINE(RSVG_DELEGATE,1,Define if you have RSVG library)
2430     if test "$with_modules" = 'no'; then
2431         CPPFLAGS="$RSVG_CFLAGS $CPPFLAGS"
2432     fi
2433 fi
2434
2435 if test "$have_cairo" = 'yes'; then
2436     AC_DEFINE(CAIRO_DELEGATE,1,Define if you have CAIRO library)
2437     if test "$with_modules" = 'no'; then
2438         CPPFLAGS="$CAIRO_SVG_CFLAGS $CPPFLAGS"
2439     fi
2440 fi
2441
2442 AM_CONDITIONAL(RSVG_DELEGATE, test "$have_rsvg" = 'yes')
2443 AM_CONDITIONAL(CAIRO_DELEGATE, test "$have_cairo" = 'yes')
2444 AC_SUBST(RSVG_CFLAGS)
2445 AC_SUBST(RSVG_LIBS)
2446
2447 dnl ===========================================================================
2448
2449 #
2450 # Check for TIFF delegate library.
2451 #
2452 AC_ARG_WITH([tiff],
2453     [AC_HELP_STRING([--without-tiff],
2454                     [disable TIFF support])],
2455     [with_tiff=$withval],
2456     [with_tiff='yes'])
2457
2458 if test "$with_tiff" != 'yes'; then
2459     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-tiff=$with_tiff "
2460 fi
2461
2462 have_tiff='no'
2463 TIFF_LIBS=''
2464 if test "$with_tiff" != 'no'; then
2465     AC_MSG_RESULT([-------------------------------------------------------------])
2466     AC_MSG_CHECKING([for TIFF])
2467     AC_MSG_RESULT([])
2468     failed=0
2469     passed=0
2470     AC_CHECK_HEADER(tiff.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
2471     AC_CHECK_HEADER(tiffio.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
2472     AC_CHECK_LIB(tiff,TIFFOpen,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
2473     AC_CHECK_LIB(tiff,TIFFClientOpen,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
2474     AC_CHECK_LIB(tiff,TIFFIsBigEndian,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
2475     AC_CHECK_LIB(tiff,TIFFIsByteSwapped,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
2476     AC_CHECK_LIB(tiff,TIFFReadRGBATile,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
2477     AC_CHECK_LIB(tiff,TIFFReadRGBAStrip,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
2478     AC_MSG_CHECKING([if TIFF package is complete])
2479     if test $passed -gt 0; then
2480         if test $failed -gt 0; then
2481             AC_MSG_RESULT([no -- some components failed test])
2482             have_tiff='no (failed tests)'
2483         else
2484             TIFF_LIBS='-ltiff'
2485             LIBS="$TIFF_LIBS $LIBS"
2486             AC_DEFINE(TIFF_DELEGATE,1,Define if you have TIFF library)
2487             AC_MSG_RESULT([yes])
2488             have_tiff='yes'
2489             AC_CHECK_HEADERS(tiffconf.h)
2490             AC_CHECK_FUNCS([TIFFIsCODECConfigured TIFFMergeFieldInfo \
2491               TIFFReadEXIFDirectory TIFFSetErrorHandlerExt TIFFSetTagExtender \
2492               TIFFSetWarningHandlerExt TIFFSwabArrayOfTriples])
2493         fi
2494     else
2495         AC_MSG_RESULT([no])
2496     fi
2497 fi
2498 AM_CONDITIONAL(TIFF_DELEGATE, test "$have_tiff" = 'yes')
2499 AC_SUBST(TIFF_LIBS)
2500
2501 dnl ===========================================================================
2502
2503 #
2504 # Set Windows font directory.
2505 #
2506 AC_ARG_WITH(windows-font-dir,
2507     [AC_HELP_STRING([--with-windows-font-dir=DIR],
2508                     [directory containing MS-Windows fonts])],
2509                     [with_windows_font_dir=$withval],
2510                     [with_windows_font_dir=''])
2511 if test "$with_windows_font_dir" != '' ; then
2512     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-windows-font-dir=$with_windows_font_dir "
2513 fi
2514
2515 dnl ===========================================================================
2516
2517 #
2518 # Check for WMF delegate library.
2519 #
2520 AC_ARG_WITH([wmf],
2521     [AC_HELP_STRING([--without-wmf],
2522                     [disable WMF support])],
2523     [with_wmf=$withval],
2524     [with_wmf='yes'])
2525
2526 if test "$with_wmf" != 'yes'; then
2527     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-wmf=$with_wmf "
2528 fi
2529
2530 have_wmf='no'
2531 WMF_LIBS=''
2532 if test "$with_wmf" != 'no'; then
2533     AC_MSG_RESULT([-------------------------------------------------------------])
2534     AC_MSG_CHECKING([for WMF])
2535     AC_MSG_RESULT([])
2536     failed=0
2537     passed=0
2538     AC_CHECK_HEADER(libwmf/eps.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
2539     AC_CHECK_LIB(wmf,wmf_eps_function,passed=`expr $passed + 1`,failed=`expr $failed + 1`,"-lwmflite")
2540     AC_MSG_CHECKING([if WMF package is complete])
2541     if test $passed -gt 0; then
2542         if test $failed -gt 0; then
2543             AC_MSG_RESULT([no -- some components failed test])
2544             have_wmf='no (failed tests)'
2545         else
2546             WMF_LIBS='-lwmf -lwmflite'
2547             LIBS="$WMF_LIBS $LIBS"
2548             AC_DEFINE(WMF_DELEGATE,1,Define if you have WMF library)
2549             AC_MSG_RESULT([yes])
2550             have_wmf='yes'
2551         fi
2552     else
2553         AC_MSG_RESULT([no])
2554     fi
2555 fi
2556 AM_CONDITIONAL(WMF_DELEGATE,test "$have_wmf" = 'yes')
2557 AC_SUBST(WMF_LIBS)
2558
2559 dnl ===========================================================================
2560
2561
2562 dnl ===========================================================================
2563
2564 #
2565 # Check for XML delegate library.
2566 #
2567 AC_ARG_WITH([xml],
2568     [AC_HELP_STRING([--without-xml],
2569                     [disable XML support])],
2570     [with_xml=$withval],
2571     [with_xml=$have_x])
2572
2573 if test "$with_xml" != 'yes' ; then
2574     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-xml=$with_xml "
2575 fi
2576
2577 have_xml='no'
2578 XML_LIBS=''
2579 if test "$with_xml" != 'no'; then
2580     AC_MSG_RESULT([-------------------------------------------------------------])
2581     AC_MSG_CHECKING([for XML])
2582     AC_MSG_RESULT([])
2583     PERSIST_LDFLAGS=$LDFLAGS
2584     PERSIST_CPPFLAGS=$CPPFLAGS
2585     xml2_config=''
2586     AC_CHECK_PROGS(xml2_config,xml2-config,)dnl
2587     if test -n "$xml2_config"; then
2588         # Debian installs libxml headers under /usr/include/libxml2/libxml with
2589         # the shared library installed under /usr/lib, whereas the package
2590         # installs itself under $prefix/libxml and $prefix/lib.
2591         xml2_prefix=`xml2-config --prefix`
2592         if test -d "${xml2_prefix}/include/libxml2"; then
2593             CPPFLAGS="$CPPFLAGS -I${xml2_prefix}/include/libxml2"
2594         fi
2595         if test "${xml2_prefix}" != '/usr'; then
2596             LDFLAGS="$LDFLAGS -L${xml2_prefix}/lib"
2597         fi
2598     fi
2599     failed=0
2600     passed=0
2601     AC_CHECK_HEADER(libxml/parser.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`)
2602     AC_CHECK_LIB(xml2,xmlParseExternalEntity,passed=`expr $passed + 1`,failed=`expr $failed + 1`,)
2603     AC_MSG_CHECKING([if XML package is complete])
2604     if test $passed -gt 0; then
2605         if test $failed -gt 0; then
2606             AC_MSG_RESULT([no -- some components failed test])
2607             have_xml='no (failed tests)'
2608             LDFLAGS="$PERSIST_LDFLAGS"
2609             CPPFLAGS="$PERSIST_CPPFLAGS"
2610         else
2611             XML_LIBS='-lxml2'
2612             LIBS="$XML_LIBS $LIBS"
2613             AC_DEFINE(XML_DELEGATE,1,Define if you have XML library)
2614             AC_MSG_RESULT([yes])
2615             have_xml='yes'
2616         fi
2617     else
2618         AC_MSG_RESULT([no])
2619     fi
2620 fi
2621 AM_CONDITIONAL(XML_DELEGATE,test "$have_xml" = 'yes')
2622 AC_SUBST(XML_LIBS)
2623
2624 dnl ===========================================================================
2625
2626 # Substitute compiler name to build/link PerlMagick
2627 #
2628 AC_SUBST(PERLMAINCC)
2629
2630 #
2631 # Configure install Paths
2632 #
2633
2634 # Subdirectory under lib to place ImageMagick lib files
2635 LIBRARY_RELATIVE_PATH="${PACKAGE_NAME}-${PACKAGE_VERSION}"
2636 AC_DEFINE_UNQUOTED(LIBRARY_RELATIVE_PATH,"$LIBRARY_RELATIVE_PATH",Subdirectory of lib where ImageMagick architecture dependent files are installed)
2637
2638 # Path to ImageMagick bin directory
2639 EXECUTABLE_PATH="${BIN_DIR}"
2640 DEFINE_EXECUTABLE_PATH="${BIN_DIR}/"
2641 case "${build_os}" in
2642   mingw* )
2643     DEFINE_EXECUTABLE_PATH=`$WinPathScript "$DEFINE_EXECUTABLE_PATH" 1`
2644     ;;
2645 esac
2646 AC_DEFINE_UNQUOTED(EXECUTABLE_PATH,"$DEFINE_EXECUTABLE_PATH",Directory where executables are installed.)
2647 AC_SUBST(EXECUTABLE_PATH)
2648
2649 # Path to ImageMagick lib
2650 LIBRARY_PATH="${LIB_DIR}/${LIBRARY_RELATIVE_PATH}"
2651 DEFINE_LIBRARY_PATH="${LIB_DIR}/${LIBRARY_RELATIVE_PATH}/"
2652 case "${build_os}" in
2653   mingw* )
2654     DEFINE_LIBRARY_PATH=`$WinPathScript "$DEFINE_LIBRARY_PATH" 1`
2655     ;;
2656 esac
2657 AC_DEFINE_UNQUOTED(LIBRARY_PATH,"$DEFINE_LIBRARY_PATH",Directory where architecture-dependent files live.)
2658 AC_SUBST(LIBRARY_PATH)
2659
2660 # Subdirectory under lib to place ImageMagick configuration files
2661 CONFIGURE_RELATIVE_PATH="${LIBRARY_RELATIVE_PATH}/config"
2662 AC_DEFINE_UNQUOTED(CONFIGURE_RELATIVE_PATH,"$CONFIGURE_RELATIVE_PATH",Subdirectory of lib where architecture-dependent configuration files live.)
2663 CONFIGURE_PATH="${LIB_DIR}/${CONFIGURE_RELATIVE_PATH}/"
2664 DEFINE_CONFIGURE_PATH="${LIB_DIR}/${CONFIGURE_RELATIVE_PATH}/"
2665 case "${build_os}" in
2666   mingw* )
2667     DEFINE_CONFIGURE_PATH=`$WinPathScript "$DEFINE_CONFIGURE_PATH" 1`
2668     ;;
2669 esac
2670 AC_DEFINE_UNQUOTED(CONFIGURE_PATH,"$DEFINE_CONFIGURE_PATH",Directory where architecture-dependent configuration files live.)
2671 AC_SUBST(CONFIGURE_PATH)
2672
2673 #
2674 # Subdirectory under lib to place ImageMagick coder module files
2675 CODER_RELATIVE_PATH="${LIBRARY_RELATIVE_PATH}/modules-Q${QUANTUM_DEPTH}/coders"
2676 AC_DEFINE_UNQUOTED(CODER_RELATIVE_PATH,"$CODER_RELATIVE_PATH",Subdirectory of lib where coder modules are installed)
2677 CODER_PATH="${LIB_DIR}/${CODER_RELATIVE_PATH}"
2678 DEFINE_CODER_PATH="${LIB_DIR}/${CODER_RELATIVE_PATH}/"
2679 case "${build_os}" in
2680   mingw* )
2681     DEFINE_CODER_PATH=`$WinPathScript "$DEFINE_CODER_PATH" 1`
2682     ;;
2683 esac
2684 AC_DEFINE_UNQUOTED(CODER_PATH,"$DEFINE_CODER_PATH",Location of coder modules)
2685 AC_SUBST(CODER_PATH)
2686
2687 #
2688 # Subdirectory under lib to place ImageMagick filter module files
2689 FILTER_RELATIVE_PATH="${LIBRARY_RELATIVE_PATH}/modules-Q${QUANTUM_DEPTH}/filters"
2690 AC_DEFINE_UNQUOTED(FILTER_RELATIVE_PATH,"$FILTER_RELATIVE_PATH",Subdirectory of lib where filter modules are installed)
2691 FILTER_PATH="${LIB_DIR}/${FILTER_RELATIVE_PATH}"
2692 DEFINE_FILTER_PATH="${LIB_DIR}/${FILTER_RELATIVE_PATH}/"
2693 case "${build_os}" in
2694   mingw* )
2695     DEFINE_FILTER_PATH=`$WinPathScript "$DEFINE_FILTER_PATH" 1`
2696     ;;
2697 esac
2698 AC_DEFINE_UNQUOTED(FILTER_PATH,"$DEFINE_FILTER_PATH",Location of filter modules)
2699 AC_SUBST(FILTER_PATH)
2700
2701 #
2702 # Path to ImageMagick documentation files
2703 DOCUMENTATION_RELATIVE_PATH="${PACKAGE_NAME}-${PACKAGE_VERSION}"
2704 DOCUMENTATION_PATH="${DATA_DIR}/doc/${DOCUMENTATION_RELATIVE_PATH}"
2705 DEFINE_DOCUMENTATION_PATH="${DATA_DIR}/doc/${DOCUMENTATION_RELATIVE_PATH}/"
2706 case "${build_os}" in
2707   mingw* )
2708     DEFINE_DOCUMENTATION_PATH=`$WinPathScript "$DEFINE_DOCUMENTATION_PATH" 1`
2709     ;;
2710 esac
2711 AC_DEFINE_UNQUOTED(DOCUMENTATION_PATH,"$DEFINE_DOCUMENTATION_PATH",Directory where ImageMagick documents live.)
2712 AC_SUBST(DOCUMENTATION_PATH)
2713
2714 #
2715 # Path to ImageMagick share files
2716 SHARE_RELATIVE_PATH="${PACKAGE_NAME}-${PACKAGE_VERSION}"
2717 SHARE_PATH="${DATA_DIR}/${SHARE_RELATIVE_PATH}"
2718 DEFINE_SHARE_PATH="${DATA_DIR}/${SHARE_RELATIVE_PATH}/"
2719 case "${build_os}" in
2720   mingw* )
2721     DEFINE_SHARE_PATH=`$WinPathScript "$DEFINE_SHARE_PATH" 1`
2722     ;;
2723 esac
2724 AC_DEFINE_UNQUOTED(SHARE_PATH,"$DEFINE_SHARE_PATH",Directory where architecture-independent files live.)
2725 AC_SUBST(SHARE_PATH)
2726
2727 # Subdirectory under share to place ImageMagick configuration files
2728 SHARE_CONFIGURE_RELATIVE_PATH="${LIBRARY_RELATIVE_PATH}/config"
2729 AC_DEFINE_UNQUOTED(SHARE_CONFIGURE_RELATIVE_PATH,"$SHARE_CONFIGURE_RELATIVE_PATH",Subdirectory of lib where architecture-independent configuration files live.)
2730 SHARE_CONFIGURE_PATH="${DATA_DIR}/${SHARE_CONFIGURE_RELATIVE_PATH}"
2731 DEFINE_SHARE_CONFIGURE_PATH="${DATA_DIR}/${SHARE_CONFIGURE_RELATIVE_PATH}/"
2732 case "${build_os}" in
2733   mingw* )
2734     DEFINE_SHARE_CONFIGURE_PATH=`$WinPathScript "$DEFINE_SHARE_CONFIGURE_PATH" 1`
2735     ;;
2736 esac
2737 AC_DEFINE_UNQUOTED(SHARE_CONFIGURE_PATH,"$DEFINE_SHARE_CONFIGURE_PATH",Directory where architecture-independent configuration files live.)
2738 AC_SUBST(SHARE_CONFIGURE_PATH)
2739
2740 #
2741 # program_transform_name is formed for use in a Makefile, so create a
2742 # modified version for use in a shell script.
2743 configure_transform_name=`echo ${program_transform_name} | sed 's,\\$\\$,$,'`
2744
2745 # Default delegate definitions
2746 AC_MSG_RESULT([-------------------------------------------------------------])
2747 AC_MSG_CHECKING([for ImageMagick delegate programs])
2748 AC_MSG_RESULT([])
2749 AutotraceDecodeDelegateDefault='autotrace'
2750 BlenderDecodeDelegateDefault='blender'
2751 BZIPDelegateDefault='bzip2'
2752 BrowseDelegateDefault='xdg-open'
2753 CGMDecodeDelegateDefault='ralcgm'
2754 CatDelegateDefault='cat'
2755 DNGDecodeDelegateDefault='ufraw-batch'
2756 GVCDecodeDelegateDefault='dot'
2757 DVIDecodeDelegateDefault='dvips'
2758 EchoDelegateDefault='echo'
2759 EditorDelegateDefault='xterm'
2760 FIGDecodeDelegateDefault='fig2dev'
2761 ConvertDelegateDefault=`echo convert | sed ${configure_transform_name}`
2762 DisplayDelegateDefault=`echo display | sed ${configure_transform_name}`
2763 MogrifyDelegateDefault=`echo mogrify | sed ${configure_transform_name}`
2764 GnuplotDecodeDelegateDefault='gnuplot'
2765 HDRDecodeDelegateDefault='ra_pfm'
2766 HPGLDecodeDelegateDefault='hp2xx'
2767 HTMLDecodeDelegateDefault='html2ps'
2768 ILBMDecodeDelegateDefault='ilbmtoppm'
2769 ILBMEncodeDelegateDefault='ppmtoilbm'
2770 LPDelegateDefault='lp'
2771 LPRDelegateDefault='lpr'
2772 LZWDecodeDelegateDefault='uncompress'
2773 LZWEncodeDelegateDefault='compress'
2774 LaunchDelegateDefault='gimp'
2775 MANDelegateDefault='groff'
2776 MPEGDecodeDelegateDefault='ffmpeg'
2777 MPEGEncodeDelegateDefault='ffmpeg'
2778 MrSIDDecodeDelegateDefault='mrsidgeodecode'
2779 MVDelegateDefault='mv'
2780 PCLDelegateDefault='pcl6'
2781 PGPDecodeDelegateDefault='pgpv'
2782 POVDelegateDefault='povray'
2783 if test "$native_win32_build" = 'yes'; then
2784     PSDelegateDefault='gswin32c'
2785 elif test "$gslib_framework" = 'yes'; then
2786     PSDelegateDefault='gsc'
2787 else
2788     PSDelegateDefault='gs'
2789 fi
2790 RLEEncodeDelegateDefault='rawtorle'
2791 RMDelegateDefault='rm'
2792 RSVGDecodeDelegateDefault='rsvg'
2793 SCANDecodeDelegateDefault='scanimage'
2794 TXTDelegateDefault='enscript'
2795 UniconvertorDelegateDefault='uniconvertor'
2796 WEBPDelegateDefault='webpconv'
2797 WMFDecodeDelegateDefault='wmf2eps'
2798 WWWDecodeDelegateDefault='curl'
2799 XPSDelegateDefault='gxps'
2800 ZipDelegateDefault='gzip'
2801
2802 # Search for delegates
2803 AC_PATH_PROG(AutotraceDecodeDelegate, "$AutotraceDecodeDelegateDefault", "$AutotraceDecodeDelegateDefault")
2804 AC_PATH_PROG(BlenderDecodeDelegate, "$BlenderDecodeDelegateDefault", "$BlenderDecodeDelegateDefault")
2805 AC_PATH_PROG(BZIPDelegate, "$BZIPDelegateDefault", "$BZIPDelegateDefault")
2806 AC_PATH_PROG(BrowseDelegate, "$BrowseDelegateDefault" mozilla firefox netscape, "$BrowseDelegateDefault")
2807 AC_PATH_PROG(CGMDecodeDelegate, "$CGMDecodeDelegateDefault", "$CGMDecodeDelegateDefault")
2808 AC_PATH_PROG(CatDelegate, "$CatDelegateDefault", "$CatDelegateDefault")
2809 AC_PATH_PROG(DNGDecodeDelegate, "$DNGDecodeDelegateDefault", "$DNGDecodeDelegateDefault")
2810 AC_PATH_PROG(GVCDecodeDelegate, "$GVCDecodeDelegateDefault", "$GVCDecodeDelegateDefault")
2811 AC_PATH_PROG(DVIDecodeDelegate, "$DVIDecodeDelegateDefault", "$DVIDecodeDelegateDefault")
2812 AC_PATH_PROG(EchoDelegate, "$EchoDelegateDefault", "$EchoDelegateDefault")
2813 AC_PATH_PROG(EditorDelegate, "$EditorDelegateDefault", "$EditorDelegateDefault")
2814 AC_PATH_PROG(FIGDecodeDelegate, "$FIGDecodeDelegateDefault", "$FIGDecodeDelegateDefault")
2815 AC_PATH_PROG(ConvertDelegate, "$ConvertDelegateDefault", "$ConvertDelegateDefault")
2816 AC_PATH_PROG(DisplayDelegate, "$DisplayDelegateDefault", "$DisplayDelegateDefault")
2817 AC_PATH_PROG(MogrifyDelegate, "$MogrifyDelegateDefault", "$MogrifyDelegateDefault")
2818 AC_PATH_PROG(GnuplotDecodeDelegate, "$GnuplotDecodeDelegateDefault", "$GnuplotDecodeDelegateDefault")
2819 AC_PATH_PROG(HDRDecodeDelegate, "$HDRDecodeDelegateDefault", "$HDRDecodeDelegateDefault")
2820 AC_PATH_PROG(HPGLDecodeDelegate, "$HPGLDecodeDelegateDefault", "$HPGLDecodeDelegateDefault")
2821 AC_PATH_PROG(HTMLDecodeDelegate, "$HTMLDecodeDelegateDefault", "$HTMLDecodeDelegateDefault")
2822 AC_PATH_PROG(ILBMDecodeDelegate, "$ILBMDecodeDelegateDefault", "$ILBMDecodeDelegateDefault")
2823 AC_PATH_PROG(ILBMEncodeDelegate, "$ILBMEncodeDelegateDefault", "$ILBMEncodeDelegateDefault")
2824 AC_PATH_PROG(LPDelegate, "$LPDelegateDefault", no)
2825 AC_PATH_PROG(LPRDelegate, "$LPRDelegateDefault", "$LPRDelegateDefault")
2826 AC_PATH_PROG(LZWDecodeDelegate, "$LZWDecodeDelegateDefault", "$LZWDecodeDelegateDefault")
2827 AC_PATH_PROG(LZWEncodeDelegate, "$LZWEncodeDelegateDefault", "$LZWEncodeDelegateDefault")
2828 AC_PATH_PROG(LaunchDelegate, "$LaunchDelegateDefault", "$LaunchDelegateDefault")
2829 AC_PATH_PROG(MANDelegate, "$MANDelegateDefault", "$MANDelegateDefault")
2830 AC_PATH_PROG(MPEGDecodeDelegate, "$MPEGDecodeDelegateDefault", "$MPEGDecodeDelegateDefault")
2831 AC_PATH_PROG(MPEGEncodeDelegate, "$MPEGEncodeDelegateDefault", "$MPEGEncodeDelegateDefault")
2832 AC_PATH_PROG(MrSIDDecodeDelegate, "$MrSIDDecodeDelegateDefault", "$MrSIDDecodeDelegateDefault")
2833 AC_PATH_PROG(MVDelegate, "$MVDelegateDefault", "$MVDelegateDefault")
2834 AC_PATH_PROG(PCLDelegate, "$PCLDelegateDefault", "$PCLDelegateDefault")
2835 AC_PATH_PROG(PGPDecodeDelegate, "$PGPDecodeDelegateDefault", "$PGPDecodeDelegateDefault")
2836 AC_PATH_PROG(POVDelegate, "$POVDelegateDefault", "$POVDelegateDefault")
2837 AC_PATH_PROGS(PSDelegate, gsx gsc "$PSDelegateDefault", "$PSDelegateDefault")
2838 AC_PATH_PROG(RLEEncodeDelegate, "$RLEEncodeDelegateDefault", "$RLEEncodeDelegateDefault")
2839 AC_PATH_PROG(RMDelegate, "$RMDelegateDefault", "$RMDelegateDefault")
2840 AC_PATH_PROG(RSVGDecodeDelegate, "$RSVGDecodeDelegateDefault", "$RSVGDecodeDelegateDefault")
2841 AC_PATH_PROG(SCANDecodeDelegate, "$SCANDecodeDelegateDefault", "$SCANDecodeDelegateDefault")
2842 AC_PATH_PROG(TXTDelegate, "$TXTDelegateDefault", "$TXTDelegateDefault")
2843 AC_PATH_PROG(UniconvertorDelegate, "$UniconvertorDelegateDefault", "$UniconvertorDelegateDefault")
2844 AC_PATH_PROG(WEBPDelegate, "$WEBPDelegateDefault", "$WEBPDelegateDefault")
2845 AC_PATH_PROG(WMFDecodeDelegate, "$WMFDecodeDelegateDefault", "$WMFDecodeDelegateDefault")
2846 AC_PATH_PROG(WWWDecodeDelegate, "$WWWDecodeDelegateDefault", "$WWWDecodeDelegateDefault")
2847 AC_PATH_PROG(XPSDelegate, "$XPSDelegateDefault", "$XPSDelegateDefault")
2848 AC_PATH_PROG(ZipDelegate, "$ZipDelegateDefault", "$ZipDelegateDefault")
2849
2850 # Prefer lpr to lp; lp needs options tacked on.
2851 if test "$LPRDelegate" != no; then
2852     PrintDelegate="$LPRDelegate"
2853 else
2854     PrintDelegate="$LPDelegate -c -s"
2855 fi
2856 AC_SUBST(PrintDelegate)
2857
2858 # Installed ImageMagick utiltity paths
2859 ConvertDelegate="${BIN_DIR}/${ConvertDelegateDefault}"
2860 DisplayDelegate="${BIN_DIR}/${DisplayDelegateDefault}"
2861 MogrifyDelegate="${BIN_DIR}/${MogrifyDelegateDefault}"
2862
2863 # Set delegate booleans
2864 have_ffmpeg='no'; if test "$MPEGDecodeDelegate" != "$MPEGDecodeDelegateDefault" ; then have_ffmpeg='yes'; fi
2865 have_fig2dev='no'    ; if test "$FIGDecodeDelegate" != "$FIGDecodeDelegateDefault" ; then have_fig2dev='yes'; fi
2866 have_gs='no'         ; if test "$PSDelegate" != "$PSDelegateDefault"; then have_gs='yes'; fi
2867 have_hp2xx='no'      ; if test "$HPGLDecodeDelegate" !=  "$HPGLDecodeDelegateDefault" ; then have_hp2xx='yes'; fi
2868 have_ilbmtoppm='no'  ; if test "$ILBMDecodeDelegate" != "$ILBMDecodeDelegateDefault" ; then have_ilbmtoppm='yes'; fi
2869 have_mrsid='no'; if test "$MrSIDDecodeDelegate" != "$MrSIDDecodeDelegateDefault" ; then have_mrsid='yes'; fi
2870 have_pcl='no'        ; if test "$PCLDelegate" != "$PCLDelegateDefault"; then have_pcl='yes'; fi
2871 have_ppmtoilbm='no'  ; if test "$ILBMEncodeDelegate" != "$ILBMEncodeDelegateDefault" ; then have_ppmtoilbm='yes'; fi
2872 have_ra_pfm='no'     ; if test "$HDRDecodeDelegate" != "$HDRDecodeDelegateDefault" ; then have_ra_pfm='yes'; fi
2873 have_ralcgm='no'     ; if test "$CGMDecodeDelegate" != "$CGMDecodeDelegateDefault" ; then have_ralcgm='yes'; fi
2874 have_xps='no'        ; if test "$XPSDelegate" != "$XPSDelegateDefault"; then have_xps='yes'; fi
2875
2876 #
2877 # Test for font directories
2878 #
2879 type_include_files=''
2880
2881 # Dejavu fonts.
2882 AC_MSG_CHECKING(for Dejavu fonts directory)
2883 dejavu_font_dir=''
2884 if test "${with_dejavu_font_dir}" != 'default'; then
2885   dejavu_font_dir="${with_dejavu_font_dir}/"
2886 else
2887   for font_dir in "${prefix}/share/dejavu/fonts/" '/usr/share/fonts/dejavu/'; do
2888     if test -f "${font_dir}DejaVuSerif.ttf"; then
2889       dejavu_font_dir="${font_dir}"
2890       break 1
2891     fi
2892   done
2893 fi
2894 if test "${dejavu_font_dir}x" != 'x'; then
2895   type_include_files="${type_include_files} "'<include file="type-dejavu.xml" />'
2896   AC_MSG_RESULT([$dejavu_font_dir])
2897 else
2898   AC_MSG_RESULT([not found!]);
2899 fi
2900 AC_SUBST(dejavu_font_dir)
2901
2902 # Windows
2903 windows_font_dir=''
2904 if test "$with_windows_font_dir" != "no" && test -n "$with_windows_font_dir"; then
2905    windows_font_dir="${with_windows_font_dir}/"
2906 fi
2907 if test "${windows_font_dir}x" != 'x'; then
2908     if test -f '/usr/X11R6/lib/X11/fonts/truetype/arial.ttf'; then
2909       windows_font_dir='/usr/X11R6/lib/X11/fonts/truetype/'
2910     fi
2911     if test -f '/usr/X11R7/lib/X11/fonts/truetype/arial.ttf'; then
2912       windows_font_dir='/usr/X11R7/lib/X11/fonts/truetype/'
2913     fi
2914     if test -f '/usr/share/fonts/msttcore/arial.ttf'; then
2915       windows_font_dir='/usr/share/fonts/msttcore/truetype/'
2916     fi
2917 fi
2918 if test "${windows_font_dir}x" != 'x'; then
2919   type_include_files="$type_include_files "'<include file="type-windows.xml" />'
2920 fi
2921 AC_SUBST(windows_font_dir)
2922
2923 # Ghostscript
2924 AC_MSG_CHECKING(for Ghostscript fonts directory)
2925 ghostscript_font_dir=''
2926 if test "${with_gs_font_dir}" != 'default'; then
2927   ghostscript_font_dir="${with_gs_font_dir}/"
2928 else
2929   if test "${native_win32_build}" = 'yes'; then
2930     # Native Windows Build
2931     for font_dir in "c:\\Program Files\\gs\\fonts\\" "c:\\Program Files \(x86\)\\gs\\fonts\\" "c:\\gs\\fonts\\"; do
2932       if test -f "${font_dir}a010013l.pfb"; then
2933         ghostscript_font_dir="$font_dir"
2934         break 1
2935       fi
2936     done
2937     if test "${PSDelegate}" != 'gswin32c'; then
2938       ghostscript_font_dir=`echo "${PSDelegate}" | sed -e 's:/gs/.*:/gs:;s:^/::;s/./&:/;s:/:\\\\:g'`"\\fonts\\"
2939     fi
2940   else
2941     # Linux / Mac OS X / Unix Build
2942     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
2943       if test -f "${font_dir}a010013l.pfb"; then
2944         ghostscript_font_dir="${font_dir}"
2945         break 1
2946       fi
2947     done
2948     if test "${ghostscript_font_dir}x" = 'x'; then
2949       if test "$PSDelegate" != 'gs'; then
2950         ghostscript_font_dir=`echo "$PSDelegate" | sed -e 's:/bin/gs:/share/ghostscript/fonts:'`"/"
2951       fi
2952     fi
2953   fi
2954 fi
2955 if test "${ghostscript_font_dir}x" != 'x'; then
2956   type_include_files="${type_include_files} "'<include file="type-ghostscript.xml" />'
2957   AC_MSG_RESULT([$ghostscript_font_dir])
2958 else
2959   AC_MSG_RESULT([not found!]);
2960 fi
2961 AC_SUBST(ghostscript_font_dir)
2962 case "${build_os}" in
2963   mingw* )
2964     PSDelegate=`$WinPathScript "$PSDelegate" 1`
2965     ;;
2966 esac
2967
2968 AC_SUBST(type_include_files)
2969
2970 #
2971 # Handle case where user doesn't want frozen paths
2972 #
2973 if test "$with_frozenpaths" != 'yes'; then
2974   # Re-set delegate definitions to default (no paths)
2975   AutotraceDecodeDelegate="$AutotraceDecodeDelegateDefault"
2976   BlenderDecodeDelegate="$BlenderDecodeDelegateDefault"
2977   BZIPDelegate="$BZIPDelegateDefault"
2978   BrowseDelegate="$BrowseDelegateDefault"
2979   CGMDecodeDelegate="$CGMDecodeDelegateDefault"
2980   CatDelegate="$CatDelegateDefault"
2981   ConvertDelegate="$ConvertDelegateDefault"
2982   GVCDecodeDelegate="$GVCDecodeDelegateDefault"
2983   DVIDecodeDelegate="$DVIDecodeDelegateDefault"
2984   EchoDelegate="$EchoDelegateDefault"
2985   EditorDelegate="$EditorDelegateDefault"
2986   FIGDecodeDelegate="$FIGDecodeDelegateDefault"
2987   GnuplotDecodeDelegate="$GnuplotDecodeDelegateDefault"
2988   HPGLDecodeDelegate="$HPGLDecodeDelegateDefault"
2989   HTMLDecodeDelegate="$HTMLDecodeDelegateDefault"
2990   ILBMDecodeDelegate="$ILBMDecodeDelegateDefault"
2991   ILBMEncodeDelegate="$ILBMEncodeDelegateDefault"
2992   LPDelegate="$LPDelegateDefault"
2993   LZWDecodeDelegate="$LZWDecodeDelegateDefault"
2994   LZWEncodeDelegate="$LZWEncodeDelegateDefault"
2995   LaunchDelegate="$LaunchDelegateDefault"
2996   MANDelegate="$MANDelegateDefault"
2997   MPEGDecodeDelegate="$MPEGDecodeDelegateDefault"
2998   MPEGEncodeDelegate="$MPEGEncodeDelegateDefault"
2999   MogrifyDelegate="$MogrifyDelegateDefault"
3000   MrSIDDecodeDelegate="$MrSIDDecodeDelegateDefault"
3001   MVDelegate="$MVDelegateDefault"
3002   PCLDelegate="$PCLDelegateDefault"
3003   PGPDecodeDelegate="$PGPDecodeDelegateDefault"
3004   POVDelegate="$POVDelegateDefault"
3005   PSDelegate="$PSDelegateDefault"
3006   HDRDecodeDelegate="$HDRDecodeDelegateDefault"
3007   RLEEncodeDelegate="$RLEEncodeDelegateDefault"
3008   RMDelegate="$RMDelegateDefault"
3009   RSVGDecodeDelegate="$RSVGDecodeDelegateDefault"
3010   SCANDecodeDelegate="$SCANDecodeDelegateDefault"
3011   ShowImageDelegate="$ShowImageDelegateDefault"
3012   TXTDelegate="$TXTDelegateDefault"
3013   UniconvertorDelegate="$UniconvertorDelegateDefault"
3014   WEBPDelegate="$WEBPDelegateDefault"
3015   WMFDecodeDelegate="$WMFDecodeDelegateDefault"
3016   WWWDecodeDelegate="$WWWDecodeDelegateDefault"
3017   XPSDelegate="$XPSDelegateDefault"
3018   ZipDelegate="$ZipDelegateDefault"
3019 fi
3020
3021 # Delegate substitutions
3022 AC_SUBST(AutotraceDecodeDelegate)
3023 AC_SUBST(BlenderDecodeDelegate)
3024 AC_SUBST(BZIPDelegate)
3025 AC_SUBST(BrowseDelegate)
3026 AC_SUBST(CGMDecodeDelegate)
3027 AC_SUBST(CatDelegate)
3028 AC_SUBST(ConvertDelegate)
3029 AC_SUBST(GVCDecodeDelegate)
3030 AC_SUBST(DVIDecodeDelegate)
3031 AC_SUBST(EchoDelegate)
3032 AC_SUBST(EditorDelegate)
3033 AC_SUBST(FIGDecodeDelegate)
3034 AC_SUBST(GnuplotDecodeDelegate)
3035 AC_SUBST(HDRDecodeDelegate)
3036 AC_SUBST(HPGLDecodeDelegate)
3037 AC_SUBST(HTMLDecodeDelegate)
3038 AC_SUBST(ILBMDecodeDelegate)
3039 AC_SUBST(ILBMEncodeDelegate)
3040 AC_SUBST(LPDelegate)
3041 AC_SUBST(LZWDecodeDelegate)
3042 AC_SUBST(LZWEncodeDelegate)
3043 AC_SUBST(LaunchDelegate)
3044 AC_SUBST(MANDelegate)
3045 AC_SUBST(MPEGDecodeDelegate)
3046 AC_SUBST(MPEGEncodeDelegate)
3047 AC_SUBST(MogrifyDelegate)
3048 AC_SUBST(MrSIDDecodeDelegate)
3049 AC_SUBST(MVDelegate)
3050 AC_SUBST(PCLDelegate)
3051 AC_SUBST(PGPDecodeDelegate)
3052 AC_SUBST(POVDelegate)
3053 AC_SUBST(PSDelegate)
3054 AC_SUBST(RLEEncodeDelegate)
3055 AC_SUBST(RMDelegate)
3056 AC_SUBST(SCANDecodeDelegate)
3057 AC_SUBST(ShowImageDelegate)
3058 AC_SUBST(TXTDelegate)
3059 AC_SUBST(UniconvertorDelegate)
3060 AC_SUBST(WEBPDelegate)
3061 AC_SUBST(WMFDecodeDelegate)
3062 AC_SUBST(WWWDecodeDelegate)
3063 AC_SUBST(XPSDelegate)
3064 AC_SUBST(ZipDelegate)
3065
3066 #
3067 # RPM support.
3068 #
3069 RPM=''
3070 AC_CHECK_PROGS(TAR,gnutar gtar tar)
3071 AC_CHECK_PROGS(PERL,perl)
3072 AC_CHECK_PROGS(RPM,rpmbuild rpm)
3073 AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir)
3074 AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir)
3075 AM_MISSING_PROG(AUTOMAKE, automake, $missing_dir)
3076 AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir)
3077 AC_SUBST(RPM)
3078 AM_CONDITIONAL(RPM_DELEGATE, test "x$RPM" != "x" )
3079
3080 #
3081 # 7ZIP support (http://p7zip.sourceforge.net/)
3082 #
3083 P7ZIP=''
3084 AC_CHECK_PROGS(P7ZIP,[7za])
3085 AC_SUBST(P7ZIP)
3086 AM_CONDITIONAL(P7ZIP_DELEGATE, test "x$P7ZIP" != "x" )
3087
3088 #
3089 # ZIP support (http://www.info-zip.org/Zip.html)
3090 #
3091 ZIP=''
3092 AC_CHECK_PROGS(ZIP,[zip])
3093 AC_SUBST(ZIP)
3094 AM_CONDITIONAL(ZIP_DELEGATE, test "x$ZIP" != "x" )
3095
3096 #
3097 # GhostPCL related configuration.
3098 #
3099 PCLColorDevice=ppmraw
3100 PCLCMYKDevice=bmpsep8
3101 PCLMonoDevice=pbmraw
3102 if test -z "$PCLVersion"; then
3103     PCLVersion='unknown'
3104 fi
3105 if test $have_pcl = 'yes'; then
3106     AC_MSG_RESULT([-------------------------------------------------------------])
3107     AC_MSG_CHECKING([for PCL])
3108     AC_MSG_RESULT([])
3109     # PCLColorDevice
3110     AC_MSG_CHECKING([for pcl color device])
3111     if $PCLDelegate -dBATCH -sDEVICE=$PCLColorDevice -sOutputFile=/dev/null < /dev/null 2> /dev/null; then
3112         :
3113     else
3114         PCLColorDevice=ppmraw
3115     fi
3116     AC_MSG_RESULT([$PCLColorDevice])
3117
3118     # PCLCMYKDevice
3119     AC_MSG_CHECKING([for pcl CMYK device])
3120     if $PCLDelegate -dBATCH -sDEVICE=$PCLColorDevice -sOutputFile=/dev/null < /dev/null 2> /dev/null; then
3121         :
3122     else
3123         PCLCMYKDevice=$PCLColorDevice
3124     fi
3125     AC_MSG_RESULT([$PCLCMYKDevice])
3126
3127     # PCLMonoDevice
3128     AC_MSG_CHECKING([for pcl mono device])
3129     if $PCLDelegate -dBATCH -sDEVICE=$PCLMonoDevice -sOutputFile=/dev/null < /dev/null 2> /dev/null; then
3130         :
3131     else
3132         PCLMonoDevice=$PCLColorDevice
3133     fi
3134     AC_MSG_RESULT([$PCLMonoDevice])
3135 fi
3136
3137 AC_SUBST(PCLMonoDevice)
3138 AC_SUBST(PCLColorDevice)
3139 AC_SUBST(PCLCMYKDevice)
3140 AC_SUBST(PCLVersion)
3141
3142 #
3143 # GhostXPS related configuration.
3144 #
3145 XPSColorDevice=ppmraw
3146 XPSCMYKDevice=bmpsep8
3147 XPSMonoDevice=pbmraw
3148 if test -z "$XPSVersion"; then
3149     XPSVersion='unknown'
3150 fi
3151 if test $have_xps = 'yes'; then
3152     AC_MSG_RESULT([-------------------------------------------------------------])
3153     AC_MSG_CHECKING([for XPS])
3154     AC_MSG_RESULT([])
3155     # XPSColorDevice
3156     AC_MSG_CHECKING([for xps color device])
3157     if $XPSDelegate -dBATCH -sDEVICE=$XPSColorDevice -sOutputFile=/dev/null < /dev/null 2> /dev/null; then
3158         :
3159     else
3160         XPSColorDevice=ppmraw
3161     fi
3162     AC_MSG_RESULT([$XPSColorDevice])
3163
3164     # XPSCMYKDevice
3165     AC_MSG_CHECKING([for xps CMYK device])
3166     if $XPSDelegate -dBATCH -sDEVICE=$XPSColorDevice -sOutputFile=/dev/null < /dev/null 2> /dev/null; then
3167         :
3168     else
3169         XPSCMYKDevice=$XPSColorDevice
3170     fi
3171     AC_MSG_RESULT([$XPSCMYKDevice])
3172
3173     # XPSMonoDevice
3174     AC_MSG_CHECKING([for xps mono device])
3175     if $XPSDelegate -dBATCH -sDEVICE=$XPSMonoDevice -sOutputFile=/dev/null < /dev/null 2> /dev/null; then
3176         :
3177     else
3178         XPSMonoDevice=$XPSColorDevice
3179     fi
3180     AC_MSG_RESULT([$XPSMonoDevice])
3181 fi
3182
3183 AC_SUBST(XPSMonoDevice)
3184 AC_SUBST(XPSColorDevice)
3185 AC_SUBST(XPSCMYKDevice)
3186 AC_SUBST(XPSVersion)
3187
3188 #
3189 # Ghostscript related configuration.
3190 #
3191 if test "$have_png" = 'yes'; then
3192     GSAlphaDevice=pngalpha
3193 else
3194     GSAlphaDevice=pnmraw
3195 fi
3196 GSColorDevice=pnmraw
3197 GSCMYKDevice=pam
3198 GSMonoDevice=pbmraw
3199 GSPDFDevice=pdfwrite
3200 GSPSDevice=pswrite
3201 GSEPSDevice=epswrite
3202 GSVersion='unknown'
3203 if test $have_gs = 'yes'; then
3204     AC_MSG_RESULT([-------------------------------------------------------------])
3205     AC_MSG_CHECKING([for Ghostscript])
3206     AC_MSG_RESULT([])
3207     AC_MSG_CHECKING([for Ghostscript version])
3208     if GSVersion=`$PSDelegate --version`; then
3209         :
3210     else
3211         GSVersion=`$PSDelegate --help | sed -e '1q' | awk '{ print $3 }'`
3212     fi
3213     AC_MSG_RESULT([$GSVersion])
3214
3215     # GSAlphaDevice
3216     AC_MSG_CHECKING([for gs alpha device])
3217     if $PSDelegate -q -dBATCH -sDEVICE=$GSAlphaDevice -sOutputFile=/dev/null < /dev/null 2> /dev/null; then
3218         :
3219     else
3220         GSAlphaDevice=pnmraw
3221     fi
3222     AC_MSG_RESULT([$GSAlphaDevice])
3223
3224     # GSColorDevice
3225     AC_MSG_CHECKING([for gs color device])
3226     if $PSDelegate -q -dBATCH -sDEVICE=$GSColorDevice -sOutputFile=/dev/null < /dev/null 2> /dev/null; then
3227         :
3228     else
3229         GSColorDevice=pnmraw
3230     fi
3231     AC_MSG_RESULT([$GSColorDevice])
3232
3233     # GSCMYKDevice
3234     AC_MSG_CHECKING([for gs CMYK device])
3235     if $PSDelegate -q -dBATCH -sDEVICE=$GSCMYKDevice -sOutputFile=/dev/null < /dev/null 2> /dev/null; then
3236         :
3237     else
3238         GSCMYKDevice=bmpsep8
3239     fi
3240     AC_MSG_RESULT([$GSCMYKDevice])
3241
3242     # GSMonoDevice
3243     AC_MSG_CHECKING([for gs mono device])
3244     if $PSDelegate -q -dBATCH -sDEVICE=$GSMonoDevice -sOutputFile=/dev/null < /dev/null 2> /dev/null; then
3245         :
3246     else
3247         GSMonoDevice=$GSColorDevice
3248     fi
3249     AC_MSG_RESULT([$GSMonoDevice])
3250
3251     # GSPDFDevice
3252     AC_MSG_CHECKING([for gs PDF writing device])
3253     if $PSDelegate -q -dBATCH -sDEVICE=$GSPDFDevice -sOutputFile=/dev/null < /dev/null 2> /dev/null; then
3254         :
3255     else
3256         GSPDFDevice=nodevice
3257     fi
3258         AC_MSG_RESULT([$GSPDFDevice])
3259
3260     # GSPSDevice
3261     AC_MSG_CHECKING([for gs PS writing device])
3262     if $PSDelegate -q -dBATCH -sDEVICE=$GSPSDevice -sOutputFile=/dev/null < /dev/null 2> /dev/null; then
3263         :
3264     else
3265         GSPSDevice=nodevice
3266     fi
3267     AC_MSG_RESULT([$GSPSDevice])
3268
3269     # GSEPSDevice
3270     AC_MSG_CHECKING([for gs EPS writing device])
3271     if $PSDelegate -q -dBATCH -sDEVICE=$GSEPSDevice -sOutputFile=/dev/null < /dev/null 2> /dev/null; then
3272         :
3273     else
3274         GSEPSDevice=nodevice
3275     fi
3276     AC_MSG_RESULT([$GSEPSDevice])
3277 fi
3278
3279 AC_SUBST(GSAlphaDevice)
3280 AC_SUBST(GSCMYKDevice)
3281 AC_SUBST(GSColorDevice)
3282 AC_SUBST(GSEPSDevice)
3283 AC_SUBST(GSMonoDevice)
3284 AC_SUBST(GSPDFDevice)
3285 AC_SUBST(GSPSDevice)
3286 AC_SUBST(GSVersion)
3287
3288 #
3289 # PerlMagick-related configuration
3290 #
3291
3292 # Look for PERL if PerlMagick requested
3293 # If name/path of desired PERL interpreter is specified, look for that one first
3294 have_perl='no'
3295 if test "$with_perl" != 'no'; then
3296     AC_MSG_RESULT([-------------------------------------------------------------])
3297     AC_MSG_CHECKING([for Perl])
3298     AC_MSG_RESULT([])
3299     if test "$with_perl" != 'yes'; then
3300         AC_CACHE_CHECK(for perl,ac_cv_path_PERL,ac_cv_path_PERL="$with_perl");
3301         PERL=$ac_cv_path_PERL
3302         AC_SUBST(PERL)dnl
3303         have_perl="$ac_cv_path_PERL"
3304     else
3305         AC_PATH_PROGS(PERL,perl perl5,)dnl
3306         if test "$ac_cv_path_PERL"; then
3307             have_perl="$ac_cv_path_PERL"
3308         fi
3309     fi
3310 fi
3311
3312 if test "$with_perl" != 'yes' ; then
3313     DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-perl=$with_perl "
3314 fi
3315
3316 PERL_SUPPORTS_DESTDIR='no'
3317
3318 with_perl_static='no'
3319 with_perl_dynamic='no'
3320 if test "$have_perl" != 'no'; then
3321     if test "$with_perl" != 'no' && test "$libtool_build_shared_libs" = 'no'; then
3322         with_perl_static='yes'
3323     fi
3324     if test "$with_perl" != 'no' && test "$libtool_build_shared_libs" = 'yes'; then
3325         with_perl_dynamic='yes'
3326     fi
3327     # Is PERL's MakeMaker new enough to support DESTDIR?
3328     AX_PROG_PERL_VERSION(5.8.1,[PERL_SUPPORTS_DESTDIR='yes'],[PERL_SUPPORTS_DESTDIR='no'])
3329 fi
3330 AM_CONDITIONAL(WITH_PERL, test "$have_perl" != 'no')
3331 AM_CONDITIONAL(WITH_PERL_STATIC, test $with_perl_static = 'yes')
3332 AM_CONDITIONAL(WITH_PERL_DYNAMIC, test $with_perl_dynamic = 'yes')
3333 AC_SUBST(PERL_SUPPORTS_DESTDIR)
3334
3335 # Determine path to pick up MagickCore library from for use with building PerlMagick
3336 MAGICKCORE_PATH="${LIB_DIR}"
3337 if test $with_perl_static = 'yes'; then
3338     # Find out where libtool hides its uninstalled libraries (as libtool_objdir)
3339     libtool_objdir=$objdir
3340
3341     # Linker search path to library, followed by -lMagickCore
3342     MAGICKCORE_PATH="${builddir}/magick/${libtool_objdir}"
3343 fi
3344 AC_SUBST(MAGICKCORE_PATH)
3345
3346 # Create a simple string containing format names for all delegate libraries
3347 DELEGATES=''
3348 if test "$have_autotrace"  = 'yes'; then DELEGATES="$DELEGATES autotrace"; fi
3349 if test "$have_bzlib"      = 'yes'; then DELEGATES="$DELEGATES bzlib"; fi
3350 if test "$have_djvu"       = 'yes'; then DELEGATES="$DELEGATES djvu"; fi
3351 if test "$have_dps"        = 'yes'; then DELEGATES="$DELEGATES dps"; fi
3352 if test "$have_fftw"       = 'yes'; then DELEGATES="$DELEGATES fftw"; fi
3353 if test "$have_fpx"        = 'yes'; then DELEGATES="$DELEGATES fpx"; fi
3354 if test "$have_fontconfig" = 'yes'; then DELEGATES="$DELEGATES fontconfig"; fi
3355 if test "$have_freetype"   = 'yes'; then DELEGATES="$DELEGATES freetype"; fi
3356 if test "$have_gslib"      = 'yes'; then DELEGATES="$DELEGATES gs"; fi
3357 if test "$have_gvc"        = 'yes'; then DELEGATES="$DELEGATES gvc"; fi
3358 if test "$have_jbig"       = 'yes'; then DELEGATES="$DELEGATES jbig"; fi
3359 if test "$have_jpeg"       = 'yes'; then
3360   DELEGATES="$DELEGATES jpeg";
3361   if test "$have_png"      = 'yes'; then DELEGATES="$DELEGATES jng"; fi
3362 fi
3363 if test "$have_jp2"        = 'yes'; then DELEGATES="$DELEGATES jp2"; fi
3364 if test "$have_lcms2"      = 'yes'; then DELEGATES="$DELEGATES lcms2"; fi
3365 if test "$have_lcms"       = 'yes'; then DELEGATES="$DELEGATES lcms"; fi
3366 if test "$have_lqr"        = 'yes'; then DELEGATES="$DELEGATES lqr"; fi
3367 if test "$have_lzma"       = 'yes'; then DELEGATES="$DELEGATES lzma"; fi
3368 if test "$have_ffmpeg"     = 'yes'; then DELEGATES="$DELEGATES mpeg"; fi
3369 if test "$have_openexr"    = 'yes'; then DELEGATES="$DELEGATES openexr"; fi
3370 if test "$have_png"        = 'yes'; then DELEGATES="$DELEGATES png"; fi
3371 if test "$have_rsvg"       = 'yes'; then DELEGATES="$DELEGATES rsvg"; fi
3372 if test "$have_tiff"       = 'yes'; then DELEGATES="$DELEGATES tiff"; fi
3373 if test "$have_x"          = 'yes'; then DELEGATES="$DELEGATES x11"; fi
3374 if test "$have_xml"        = 'yes'; then DELEGATES="$DELEGATES xml"; fi
3375 if test "$have_wmf"        = 'yes'; then DELEGATES="$DELEGATES wmf"; fi
3376 if test "$have_zlib"       = 'yes'; then DELEGATES="$DELEGATES zlib"; fi
3377
3378 AC_SUBST(DELEGATES)
3379
3380 #
3381 # Handle special compiler flags
3382 #
3383
3384 # Add '-p' if prof source profiling support enabled
3385 if test "$enable_prof" = 'yes'; then
3386     CFLAGS="-p $CFLAGS"
3387     CXXFLAGS="-p $CXXFLAGS"
3388     LDFLAGS="-p $LDFLAGS"
3389 fi
3390
3391 # Add '-pg' if gprof source profiling support enabled
3392 if test "$enable_gprof" = 'yes'; then
3393     CFLAGS="-pg $CFLAGS"
3394     CXXFLAGS="-pg $CXXFLAGS"
3395     LDFLAGS="-pg $LDFLAGS"
3396 fi
3397
3398 # Add '-ftest-coverage -fprofile-arcs' if gcov source profiling support enabled
3399 # This is a gcc-specific feature
3400 if test "$enable_gcov" = 'yes'; then
3401     AC_CHECK_LIB(gcov,_gcov_init)
3402     AC_CHECK_LIB(gcov,__gcov_init)
3403     case "$target_os" in
3404         darwin*)
3405             OSX_GCOV_LDFLAG="-Wl,-single_module"
3406         ;;
3407         *)
3408             OSX_GCOV_LDFLAG=""
3409         ;;
3410     esac
3411     AC_SUBST(OSX_GCOV_LDFLAG)
3412     CFLAGS="-ftest-coverage -fprofile-arcs  $CFLAGS"
3413     CXXFLAGS="-ftest-coverage -fprofile-arcs  $CXXFLAGS"
3414     LDFLAGS="-ftest-coverage -fprofile-arcs $LDFLAGS"
3415 fi
3416
3417 #
3418 # Build library dependency list for libMagickCore
3419 #
3420
3421 MAGICK_LIBLTDL='' # Libltdl for build
3422 MAGICK_API_LIBLTDL=''   # libltdl for dependent application (API) build
3423 MAGICK_LTDLDEPS=''      # extra libltdl dependencies
3424 if test "$with_ltdl" != 'no'
3425 then
3426   if test \( "$with_included_ltdl" = 'no' -o "$enable_ltdl_convenience" = 'no' \) -o "$enable_ltdl_install" = 'yes'; then
3427     MAGICK_API_LIBLTDL='-lltdl'
3428   fi
3429   MAGICK_LIBLTDL=${LIBLTDL}
3430   MAGICK_LTDLDEPS=${LTDLDEPS}
3431 fi
3432 AC_SUBST(MAGICK_LIBLTDL)
3433 AC_SUBST(MAGICK_LTDLDEPS)
3434
3435 if test "$with_modules" != 'no'; then
3436     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"
3437 else
3438     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"
3439 fi
3440 AC_SUBST(MAGICK_DEP_LIBS)
3441
3442 #
3443 # Remove extraneous spaces from output variables (asthetic)
3444 #
3445 X_CFLAGS=`echo $X_CFLAGS | sed -e 's/  */ /g'`
3446 X_PRE_LIBS=`echo $X_PRE_LIBS | sed -e 's/  */ /g'`
3447 X_LIBS=`echo $X_LIBS | sed -e 's/  */ /g'`
3448 X_EXTRA_LIBS=`echo $X_EXTRA_LIBS | sed -e 's/  */ /g'`
3449
3450 CC=`echo $CC | sed -e 's/  */ /g'`
3451 CFLAGS=`echo $CFLAGS | sed -e 's/  */ /g'`
3452 CPPFLAGS=`echo $CPPFLAGS | sed -e 's/  */ /g'`
3453 CXXFLAGS=`echo $CXXFLAGS | sed -e 's/  */ /g'`
3454 DELEGATES=`echo $DELEGATES | sed -e 's/^ //g'`
3455 DISTCHECK_CONFIG_FLAGS=`echo $DISTCHECK_CONFIG_FLAGS | sed -e 's/  */ /g'`
3456 LDFLAGS=`echo $LDFLAGS | sed -e 's/  */ /g'`
3457 TESTED_LIBS=`echo $LIBS | sed -e 's/  */ /g'`
3458 MAGICK_DEP_LIBS=`echo $MAGICK_DEP_LIBS | sed -e 's/  */ /g'`
3459 #LIBS=`echo $LIBS | sed -e 's/  */ /g'`
3460
3461 # Pass only user-provided LIBS as "global" libraries
3462 LIBS=$USER_LIBS
3463
3464 #AC_SUBST(CPPFLAGS)
3465 AC_SUBST(X_CFLAGS)
3466 #AC_SUBST(LDFLAGS)
3467 #AC_SUBST(X_PRE_LIBS)
3468 #AC_SUBST(X_LIBS)
3469 #AC_SUBST(X_EXTRA_LIBS)
3470
3471 MAGICK_CFLAGS=$CFLAGS
3472 MAGICK_CXXFLAGS="$CXXFLAGS"
3473 MAGICK_CPPFLAGS=`echo $MAGICK_CPPFLAGS | sed -e 's/  */ /g'`
3474 MAGICK_PCFLAGS=`echo $MAGICK_PCFLAGS | sed -e 's/  */ /g'`
3475 MAGICK_LDFLAGS="-L$LIB_DIR $LDFLAGS"
3476 MAGICK_LIBS="-lMagickCore $MAGICK_DEP_LIBS $MAGICK_API_LIBLTDL"
3477
3478 AC_SUBST(MAGICK_CFLAGS)
3479 AC_SUBST(MAGICK_CXXFLAGS)
3480 AC_SUBST(MAGICK_CPPFLAGS)
3481 AC_SUBST(MAGICK_PCFLAGS)
3482 AC_SUBST(MAGICK_LDFLAGS)
3483 AC_SUBST(MAGICK_LIBS)
3484 AC_SUBST(MAGICK_FEATURES)
3485
3486 # Set configured scripts to executable.
3487 AC_CONFIG_COMMANDS([default],[],[])
3488 AC_CONFIG_COMMANDS([MagickCore-config.in],[chmod +x magick/MagickCore-config])
3489 AC_CONFIG_COMMANDS([Magick-config.in],[chmod +x magick/Magick-config])
3490 AC_CONFIG_COMMANDS([MagickWand-config.in],[chmod +x wand/MagickWand-config])
3491 AC_CONFIG_COMMANDS([Wand-config.in],[chmod +x wand/Wand-config])
3492 AC_CONFIG_COMMANDS([Magick++-config.in],[chmod +x Magick++/bin/Magick++-config])
3493 AC_CONFIG_COMMANDS([PerlMagick/check.sh.in],[chmod +x PerlMagick/check.sh])
3494
3495 AC_MSG_RESULT([-------------------------------------------------------------])
3496 AC_MSG_RESULT([Update ImageMagick configuration])
3497 AC_OUTPUT
3498
3499 rm -f magick-version
3500
3501 result_dejavu_font_dir='none'
3502 if test "${dejavu_font_dir}x" != 'x'; then
3503     result_dejavu_font_dir=$dejavu_font_dir
3504 fi
3505
3506 result_ghostscript_font_dir='none'
3507 if test "${ghostscript_font_dir}x" != 'x'; then
3508     result_ghostscript_font_dir=$ghostscript_font_dir
3509 fi
3510
3511 result_windows_font_dir='none'
3512 if test "${windows_font_dir}x" != 'x'; then
3513     result_windows_font_dir=${windows_font_dir}
3514 fi
3515
3516 AC_MSG_RESULT([
3517 ImageMagick is configured as follows. Please verify that this configuration
3518 matches your expectations.
3519
3520 Host system type: $host
3521 Build system type: $build
3522
3523                   Option                        Value
3524 -------------------------------------------------------------------------------
3525 Shared libraries  --enable-shared=$enable_shared                $libtool_build_shared_libs
3526 Static libraries  --enable-static=$enable_static                $libtool_build_static_libs
3527 Module support    --with-modules=$with_modules          $with_modules
3528 GNU ld            --with-gnu-ld=$with_gnu_ld            $lt_cv_prog_gnu_ld
3529 Quantum depth     --with-quantum-depth=$with_quantum_depth      $with_quantum_depth
3530 High Dynamic Range Imagery
3531                   --enable-hdri=$enable_hdri            $enable_hdri
3532
3533 Delegate Configuration:
3534 BZLIB             --with-bzlib=$with_bzlib              $have_bzlib
3535 Autotrace         --with-autotrace=$with_autotrace              $have_autotrace
3536 Dejavu fonts      --with-dejavu-font-dir=$with_dejavu_font_dir  $result_dejavu_font_dir
3537 DJVU              --with-djvu=$with_djvu                $have_djvu
3538 DPS               --with-dps=$with_dps          $have_dps
3539 FFTW              --with-fftw=$with_fftw                $have_fftw
3540 FlashPIX          --with-fpx=$with_fpx          $have_fpx
3541 FontConfig        --with-fontconfig=$with_fontconfig            $have_fontconfig
3542 FreeType          --with-freetype=$with_freetype                $have_freetype
3543 GhostPCL          None                          $PCLDelegate ($PCLVersion)
3544 GhostXPS          None                          $XPSDelegate ($XPSVersion)
3545 Ghostscript       None                          $PSDelegate ($GSVersion)
3546 Ghostscript fonts --with-gs-font-dir=$with_gs_font_dir  $result_ghostscript_font_dir
3547 Ghostscript lib   --with-gslib=$with_gslib              $have_gslib
3548 Graphviz          --with-gvc=$with_gvc          $have_gvc
3549 JBIG              --with-jbig=$with_jbig                $have_jbig
3550 JPEG v1           --with-jpeg=$with_jpeg                $have_jpeg
3551 JPEG-2000         --with-jp2=$with_jp2          $have_jp2
3552 LCMS v1           --with-lcms=$with_lcms                $have_lcms
3553 LCMS v2           --with-lcms2=$with_lcms2              $have_lcms2
3554 LQR               --with-lqr=$with_lqr          $have_lqr
3555 LZMA              --with-lzma=$with_lzma                $have_lzma
3556 Magick++          --with-magick-plus-plus=$with_magick_plus_plus        $have_magick_plus_plus
3557 OpenEXR           --with-openexr=$with_openexr          $have_openexr
3558 PERL              --with-perl=$with_perl                $have_perl
3559 PNG               --with-png=$with_png          $have_png
3560 RSVG              --with-rsvg=$with_rsvg                $have_rsvg
3561 TIFF              --with-tiff=$with_tiff                $have_tiff
3562 Windows fonts     --with-windows-font-dir=$with_windows_font_dir        $result_windows_font_dir
3563 WMF               --with-wmf=$with_wmf          $have_wmf
3564 X11               --with-x=$with_x                      $have_x
3565 XML               --with-xml=$with_xml          $have_xml
3566 ZLIB              --with-zlib=$with_zlib                $have_zlib
3567
3568 X11 Configuration:
3569       X_CFLAGS        = $X_CFLAGS
3570       X_PRE_LIBS      = $X_PRE_LIBS
3571       X_LIBS          = $X_LIBS
3572       X_EXTRA_LIBS    = $X_EXTRA_LIBS
3573
3574 Options used to compile and link:
3575   PREFIX          = $PREFIX_DIR
3576   EXEC-PREFIX     = $EXEC_PREFIX_DIR
3577   VERSION         = $PACKAGE_VERSION
3578   CC              = $CC
3579   CFLAGS          = $CFLAGS
3580   CPPFLAGS        = $MAGICK_CPPFLAGS
3581   PCFLAGS         = $MAGICK_PCFLAGS
3582   DEFS            = $DEFS
3583   LDFLAGS         = $LDFLAGS
3584   MAGICK_LDFLAGS  = $MAGICK_LDFLAGS
3585   LIBS            = $MAGICK_LIBS
3586   CXX             = $CXX
3587   CXXFLAGS        = $CXXFLAGS
3588   FEATURES        = $MAGICK_FEATURES
3589 ])