emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r104523: Auto-commit of generated fil


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r104523: Auto-commit of generated files.
Date: Tue, 07 Jun 2011 06:18:29 -0400
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 104523
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Tue 2011-06-07 06:18:29 -0400
message:
  Auto-commit of generated files.
modified:
  autogen/config.in
  autogen/configure
=== modified file 'autogen/config.in'
--- a/autogen/config.in 2011-05-31 10:19:08 +0000
+++ b/autogen/config.in 2011-06-07 10:18:29 +0000
@@ -1101,6 +1101,9 @@
    'wchar_t'. */
 #undef WCHAR_T_SUFFIX
 
+/* Use long long for EMACS_INT if available. */
+#undef WIDE_EMACS_INT
+
 /* Define to l, ll, u, ul, ull, etc., as suitable for constants of type
    'wint_t'. */
 #undef WINT_T_SUFFIX
@@ -1261,6 +1264,20 @@
    is a misnomer outside of parameter lists.  */
 #define _UNUSED_PARAMETER_ _GL_UNUSED
 
+/* The __pure__ attribute was added in gcc 2.96.  */
+#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96)
+# define _GL_ATTRIBUTE_PURE __attribute__ ((__pure__))
+#else
+# define _GL_ATTRIBUTE_PURE /* empty */
+#endif
+
+/* The __const__ attribute was added in gcc 2.95.  */
+#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95)
+# define _GL_ATTRIBUTE_CONST __attribute__ ((__const__))
+#else
+# define _GL_ATTRIBUTE_CONST /* empty */
+#endif
+
 
 /* Define as a macro for copying va_list variables. */
 #undef va_copy

=== modified file 'autogen/configure'
--- a/autogen/configure 2011-05-30 10:18:40 +0000
+++ b/autogen/configure 2011-06-07 10:18:29 +0000
@@ -1249,6 +1249,7 @@
 with_sound
 with_sync_input
 with_x_toolkit
+with_wide_int
 with_xpm
 with_jpeg
 with_tiff
@@ -1962,6 +1963,7 @@
   --without-sync-input    process async input synchronously
   --with-x-toolkit=KIT    use an X toolkit (KIT one of: yes or gtk, gtk3,
                           lucid or athena, motif, no)
+  --with-wide-int         prefer wide Emacs integers (typically 62-bit)
   --without-xpm           don't compile with XPM image support
   --without-jpeg          don't compile with JPEG image support
   --without-tiff          don't compile with TIFF image support
@@ -3823,6 +3825,20 @@
 
 
 
+# Check whether --with-wide-int was given.
+if test "${with_wide_int+set}" = set; then :
+  withval=$with_wide_int;
+else
+      with_wide_int=no
+fi
+
+if test "$with_wide_int" = yes; then
+
+$as_echo "#define WIDE_EMACS_INT 1" >>confdefs.h
+
+fi
+
+
 # Check whether --with-xpm was given.
 if test "${with_xpm+set}" = set; then :
   withval=$with_xpm;


reply via email to

[Prev in Thread] Current Thread [Next in Thread]