]> git.eshelyaron.com Git - emacs.git/commitdiff
Auto-commit of generated files.
authorGlenn Morris <rgm@gnu.org>
Tue, 7 Jun 2011 10:18:29 +0000 (06:18 -0400)
committerGlenn Morris <rgm@gnu.org>
Tue, 7 Jun 2011 10:18:29 +0000 (06:18 -0400)
autogen/config.in
autogen/configure

index 24650ae708420e95051a6ed0a0879b179e719a5e..b3e1460984599a055a6ada556caebb02e7898b25 100644 (file)
@@ -1101,6 +1101,9 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
    '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 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
    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
index 534566359ee99f68942b844ce878a4cbddf09f00..63d0d9ee394c78200a29f5efe8a0a99cfd9bc41d 100755 (executable)
@@ -1249,6 +1249,7 @@ with_mailhost
 with_sound
 with_sync_input
 with_x_toolkit
+with_wide_int
 with_xpm
 with_jpeg
 with_tiff
@@ -1962,6 +1963,7 @@ Optional Packages:
   --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 @@ fi
 
 
 
+# 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;