X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=configure.ac;h=f39b4f355ff5a92c12c9bea93daaa886efead6ba;hb=827c74e6ecc24f749b25aad85080d6c06a3391bd;hp=0f3d24b3a0d70e21d0e73e8dfa0d485e68965ae8;hpb=02675e902a73b976b6fa1699a8febb24813a9ee2;p=platform%2Fupstream%2Flibexif.git diff --git a/configure.ac b/configure.ac index 0f3d24b..f39b4f3 100644 --- a/configure.ac +++ b/configure.ac @@ -1,24 +1,14 @@ AC_PREREQ(2.59) -AC_INIT([EXIF library], [0.6.17.2], [libexif-devel@lists.sourceforge.net], [libexif]) +AC_INIT([EXIF library], [0.6.21.1], [libexif-devel@lists.sourceforge.net], [libexif]) AC_CONFIG_SRCDIR([libexif/exif-data.h]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_MACRO_DIR([auto-m4]) -AM_INIT_AUTOMAKE([-Wall gnu 1.9 dist-bzip2 dist-zip check-news]) +AM_INIT_AUTOMAKE([-Wall gnu 1.9 dist-bzip2 dist-zip check-news subdir-objects]) +AM_MAINTAINER_MODE -if test ! -d "$srcdir/m4m"; then -AC_MSG_ERROR([ -You are missing the m4m/ directory in your top -$PACKAGE_TARNAME source directory. - -You are probably using an ill-maintained CVS tree. -Running - - cd $srcdir - cvs co m4m - -and re-running autogen.sh might help. -]) -fi +# 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]) @@ -52,9 +42,12 @@ 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 LIBEXIF_CURRENT=15 LIBEXIF_AGE=3 -LIBEXIF_REVISION=0 +LIBEXIF_REVISION=3 AC_SUBST([LIBEXIF_AGE]) AC_SUBST([LIBEXIF_REVISION]) AC_SUBST([LIBEXIF_CURRENT]) @@ -62,14 +55,16 @@ 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_PROG_CC +AM_PROG_CC_C_O AC_C_CONST AC_C_INLINE dnl FIXME: AC_LIBTOOL_WIN32_DLL +AM_PROG_AR AM_PROG_LIBTOOL AM_CPPFLAGS="$CPPFLAGS" GP_CONFIG_MSG([Compiler],[${CC}]) +AC_SYS_LARGEFILE dnl Create a stdint.h-like file containing size-specific integer definitions dnl that will always be available @@ -110,25 +105,23 @@ dnl --------------------------------------------------------------------------- LIBS_orig="$LIBS" LIBS="$LIBS -lm" AC_MSG_CHECKING([for math functions in libm]) -AC_LINK_IFELSE([ - #include - int main() { - double s = sqrt(0); - double p = pow(s,s); - return (int)p; - } -], [AC_MSG_RESULT(yes)], [ +AC_LINK_IFELSE([AC_LANG_PROGRAM([ + #include + ],[ + double s = sqrt(0); + double p = pow(s,s); + ])], + [AC_MSG_RESULT(yes)], [ AC_MSG_RESULT(no) LIBS="$LIBS_orig" AC_MSG_CHECKING([for math functions without libm]) - AC_LINK_IFELSE([ + AC_LINK_IFELSE([AC_LANG_PROGRAM([ #include - int main() { + ],[ double s = sqrt(0); double p = pow(s,s); - return (int)p; - } - ], [ + ])], + [ AC_MSG_RESULT(yes) ],[ AC_MSG_RESULT(no) @@ -136,6 +129,9 @@ AC_LINK_IFELSE([ ]) ]) +# Check whether libfailmalloc is available for tests +CHECK_FAILMALLOC + # doc support GP_CHECK_DOC_DIR GP_CHECK_DOXYGEN @@ -169,7 +165,7 @@ AM_CONDITIONAL([ENABLE_INTERNAL_DOCS], [test "x${set_enable_internal_docs}" = "x # --------------------------------------------------------------------------- # i18n support # --------------------------------------------------------------------------- -ALL_LINGUAS="cs da de en_CA es fr nl pl ru sk sv vi" +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]) @@ -211,6 +207,7 @@ AC_CONFIG_FILES([ po/Makefile.in libexif.spec libexif/Makefile test/Makefile + test/check-vars.sh test/nls/Makefile m4m/Makefile doc/Makefile