diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2018-03-20 22:41:25 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2018-03-20 22:41:25 +0000 |
commit | 2137e2cf55a91e20c7aada2f2a2983dd87f06cc4 (patch) | |
tree | cb7736494291a8d32abeb6c8d90bf6260e3a8c9e /Build/source | |
parent | fee6f3609ee8ecf3233151f9c7962ce65b7223a2 (diff) |
forgot to change configure.ac
git-svn-id: svn://tug.org/texlive/trunk@47052 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source')
-rw-r--r-- | Build/source/libs/poppler/config.h.in | 3 | ||||
-rwxr-xr-x | Build/source/libs/poppler/configure | 69 | ||||
-rw-r--r-- | Build/source/libs/poppler/configure.ac | 4 |
3 files changed, 76 insertions, 0 deletions
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 <sys/dir.h> 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])]) |