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