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