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