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