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