From 2137e2cf55a91e20c7aada2f2a2983dd87f06cc4 Mon Sep 17 00:00:00 2001 From: Akira Kakuto Date: Tue, 20 Mar 2018 22:41:25 +0000 Subject: forgot to change configure.ac git-svn-id: svn://tug.org/texlive/trunk@47052 c570f23f-e606-0410-a88d-b1316a301751 --- Build/source/libs/poppler/config.h.in | 3 ++ Build/source/libs/poppler/configure | 69 ++++++++++++++++++++++++++++++++++ Build/source/libs/poppler/configure.ac | 4 ++ 3 files changed, 76 insertions(+) (limited to 'Build/source/libs') diff --git a/Build/source/libs/poppler/config.h.in b/Build/source/libs/poppler/config.h.in index f33427bc400..67a7e08d9a0 100644 --- a/Build/source/libs/poppler/config.h.in +++ b/Build/source/libs/poppler/config.h.in @@ -64,6 +64,9 @@ /* Define to 1 if you have the `strtok_r' function. */ #undef HAVE_STRTOK_R +/* Define to 1 if `st_mtim' is a member of `struct stat'. */ +#undef HAVE_STRUCT_STAT_ST_MTIM + /* Define to 1 if you have the header file, and it defines `DIR'. */ #undef HAVE_SYS_DIR_H diff --git a/Build/source/libs/poppler/configure b/Build/source/libs/poppler/configure index dc3b7b5cfc2..a13a2298e3b 100755 --- a/Build/source/libs/poppler/configure +++ b/Build/source/libs/poppler/configure @@ -2073,6 +2073,63 @@ $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_func + +# ac_fn_c_check_member LINENO AGGR MEMBER VAR INCLUDES +# ---------------------------------------------------- +# Tries to find if the field MEMBER exists in type AGGR, after including +# INCLUDES, setting cache variable VAR accordingly. +ac_fn_c_check_member () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2.$3" >&5 +$as_echo_n "checking for $2.$3... " >&6; } +if eval \${$4+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$5 +int +main () +{ +static $2 ac_aggr; +if (ac_aggr.$3) +return 0; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + eval "$4=yes" +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$5 +int +main () +{ +static $2 ac_aggr; +if (sizeof ac_aggr.$3) +return 0; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + eval "$4=yes" +else + eval "$4=no" +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +eval ac_res=\$$4 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + +} # ac_fn_c_check_member cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. @@ -7215,6 +7272,18 @@ _ACEOF fi done + +ac_fn_c_check_member "$LINENO" "struct stat" "st_mtim" "ac_cv_member_struct_stat_st_mtim" "$ac_includes_default" +if test "x$ac_cv_member_struct_stat_st_mtim" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE_STRUCT_STAT_ST_MTIM 1 +_ACEOF + + +fi + + # Check whether --enable-largefile was given. if test "${enable_largefile+set}" = set; then : enableval=$enable_largefile; diff --git a/Build/source/libs/poppler/configure.ac b/Build/source/libs/poppler/configure.ac index 74596c7b298..04c0106d457 100644 --- a/Build/source/libs/poppler/configure.ac +++ b/Build/source/libs/poppler/configure.ac @@ -99,6 +99,10 @@ AC_HEADER_DIRENT dnl Checks for library functions (from goo/glibc.h and more). AC_CHECK_FUNCS([gettimeofday gmtime_r localtime_r mkstemp popen rand_r \ timegm strtok_r]) + +dnl Check for struct stat needed by goo/gfile.c +AC_CHECK_MEMBERS([struct stat.st_mtim]) + AC_SYS_LARGEFILE AC_FUNC_FSEEKO AC_CHECK_FUNC([ftell64], [AC_CHECK_FUNCS([fseek64])]) -- cgit v1.2.3