1 Star 0 Fork 33

cheng_jinsong / third_party_libexif

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
configure.ac 8.39 KB
一键复制 编辑 原始数据 按行查看 历史
003 提交于 2023-05-19 12:07 . update libexif
AC_PREREQ(2.69)
AC_INIT([EXIF library],
[0.6.24],
[libexif-devel@lists.sourceforge.net],
[libexif],
[https://libexif.github.io/])
AC_CONFIG_SRCDIR([libexif/exif-data.h])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIR([auto-m4])
AM_INIT_AUTOMAKE([
-Wall
gnu
1.14.1
dist-xz
dist-bzip2
dist-zip
check-news
subdir-objects
])
AM_MAINTAINER_MODE
# Use the silent-rules feature when possible.
m4_ifndef([AM_SILENT_RULES], [m4_define([AM_SILENT_RULES],[])])
AM_SILENT_RULES([yes])
GP_CHECK_SHELL_ENVIRONMENT
GP_CONFIG_MSG([Build])
GP_CONFIG_MSG([Source code location], [${srcdir}])
dnl ---------------------------------------------------------------------------
dnl Advanced information about versioning:
dnl * "Writing shared libraries" by Mike Hearn
dnl http://plan99.net/~mike/writing-shared-libraries.html
dnl * libtool.info chapter "Versioning"
dnl * libtool.info chapter "Updating library version information"
dnl ---------------------------------------------------------------------------
dnl Versioning:
dnl - CURRENT (Major): Increment if the interface has changes. AGE is always
dnl *changed* at the same time.
dnl - AGE (Micro): Increment if any interfaces have been added; set to 0
dnl if any interfaces have been removed. Removal has
dnl precedence over adding, so set to 0 if both happened.
dnl It denotes upward compatibility.
dnl - REVISION (Minor): Increment any time the source changes; set to
dnl 0 if you incremented CURRENT.
dnl
dnl To summarize. Any interface *change* increment CURRENT. If that interface
dnl change does not break upward compatibility (ie it is an addition),
dnl increment AGE, Otherwise AGE is reset to 0. If CURRENT has changed,
dnl REVISION is set to 0, otherwise REVISION is incremented.
dnl ---------------------------------------------------------------------------
dnl C:A:R
dnl 12:0:1 0.6.13
dnl 13:1:0 added EXIF_DATA_OPTION_DONT_CHANGE_MAKER_NOTE (for 0.6.14)
dnl 14:2:0 added XP_ WinXP tags (for 0.6.15)
dnl 14:2:1 0.6.17
dnl 15:3:0 added exif_loader_get_buf (for 0.6.18)
dnl 15:3:1 0.6.19
dnl 15:3:2 0.6.20
dnl 15:3:3 0.6.21
dnl 15:3:4 0.6.22
LIBEXIF_CURRENT=15
LIBEXIF_AGE=3
LIBEXIF_REVISION=4
AC_SUBST([LIBEXIF_AGE])
AC_SUBST([LIBEXIF_REVISION])
AC_SUBST([LIBEXIF_CURRENT])
AC_SUBST([LIBEXIF_CURRENT_MIN],[`expr $LIBEXIF_CURRENT - $LIBEXIF_AGE`])
LIBEXIF_VERSION_INFO="$LIBEXIF_CURRENT:$LIBEXIF_REVISION:$LIBEXIF_AGE"
AC_SUBST([LIBEXIF_VERSION_INFO])
AC_C_INLINE
AM_PROG_AR
LT_INIT([win32-dll])
AM_CPPFLAGS="$CPPFLAGS"
GP_CONFIG_MSG([Compiler], [${CC}])
dnl --------------------------------------------------------------------
dnl check for "diff" and "diff -u"
dnl --------------------------------------------------------------------
AC_ARG_VAR([DIFF], [path to diff utility (default: no)])
AC_PATH_PROG([DIFF], [diff], [no])
AM_CONDITIONAL([HAVE_DIFF], [test "x$DIFF" != xno])
DIFF_U="no"
AS_IF([test "x$DIFF" != xno], [dnl
AC_MSG_CHECKING([whether diff supports -u])
echo moo > conftest-a.c
echo moo > conftest-b.c
AS_IF([${DIFF} -u conftest-a.c conftest-b.c], [dnl
AC_MSG_RESULT([yes])
DIFF_U="$DIFF -u"
], [dnl
AC_MSG_RESULT([no])
])
rm -f conftest-a.c conftest-b.c
])
AC_SUBST([DIFF_U])
AM_CONDITIONAL([HAVE_DIFF_U], [test "x$DIFF_U" != xno])
dnl --------------------------------------------------------------------
AC_SYS_LARGEFILE
dnl Create a stdint.h-like file containing size-specific integer definitions
dnl that will always be available
AX_NEED_STDINT_H([libexif/_stdint.h])
dnl ------------------------------------------------------------------------
dnl Whether we're supposed to ship binaries in the tarball
dnl ------------------------------------------------------------------------
ship_binaries=false
AC_ARG_ENABLE([ship-binaries],
[AS_HELP_STRING([--enable-ship-binaries],
[Whether to ship binaries in the tarball [default=no]])], [
AS_VAR_IF([enableval], [yes], [ship_binaries=true])
])
AM_CONDITIONAL([SHIP_BINARIES], [$ship_binaries])
GP_CONFIG_MSG([Ship binaries in tarball], [$ship_binaries])
dnl ---------------------------------------------------------------------------
dnl Whether -lm is required for our math functions
dnl ---------------------------------------------------------------------------
# we need sqrt and pow which may be in libm
# We cannot use AC_CHECK_FUNC because if CFLAGS contains
# -Wall -Werror here the check fails because
# char *sqrt() conflicts with double sqrt(double xx)
# Start by assuming -lm is needed, because it's possible that the little
# test program below will be optimized to in-line floating point code that
# doesn't require -lm, whereas the library itself cannot be so optimized
# (this actually seems to be the case on x86 with gcc 4.2). Assuming the
# reverse means that -lm could be needed but wouldn't be detected below.
LIBS_orig="$LIBS"
LIBS="$LIBS -lm"
AC_MSG_CHECKING([for math functions in libm])
AC_LINK_IFELSE([AC_LANG_PROGRAM([
#include <math.h>
],[
double s = sqrt(0);
double p = pow(s,s);
(void) p;
])],
[AC_MSG_RESULT([yes])], [
AC_MSG_RESULT([no])
LIBS="$LIBS_orig"
AC_MSG_CHECKING([for math functions without libm])
AC_LINK_IFELSE([AC_LANG_PROGRAM([
#include <math.h>
],[
double s = sqrt(0);
double p = pow(s,s);
(void) p;
])],
[
AC_MSG_RESULT([yes])
],[
AC_MSG_RESULT([no])
AC_MSG_ERROR([*** Could not find sqrt() & pow() functions])
])
])
# Check whether libfailmalloc is available for tests
CHECK_FAILMALLOC
# doc support
GP_CHECK_DOC_DIR
GP_CHECK_DOXYGEN
# Whether to enable the internal docs build.
#
# This takes quite some time due to the generation of lots of call
# graphs, so it is disabled by default.
set_enable_internal_docs=no
AC_ARG_ENABLE([internal-docs], [dnl
AS_HELP_STRING([--enable-internal-docs],
[Build internal code docs if doxygen available])], [
dnl If either --enable-foo nor --disable-foo were given, execute this.
AS_CASE(["$enableval"],
[no|off|false], [set_enable_internal_docs=no],
[yes|on|true], [set_enable_internal_docs=yes])
])
AC_MSG_CHECKING([whether to create internal code docs])
AC_MSG_RESULT([${set_enable_internal_docs}])
AM_CONDITIONAL([ENABLE_INTERNAL_DOCS],
[test "x${set_enable_internal_docs}" = "xyes"])
# ---------------------------------------------------------------------------
# i18n support
# ---------------------------------------------------------------------------
ALL_LINGUAS="be bs cs da de en_AU en_CA en_GB es fr it ja ms nl pl pt pt_BR ru sk sq sr sv tr uk vi zh_CN"
AM_PO_SUBDIRS
GP_GETTEXT_HACK([${PACKAGE}-${LIBEXIF_CURRENT_MIN}],
[Lutz Mueller and others])
AM_GNU_GETTEXT_VERSION([0.18.3])
AM_GNU_GETTEXT([external])
AM_ICONV()
GP_GETTEXT_FLAGS()
dnl ---------------------------------------------------------------------------
dnl Thread-safe functions
dnl ---------------------------------------------------------------------------
AC_MSG_CHECKING([for localtime_s])
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
#include <time.h>
]], [[
localtime_s(NULL, NULL);
]])], [dnl
have_localtime_s="yes"
AC_DEFINE([HAVE_LOCALTIME_S], [1], [Define to 1 if you have localtime_s()])
], [dnl
have_localtime_s="no"
])
AC_MSG_RESULT([$have_localtime_s])
AC_CHECK_FUNCS([localtime_r])
dnl ---------------------------------------------------------------------------
dnl Compiler/Linker Options and Warnings
dnl ---------------------------------------------------------------------------
AM_CPPFLAGS="$AM_CPPFLAGS -I\$(top_srcdir)"
AM_CPPFLAGS="$AM_CPPFLAGS -I\$(top_builddir)"
AM_LDFLAGS="$LDFLAGS"
AS_VAR_IF([GCC], [yes], [dnl
AM_CFLAGS="$AM_CFLAGS -ansi -pedantic-errors"
AM_CXXFLAGS="$AM_CXXFLAGS -ansi -pedantic-errors"
AM_CPPFLAGS="$AM_CPPFLAGS -g -Wall -Wmissing-declarations -Wmissing-prototypes"
AM_LDFLAGS="$AM_LDFLAGS -g -Wall"
])
dnl AC_SUBST([AM_CFLAGS])
dnl AC_SUBST([AM_CXXFLAGS])
AC_SUBST([AM_CPPFLAGS])
AC_SUBST([AM_LDFLAGS])
dnl ---------------------------------------------------------------------------
dnl Output files
dnl ---------------------------------------------------------------------------
AC_CONFIG_FILES([
po/Makefile.in
Makefile
libexif.spec
libexif/Makefile
test/Makefile
test/nls/Makefile
m4m/Makefile
doc/Makefile
doc/Doxyfile
doc/Doxyfile-internals
libexif.pc
libexif-uninstalled.pc
binary-dist/Makefile
contrib/Makefile
contrib/examples/Makefile
])
AC_OUTPUT
GP_CONFIG_OUTPUT
1
https://gitee.com/chneg-jinsong/third_party_libexif.git
git@gitee.com:chneg-jinsong/third_party_libexif.git
chneg-jinsong
third_party_libexif
third_party_libexif
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891