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