Mercurial > hg > xemacs-beta
changeset 5732:02d0124c6314
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 <CAHCOHQ=i7N2mYiE+M7O+0jqnDtmCBPSx+iitaintGJ=Ttwcf8Q@mail.gmail.com>.
author | Jerry James <james@xemacs.org> |
---|---|
date | Thu, 28 Mar 2013 08:33:57 -0600 |
parents | ec3712ffd0e6 |
children | c30fdcab7bc8 |
files | src/ChangeLog src/config.h.in |
diffstat | 2 files changed, 8 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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 <james@xemacs.org> + + * 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 <acs@xemacs.org> * config.h.in: Move large file support outside WIN32_NO_CONFIGURE block.
--- 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 <sys/types.h> but the standard is <inttypes.h> @@ -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)