[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/configure,v
From: |
Chong Yidong |
Subject: |
[Emacs-diffs] Changes to emacs/configure,v |
Date: |
Wed, 06 Aug 2008 05:27:16 +0000 |
CVSROOT: /sources/emacs
Module name: emacs
Changes by: Chong Yidong <cyd> 08/08/06 05:27:16
Index: configure
===================================================================
RCS file: /sources/emacs/emacs/configure,v
retrieving revision 1.287
retrieving revision 1.288
diff -u -b -r1.287 -r1.288
--- configure 5 Aug 2008 23:44:07 -0000 1.287
+++ configure 6 Aug 2008 05:27:14 -0000 1.288
@@ -14894,11 +14894,13 @@
_ACEOF
fi
+ if test "${NS_HAVE_INTEGER}" = "yes"; then
cat >>confdefs.h <<\_ACEOF
#define NS_HAVE_INTEGER 1
_ACEOF
+ fi
# We also have mouse menus.
HAVE_MENUS=yes
fi
@@ -18729,13 +18731,11 @@
cat confdefs.h >>conftest.$ac_ext
cat >>conftest.$ac_ext <<_ACEOF
/* end confdefs.h. */
-#include <sys/types.h> /* for off_t */
- #include <stdio.h>
+#include <stdio.h>
int
main ()
{
-int (*fp) (FILE *, off_t, int) = fseeko;
- return fseeko (stdin, 0, 0) && fp (stdin, 0, 0);
+return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0);
;
return 0;
}
@@ -18775,13 +18775,11 @@
cat >>conftest.$ac_ext <<_ACEOF
/* end confdefs.h. */
#define _LARGEFILE_SOURCE 1
-#include <sys/types.h> /* for off_t */
- #include <stdio.h>
+#include <stdio.h>
int
main ()
{
-int (*fp) (FILE *, off_t, int) = fseeko;
- return fseeko (stdin, 0, 0) && fp (stdin, 0, 0);
+return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0);
;
return 0;
}
- [Emacs-diffs] Changes to emacs/configure,v, Chong Yidong, 2008/08/04
- [Emacs-diffs] Changes to emacs/configure,v, Chong Yidong, 2008/08/05
- [Emacs-diffs] Changes to emacs/configure,v,
Chong Yidong <=
- [Emacs-diffs] Changes to emacs/configure,v, Adrian Robert, 2008/08/06
- [Emacs-diffs] Changes to emacs/configure,v, Andreas Schwab, 2008/08/07
- [Emacs-diffs] Changes to emacs/configure,v, Dan Nicolaescu, 2008/08/07
- [Emacs-diffs] Changes to emacs/configure,v, Chong Yidong, 2008/08/21
- [Emacs-diffs] Changes to emacs/configure,v, Miles Bader, 2008/08/22
- [Emacs-diffs] Changes to emacs/configure,v, Chong Yidong, 2008/08/28