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