2006-03-02 13:23:18 +00:00
|
|
|
# configure.ac
|
|
|
|
|
|
|
|
dnl Process this file with autoconf to produce a configure script.
|
|
|
|
dnl
|
|
|
|
dnl Minor upgrades (compatible ABI): increment the package version
|
2008-07-30 19:47:09 +00:00
|
|
|
dnl (third field in two places below) and set the PNGLIB_RELEASE
|
2006-03-02 13:23:18 +00:00
|
|
|
dnl variable.
|
|
|
|
dnl
|
|
|
|
dnl Major upgrades (incompatible ABI): increment the package major
|
|
|
|
dnl version (second field, or first if desired), set the minor
|
|
|
|
dnl to 0, set PNGLIB_MAJOR below *and* follow the instructions in
|
|
|
|
dnl Makefile.am to upgrade the package name.
|
|
|
|
|
|
|
|
dnl This is here to prevent earlier autoconf from being used, it
|
|
|
|
dnl should not be necessary to regenerate configure if the time
|
|
|
|
dnl stamps are correct
|
2012-01-28 06:48:08 +00:00
|
|
|
AC_PREREQ([2.68])
|
2006-03-02 13:23:18 +00:00
|
|
|
|
|
|
|
dnl Version number stuff here:
|
|
|
|
|
2013-10-13 16:50:12 +00:00
|
|
|
AC_INIT([libpng],[1.6.7beta03],[png-mng-implement@lists.sourceforge.net])
|
2012-01-27 16:24:21 +00:00
|
|
|
AC_CONFIG_MACRO_DIR([scripts])
|
2012-01-29 00:06:55 +00:00
|
|
|
|
|
|
|
# libpng does not follow GNU file name conventions (hence 'foreign')
|
|
|
|
# color-tests requires automake 1.11 or later
|
|
|
|
# silent-rules requires automake 1.11 or later
|
|
|
|
# dist-xz requires automake 1.11 or later
|
2013-03-02 20:58:22 +00:00
|
|
|
# 1.12.2 fixes a security issue in 1.11.2 and 1.12.1
|
|
|
|
# 1.13 is required for parallel tests
|
2013-10-05 00:56:19 +00:00
|
|
|
AM_INIT_AUTOMAKE([1.13 foreign dist-xz color-tests silent-rules subdir-objects])
|
2013-03-02 20:58:22 +00:00
|
|
|
# The following line causes --disable-maintainer-mode to be the default to
|
|
|
|
# configure, this is necessary because libpng distributions cannot rely on the
|
|
|
|
# time stamps of the autotools generated files being correct
|
2006-03-02 13:23:18 +00:00
|
|
|
AM_MAINTAINER_MODE
|
|
|
|
|
2012-01-28 06:48:08 +00:00
|
|
|
dnl configure.ac and Makefile.am expect automake 1.11.2 or a compatible later
|
|
|
|
dnl version; aclocal.m4 will generate a failure if you use a prior version of
|
|
|
|
dnl automake, so the following is not necessary (and is not defined anyway):
|
|
|
|
dnl AM_PREREQ([1.11.2])
|
|
|
|
dnl stop configure from automagically running automake
|
|
|
|
|
2013-10-13 16:50:12 +00:00
|
|
|
PNGLIB_VERSION=1.6.7beta03
|
2009-07-28 22:20:26 +00:00
|
|
|
PNGLIB_MAJOR=1
|
2011-11-23 21:28:01 +00:00
|
|
|
PNGLIB_MINOR=6
|
2013-09-16 16:19:34 +00:00
|
|
|
PNGLIB_RELEASE=7
|
2006-03-02 13:23:18 +00:00
|
|
|
|
|
|
|
dnl End of version number stuff
|
|
|
|
|
2004-12-03 00:14:51 +00:00
|
|
|
AC_CONFIG_SRCDIR([pngget.c])
|
2012-01-25 14:07:29 +00:00
|
|
|
AC_CONFIG_HEADERS([config.h])
|
2004-12-03 00:14:51 +00:00
|
|
|
|
|
|
|
# Checks for programs.
|
2011-01-22 23:03:33 +00:00
|
|
|
AC_LANG([C])
|
2004-12-03 00:14:51 +00:00
|
|
|
AC_PROG_CC
|
2011-11-03 05:42:58 +00:00
|
|
|
AM_PROG_AS
|
2012-01-25 14:07:29 +00:00
|
|
|
LT_PATH_LD
|
2006-03-04 22:50:47 +00:00
|
|
|
AC_PROG_CPP
|
2013-03-02 20:58:22 +00:00
|
|
|
AC_PROG_AWK
|
2006-03-02 13:23:18 +00:00
|
|
|
AC_PROG_INSTALL
|
|
|
|
AC_PROG_LN_S
|
2004-12-03 00:14:51 +00:00
|
|
|
AC_PROG_MAKE_SET
|
2012-01-28 06:48:08 +00:00
|
|
|
|
|
|
|
dnl libtool/libtoolize; version 2.4.2 is the tested version, this or any
|
|
|
|
dnl compatible later version may be used
|
2010-08-11 13:06:11 +00:00
|
|
|
LT_INIT([win32-dll])
|
2012-01-28 06:48:08 +00:00
|
|
|
LT_PREREQ([2.4.2])
|
2004-12-03 00:14:51 +00:00
|
|
|
|
2013-03-02 20:58:22 +00:00
|
|
|
# Some awks crash when confronted with pnglibconf.dfa, do a test run now
|
|
|
|
# to make sure this doesn't happen
|
|
|
|
AC_MSG_CHECKING([that AWK works])
|
|
|
|
if ${AWK} -f ${srcdir}/scripts/options.awk out="/dev/null" version=search\
|
|
|
|
${srcdir}/pngconf.h ${srcdir}/scripts/pnglibconf.dfa\
|
|
|
|
${srcdir}/pngusr.dfa 1>&2
|
|
|
|
then
|
|
|
|
AC_MSG_RESULT([ok])
|
2011-01-22 23:03:33 +00:00
|
|
|
else
|
2013-03-02 20:58:22 +00:00
|
|
|
AC_MSG_FAILURE([failed], 1)
|
2011-01-22 23:03:33 +00:00
|
|
|
fi
|
|
|
|
|
2013-03-02 20:58:22 +00:00
|
|
|
# This is a remnant of the old cc -E validation, where it may have been
|
|
|
|
# necessary to use a different preprocessor for .dfn files
|
|
|
|
DFNCPP="$CPP"
|
|
|
|
AC_SUBST(DFNCPP)
|
|
|
|
|
2012-01-25 14:07:29 +00:00
|
|
|
# -Werror cannot be passed to GCC in CFLAGS because configure will fail (it
|
|
|
|
# checks the compiler with a program that generates a warning), add the
|
|
|
|
# following option to deal with this
|
|
|
|
AC_ARG_VAR(PNG_COPTS,
|
|
|
|
[additional flags for the C compiler, use this for options that would]
|
|
|
|
[cause configure itself to fail])
|
|
|
|
AC_ARG_ENABLE(werror,
|
|
|
|
AS_HELP_STRING([[[--enable-werror[=OPT]]]],
|
|
|
|
[Pass -Werror or the given argument to the compiler if it is supported]),
|
|
|
|
[test "$enable_werror" = "yes" && enable_werror="-Werror"
|
|
|
|
if test "$enable_werror" != "no"; then
|
|
|
|
sav_CFLAGS="$CFLAGS"
|
|
|
|
CFLAGS="$enable_werror $CFLAGS"
|
|
|
|
AC_MSG_CHECKING([if the compiler allows $enable_werror])
|
|
|
|
AC_COMPILE_IFELSE(
|
|
|
|
[AC_LANG_SOURCE([
|
|
|
|
[int main(int argc, char **argv){]
|
|
|
|
[return argv[argc-1][0];]
|
|
|
|
[}]])],
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
PNG_COPTS="$PNG_COPTS $enable_werror",
|
|
|
|
AC_MSG_RESULT(no))
|
|
|
|
CFLAGS="$sav_CFLAGS"
|
|
|
|
fi],)
|
|
|
|
|
2004-12-03 00:14:51 +00:00
|
|
|
# Checks for header files.
|
|
|
|
AC_HEADER_STDC
|
|
|
|
|
|
|
|
# Checks for typedefs, structures, and compiler characteristics.
|
|
|
|
AC_C_CONST
|
|
|
|
AC_TYPE_SIZE_T
|
|
|
|
AC_STRUCT_TM
|
2011-11-05 02:03:39 +00:00
|
|
|
AC_C_RESTRICT
|
2004-12-03 00:14:51 +00:00
|
|
|
|
|
|
|
# Checks for library functions.
|
|
|
|
AC_FUNC_STRTOD
|
2012-01-25 14:07:29 +00:00
|
|
|
AC_CHECK_FUNCS([memset], , AC_MSG_ERROR(memset not found in libc))
|
|
|
|
AC_CHECK_FUNCS([pow], , AC_CHECK_LIB(m, pow, , AC_MSG_ERROR(cannot find pow)) )
|
2011-01-04 15:07:45 +00:00
|
|
|
AC_ARG_WITH(zlib-prefix,
|
2012-01-25 14:07:29 +00:00
|
|
|
AS_HELP_STRING([[[--with-zlib-prefix]]],
|
|
|
|
[prefix that may have been used in installed zlib]),
|
|
|
|
[ZPREFIX=${withval}],
|
|
|
|
[ZPREFIX='z_'])
|
2010-12-09 12:03:03 +00:00
|
|
|
AC_CHECK_LIB(z, zlibVersion, ,
|
2012-01-25 14:07:29 +00:00
|
|
|
AC_CHECK_LIB(z, ${ZPREFIX}zlibVersion, , AC_MSG_ERROR(zlib not installed)))
|
2010-12-09 12:03:03 +00:00
|
|
|
|
2011-11-05 02:03:39 +00:00
|
|
|
# The following is for pngvalid, to ensure it catches FP errors even on
|
|
|
|
# platforms that don't enable FP exceptions, the function appears in the math
|
|
|
|
# library (typically), it's not an error if it is not found.
|
|
|
|
AC_CHECK_LIB([m], [feenableexcept])
|
|
|
|
AC_CHECK_FUNCS([feenableexcept])
|
2006-03-04 22:50:47 +00:00
|
|
|
|
2011-09-01 19:06:49 +00:00
|
|
|
AC_MSG_CHECKING([if using Solaris linker])
|
|
|
|
SLD=`$LD --version 2>&1 | grep Solaris`
|
|
|
|
if test "$SLD"; then
|
|
|
|
have_solaris_ld=yes
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
else
|
|
|
|
have_solaris_ld=no
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
fi
|
|
|
|
AM_CONDITIONAL(HAVE_SOLARIS_LD, test "$have_solaris_ld" = "yes")
|
|
|
|
|
2011-12-26 19:10:01 +00:00
|
|
|
AC_MSG_CHECKING([if libraries can be versioned])
|
2011-09-09 12:55:25 +00:00
|
|
|
# Special case for PE/COFF platforms: ld reports
|
|
|
|
# support for version-script, but doesn't actually
|
|
|
|
# DO anything with it.
|
|
|
|
case $host in
|
|
|
|
*cygwin* | *mingw32* | *interix* )
|
|
|
|
have_ld_version_script=no
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
;;
|
|
|
|
* )
|
|
|
|
|
2011-09-01 19:06:49 +00:00
|
|
|
if test "$have_solaris_ld" = "yes"; then
|
|
|
|
GLD=`$LD --help < /dev/null 2>&1 | grep 'M mapfile'`
|
|
|
|
else
|
|
|
|
GLD=`$LD --help < /dev/null 2>/dev/null | grep version-script`
|
|
|
|
fi
|
|
|
|
|
2006-03-04 22:50:47 +00:00
|
|
|
if test "$GLD"; then
|
|
|
|
have_ld_version_script=yes
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
else
|
|
|
|
have_ld_version_script=no
|
|
|
|
AC_MSG_RESULT(no)
|
2006-04-20 12:20:46 +00:00
|
|
|
AC_MSG_WARN(*** You have not enabled versioned symbols.)
|
2006-03-04 22:50:47 +00:00
|
|
|
fi
|
2010-08-11 13:06:11 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2006-03-04 22:50:47 +00:00
|
|
|
AM_CONDITIONAL(HAVE_LD_VERSION_SCRIPT, test "$have_ld_version_script" = "yes")
|
2006-03-02 13:23:18 +00:00
|
|
|
|
2008-07-30 19:47:09 +00:00
|
|
|
if test "$have_ld_version_script" = "yes"; then
|
|
|
|
AC_MSG_CHECKING([for symbol prefix])
|
|
|
|
SYMBOL_PREFIX=`echo "PREFIX=__USER_LABEL_PREFIX__" \
|
2013-03-02 20:58:22 +00:00
|
|
|
| ${CPP-${CC-gcc} -E} - 2>&1 \
|
|
|
|
| ${EGREP-grep} "^PREFIX=" \
|
|
|
|
| ${SED-sed} -e "s:^PREFIX=::" -e "s:__USER_LABEL_PREFIX__::"`
|
2008-07-30 19:47:09 +00:00
|
|
|
AC_SUBST(SYMBOL_PREFIX)
|
|
|
|
AC_MSG_RESULT($SYMBOL_PREFIX)
|
|
|
|
fi
|
|
|
|
|
2006-03-02 13:23:18 +00:00
|
|
|
# Substitutions for .in files
|
|
|
|
AC_SUBST(PNGLIB_VERSION)
|
|
|
|
AC_SUBST(PNGLIB_MAJOR)
|
|
|
|
AC_SUBST(PNGLIB_MINOR)
|
2008-07-30 19:47:09 +00:00
|
|
|
AC_SUBST(PNGLIB_RELEASE)
|
2006-03-02 13:23:18 +00:00
|
|
|
|
|
|
|
# Additional arguments (and substitutions)
|
|
|
|
# Allow the pkg-config directory to be set
|
|
|
|
AC_ARG_WITH(pkgconfigdir,
|
2012-01-25 14:07:29 +00:00
|
|
|
AS_HELP_STRING([[[--with-pkgconfigdir]]],
|
|
|
|
[Use the specified pkgconfig dir (default is libdir/pkgconfig)]),
|
|
|
|
[pkgconfigdir=${withval}],
|
|
|
|
[pkgconfigdir='${libdir}/pkgconfig'])
|
2004-12-03 00:14:51 +00:00
|
|
|
|
2006-03-02 13:23:18 +00:00
|
|
|
AC_SUBST([pkgconfigdir])
|
2012-01-25 14:07:29 +00:00
|
|
|
AC_MSG_NOTICE([[pkgconfig directory is ${pkgconfigdir}]])
|
2004-12-03 00:14:51 +00:00
|
|
|
|
2006-03-02 13:23:18 +00:00
|
|
|
# Make the *-config binary config scripts optional
|
|
|
|
AC_ARG_WITH(binconfigs,
|
2012-01-25 14:07:29 +00:00
|
|
|
AS_HELP_STRING([[[--with-binconfigs]]],
|
|
|
|
[Generate shell libpng-config scripts as well as pkg-config data]
|
|
|
|
[@<:@default=yes@:>@]),
|
|
|
|
[if test "${withval}" = no; then
|
|
|
|
binconfigs=
|
|
|
|
AC_MSG_NOTICE([[libpng-config scripts will not be built]])
|
|
|
|
else
|
|
|
|
binconfigs='${binconfigs}'
|
|
|
|
fi],
|
|
|
|
[binconfigs='${binconfigs}'])
|
2006-03-02 13:23:18 +00:00
|
|
|
AC_SUBST([binconfigs])
|
2004-12-03 00:14:51 +00:00
|
|
|
|
2012-01-31 13:28:13 +00:00
|
|
|
# Support for prefixes to the API function names; this will generate defines
|
|
|
|
# at the start of the build to rename exported library functions
|
|
|
|
AC_ARG_WITH(libpng-prefix,
|
|
|
|
AS_HELP_STRING([[[--with-libpng-prefix]]],
|
|
|
|
[prefix libpng exported function (API) names with the given value]),
|
|
|
|
[if test "${withval:-no}" != "no"; then
|
|
|
|
AC_SUBST([PNG_PREFIX], [${withval}])
|
|
|
|
fi])
|
2012-02-01 13:14:24 +00:00
|
|
|
AM_CONDITIONAL([DO_PNG_PREFIX], [test "${with_libpng_prefix:-no}" != "no"])
|
2012-01-31 13:28:13 +00:00
|
|
|
|
2013-04-25 15:03:42 +00:00
|
|
|
# HOST SPECIFIC OPTIONS
|
|
|
|
# =====================
|
|
|
|
#
|
|
|
|
# ARM
|
|
|
|
# ===
|
|
|
|
#
|
|
|
|
# ARM NEON (SIMD) support.
|
|
|
|
|
2011-11-03 05:42:58 +00:00
|
|
|
AC_ARG_ENABLE([arm-neon],
|
2013-03-02 20:58:22 +00:00
|
|
|
AS_HELP_STRING([[[--enable-arm-neon]]],
|
2013-04-25 15:03:42 +00:00
|
|
|
[Enable ARM NEON optimizations: =no/off, check, api, yes/on:]
|
|
|
|
[no/off: disable the optimizations; check: use internal checking code]
|
2013-03-04 22:26:31 +00:00
|
|
|
[(deprecated and poorly supported); api: disable by default, enable by]
|
2013-06-06 17:49:53 +00:00
|
|
|
[a call to png_set_option; yes/on: turn on unconditionally.]
|
|
|
|
[If not specified: determined by the compiler.]),
|
2013-03-04 22:26:31 +00:00
|
|
|
[case "$enableval" in
|
2013-04-25 15:03:42 +00:00
|
|
|
no|off)
|
|
|
|
# disable the default enabling on __ARM_NEON__ systems:
|
2013-06-08 18:07:13 +00:00
|
|
|
AC_DEFINE([PNG_ARM_NEON_OPT], [0],
|
2013-04-25 15:03:42 +00:00
|
|
|
[Disable ARM Neon optimizations])
|
|
|
|
# Prevent inclusion of the assembler files below:
|
|
|
|
enable_arm_neon=no;;
|
2013-10-14 16:38:53 +00:00
|
|
|
check|check-intrinsics)
|
2013-03-04 22:26:31 +00:00
|
|
|
AC_DEFINE([PNG_ARM_NEON_CHECK_SUPPORTED], [],
|
|
|
|
[Check for ARM Neon support at run-time]);;
|
2013-10-14 16:38:53 +00:00
|
|
|
api|api-intrinsics)
|
2013-03-04 22:26:31 +00:00
|
|
|
AC_DEFINE([PNG_ARM_NEON_API_SUPPORTED], [],
|
|
|
|
[Turn on ARM Neon optimizations at run-time]);;
|
2013-10-14 16:38:53 +00:00
|
|
|
yes|on|yes-intrinsics|on-intrinsics)
|
2013-06-08 18:07:13 +00:00
|
|
|
AC_DEFINE([PNG_ARM_NEON_OPT], [2],
|
|
|
|
[Enable ARM Neon optimizations])
|
|
|
|
AC_MSG_WARN([--enable-arm-neon: please specify 'check' or 'api', if]
|
|
|
|
[you want the optimizations unconditionally pass -mfpu=neon]
|
|
|
|
[to the compiler.]);;
|
2013-03-04 22:26:31 +00:00
|
|
|
*)
|
2013-04-25 15:03:42 +00:00
|
|
|
AC_MSG_ERROR([--enable-arm-neon=${enable_arm_neon}: invalid value])
|
2013-03-04 22:26:31 +00:00
|
|
|
esac])
|
2013-04-25 15:03:42 +00:00
|
|
|
|
2013-04-26 04:13:08 +00:00
|
|
|
# Add ARM specific files to all builds where the host_cpu is arm ('arm*') or
|
|
|
|
# where ARM optimizations were explicitly requested (this allows a fallback if a
|
|
|
|
# future host CPU does not match 'arm*')
|
2013-04-25 15:03:42 +00:00
|
|
|
|
|
|
|
AM_CONDITIONAL([PNG_ARM_NEON],
|
|
|
|
[test "$enable_arm_neon" != 'no' &&
|
2013-04-26 04:13:08 +00:00
|
|
|
case "$host_cpu" in
|
|
|
|
arm*) :;;
|
|
|
|
*) test "$enable_arm_neon" != '';;
|
|
|
|
esac])
|
2011-11-03 05:42:58 +00:00
|
|
|
|
2013-10-14 18:15:09 +00:00
|
|
|
case "$enable_arm_neon" in
|
|
|
|
*-intrinsics)
|
|
|
|
use_arm_intrinsics='yes';;
|
|
|
|
*)
|
|
|
|
use_arm_intrinsics='no';;
|
|
|
|
esac
|
|
|
|
|
2013-10-14 16:14:36 +00:00
|
|
|
AM_CONDITIONAL([PNG_ARM_NEON_INTRINSICS],
|
2013-10-14 18:15:09 +00:00
|
|
|
[test "$use_arm_intrinsics" = 'yes'])
|
2013-10-14 16:14:36 +00:00
|
|
|
|
2012-01-25 14:07:29 +00:00
|
|
|
AC_MSG_NOTICE([[Extra options for compiler: $PNG_COPTS]])
|
|
|
|
|
2006-03-02 13:23:18 +00:00
|
|
|
# Config files, substituting as above
|
2009-12-25 22:17:30 +00:00
|
|
|
AC_CONFIG_FILES([Makefile libpng.pc:libpng.pc.in])
|
2009-11-13 22:29:45 +00:00
|
|
|
AC_CONFIG_FILES([libpng-config:libpng-config.in],
|
2012-01-25 14:07:29 +00:00
|
|
|
[chmod +x libpng-config])
|
2004-12-03 00:14:51 +00:00
|
|
|
|
|
|
|
AC_OUTPUT
|