# HG changeset patch # User Jerry James # Date 1364481237 21600 # Node ID 02d0124c631454a744ad752c06e5c5966d781e12 # Parent ec3712ffd0e67181ae8d48ee0c09af2ca14cca80 AC_FUNC_SEEKO is the name of the autoconf macro. HAVE_FSEEKO is the name of the C preprocessor symbol. Do not confuse the two. See xemacs-patches message . diff -r ec3712ffd0e6 -r 02d0124c6314 src/ChangeLog --- a/src/ChangeLog Fri Mar 15 13:52:53 2013 -0600 +++ b/src/ChangeLog Thu Mar 28 08:33:57 2013 -0600 @@ -1,3 +1,9 @@ +2013-03-28 Jerry James + + * config.h.in: AC_FUNC_FSEEKO is the name of the autoconf macro. + HAVE_FSEEKO is the name of the C preprocessor symbol. Do not + confuse the two. + 2013-03-11 Vin Shelton * config.h.in: Move large file support outside WIN32_NO_CONFIGURE block. diff -r ec3712ffd0e6 -r 02d0124c6314 src/config.h.in --- a/src/config.h.in Fri Mar 15 13:52:53 2013 -0600 +++ b/src/config.h.in Thu Mar 28 08:33:57 2013 -0600 @@ -760,7 +760,7 @@ #undef SIZEOF_OFF_T /* Large file support */ -#undef AC_FUNC_FSEEKO +#undef HAVE_FSEEKO /* some systems (Cygwin) typedef u?intptr_t in but the standard is @@ -1179,7 +1179,7 @@ #define SUPPORT_CONFOUNDING_FUNCTIONS NEED_TO_HANDLE_21_4_CODE /* Large file support */ -#ifdef AC_FUNC_FSEEKO +#ifdef HAVE_FSEEKO # define OFF_T off_t # define FSEEK(stream, offset, whence) fseeko (stream, offset, whence) # define FTELL(stream) ftello (stream)