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