diff options
author | Karl Berry <karl@freefriends.org> | 2010-05-31 18:17:25 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-05-31 18:17:25 +0000 |
commit | e896a66d2c84fc8a9af709c65743fe9cacab530a (patch) | |
tree | 3d713f8d20bd721578cfdebd99f165f800d41c10 /Build | |
parent | a9d657e047031521926de8a1fa61d1fedbd7d611 (diff) |
do not test for stat64, we are not prepared to compile largefile, fails on AIX (tlbuild mail, 27 May 2010 20:15:40)
git-svn-id: svn://tug.org/texlive/trunk@18653 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r-- | Build/source/texk/web2c/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/texk/web2c/c-auto.in | 3 | ||||
-rwxr-xr-x | Build/source/texk/web2c/configure | 2 | ||||
-rw-r--r-- | Build/source/texk/web2c/configure.ac | 2 |
4 files changed, 6 insertions, 5 deletions
diff --git a/Build/source/texk/web2c/ChangeLog b/Build/source/texk/web2c/ChangeLog index 8631ad60748..fc10ebb81a0 100644 --- a/Build/source/texk/web2c/ChangeLog +++ b/Build/source/texk/web2c/ChangeLog @@ -1,5 +1,9 @@ 2010-05-31 Karl Berry <karl@tug.org> + * configure.ac (AC_CHECK_FUNCS): remove stat64, since we are not + prepared for largefile support in general, and this gives a false + positive on AIX. tlbuild mail from vvv, 27 May 2010 20:15:40. + * synctex.c [__attribute__]: #define __attribute__ away if it is not defined. tlbuild mail, 28 May 2010 14:34:53. diff --git a/Build/source/texk/web2c/c-auto.in b/Build/source/texk/web2c/c-auto.in index af7be28d136..f8c83a11928 100644 --- a/Build/source/texk/web2c/c-auto.in +++ b/Build/source/texk/web2c/c-auto.in @@ -168,9 +168,6 @@ /* Define to 1 if you have the `snprintf' function. */ #undef HAVE_SNPRINTF -/* Define to 1 if you have the `stat64' function. */ -#undef HAVE_STAT64 - /* Define to 1 if you have the <stdint.h> header file. */ #undef HAVE_STDINT_H diff --git a/Build/source/texk/web2c/configure b/Build/source/texk/web2c/configure index d4d6389bbed..393ff2264b9 100755 --- a/Build/source/texk/web2c/configure +++ b/Build/source/texk/web2c/configure @@ -19054,7 +19054,7 @@ if test "$ac_res" != no; then : fi -for ac_func in access atoi fmax ftime gettimeofday mkdtemp setlocale snprintf stat64 strerror strlcat strlcpy +for ac_func in access atoi fmax ftime gettimeofday mkdtemp setlocale snprintf strerror strlcat strlcpy do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" diff --git a/Build/source/texk/web2c/configure.ac b/Build/source/texk/web2c/configure.ac index 82c90984887..3a16b950319 100644 --- a/Build/source/texk/web2c/configure.ac +++ b/Build/source/texk/web2c/configure.ac @@ -233,7 +233,7 @@ if test $ac_cv_sizeof_int -lt 4; then fi AC_CHECK_SIZEOF([long]) AC_SEARCH_LIBS([pow], [m]) -AC_CHECK_FUNCS([access atoi fmax ftime gettimeofday mkdtemp setlocale snprintf stat64 strerror strlcat strlcpy]) +AC_CHECK_FUNCS([access atoi fmax ftime gettimeofday mkdtemp setlocale snprintf strerror strlcat strlcpy]) AC_CHECK_HEADERS([errno.h langinfo.h locale.h sys/time.h sys/timeb.h sys/wait.h time.h]) AC_TYPE_LONG_DOUBLE AC_TYPE_LONG_LONG_INT |