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