1 new commit in XEmacs:
https://bitbucket.org/xemacs/xemacs/commits/4521c9dc64f6/
changeset: 4521c9dc64f6
user: Vin Shelton
date: 2013-03-12 22:14:44
summary: Fix native windows build which sources an unmodified config.h.in
affected #: 2 files
diff -r f7abcda06b1b06a44cc586d91d5b919becf959cd -r
4521c9dc64f6666464fcb14a83d93df544b8dd61 src/ChangeLog
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
+2013-03-11 Vin Shelton <acs(a)xemacs.org>
+
+ * config.h.in: Move large file support outside WIN32_NO_CONFIGURE block.
+
2013-03-07 Jerry James <james(a)xemacs.org>
* array.c (stack_like_malloc): Define only if WIN32_ANY.
diff -r f7abcda06b1b06a44cc586d91d5b919becf959cd -r
4521c9dc64f6666464fcb14a83d93df544b8dd61 src/config.h.in
--- a/src/config.h.in
+++ b/src/config.h.in
@@ -761,15 +761,6 @@
/* Large file support */
#undef AC_FUNC_FSEEKO
-#ifdef AC_FUNC_FSEEKO
-# define OFF_T off_t
-# define FSEEK(stream, offset, whence) fseeko (stream, offset, whence)
-# define FTELL(stream) ftello (stream)
-#else
-# define OFF_T long
-# define FSEEK(stream, offset, whence) fseek (stream, offset, whence)
-# define FTELL(stream) ftell (stream)
-#endif
/* some systems (Cygwin) typedef u?intptr_t in <sys/types.h>
but the standard is <inttypes.h>
@@ -1187,4 +1178,15 @@
#define SUPPORT_CONFOUNDING_FUNCTIONS NEED_TO_HANDLE_21_4_CODE
+/* Large file support */
+#ifdef AC_FUNC_FSEEKO
+# define OFF_T off_t
+# define FSEEK(stream, offset, whence) fseeko (stream, offset, whence)
+# define FTELL(stream) ftello (stream)
+#else
+# define OFF_T long
+# define FSEEK(stream, offset, whence) fseek (stream, offset, whence)
+# define FTELL(stream) ftell (stream)
+#endif
+
#endif /* _SRC_CONFIG_H_ */
Repository URL:
https://bitbucket.org/xemacs/xemacs/
--
This is a commit notification from
bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.
_______________________________________________
XEmacs-Patches mailing list
XEmacs-Patches(a)xemacs.org
http://lists.xemacs.org/mailman/listinfo/xemacs-patches