[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/config.in [emacs-unicode-2]
From: |
Miles Bader |
Subject: |
[Emacs-diffs] Changes to emacs/src/config.in [emacs-unicode-2] |
Date: |
Wed, 08 Dec 2004 00:48:33 -0500 |
Index: emacs/src/config.in
diff -c emacs/src/config.in:1.190.2.8 emacs/src/config.in:1.190.2.9
*** emacs/src/config.in:1.190.2.8 Fri Nov 12 02:52:55 2004
--- emacs/src/config.in Wed Dec 8 05:02:18 2004
***************
*** 1,7 ****
/* src/config.in. Generated from configure.in by autoheader. */
/* GNU Emacs site configuration template file.
! Copyright (C) 1988, 93, 94, 99, 2000, 2002 Free Software Foundation, Inc.
This file is part of GNU Emacs.
--- 1,8 ----
/* src/config.in. Generated from configure.in by autoheader. */
/* GNU Emacs site configuration template file.
! Copyright (C) 1988, 1993, 1994, 1999, 2000, 2002, 2004
! Free Software Foundation, Inc.
This file is part of GNU Emacs.
***************
*** 220,225 ****
--- 221,229 ----
/* Define to 1 if using GTK. */
#undef HAVE_GTK
+ /* Define to 1 if you have GTK and pthread (-lpthread). */
+ #undef HAVE_GTK_AND_PTHREAD
+
/* Define to 1 if GTK has both file selection and chooser dialog. */
#undef HAVE_GTK_FILE_BOTH
***************
*** 441,446 ****
--- 445,453 ----
/* Define to 1 if you have the `pstat_getdynamic' function. */
#undef HAVE_PSTAT_GETDYNAMIC
+ /* Define to 1 if you have the <pthread.h> header file. */
+ #undef HAVE_PTHREAD_H
+
/* Define to 1 if you have the <pty.h> header file. */
#undef HAVE_PTY_H
***************
*** 769,777 ****
/* If using the C implementation of alloca, define if you know the
direction of stack growth for your system; otherwise it will be
automatically deduced at run-time.
! STACK_DIRECTION > 0 => grows toward higher addresses
! STACK_DIRECTION < 0 => grows toward lower addresses
! STACK_DIRECTION = 0 => direction of growth unknown */
#undef STACK_DIRECTION
/* Define to 1 if you have the ANSI C header files. */
--- 776,784 ----
/* If using the C implementation of alloca, define if you know the
direction of stack growth for your system; otherwise it will be
automatically deduced at run-time.
! STACK_DIRECTION > 0 => grows toward higher addresses
! STACK_DIRECTION < 0 => grows toward lower addresses
! STACK_DIRECTION = 0 => direction of growth unknown */
#undef STACK_DIRECTION
/* Define to 1 if you have the ANSI C header files. */
***************
*** 920,926 ****
/* Don't try to switch on inline handling as detected by AC_C_INLINE
generally, because even if non-gcc compilers accept `inline', they
may reject `extern inline'. */
! #ifdef __GNUC__
#define INLINE __inline__
#else
#define INLINE
--- 927,933 ----
/* Don't try to switch on inline handling as detected by AC_C_INLINE
generally, because even if non-gcc compilers accept `inline', they
may reject `extern inline'. */
! #if defined (__GNUC__) && defined (OPTIMIZE)
#define INLINE __inline__
#else
#define INLINE
***************
*** 968,974 ****
/* Tell regex.c to use a type compatible with Emacs. */
#define RE_TRANSLATE_TYPE Lisp_Object
#define RE_TRANSLATE(TBL, C) CHAR_TABLE_TRANSLATE (TBL, C)
! #define RE_TRANSLATE_P(TBL) (XFASTINT (TBL) != 0)
#endif
/* Avoid link-time collision with system mktime if we will use our own. */
--- 975,987 ----
/* Tell regex.c to use a type compatible with Emacs. */
#define RE_TRANSLATE_TYPE Lisp_Object
#define RE_TRANSLATE(TBL, C) CHAR_TABLE_TRANSLATE (TBL, C)
! #ifdef make_number
! /* If make_number is a macro, use it. */
! #define RE_TRANSLATE_P(TBL) (!EQ (TBL, make_number (0)))
! #else
! /* If make_number is a function, avoid it. */
! #define RE_TRANSLATE_P(TBL) (!(INTEGERP (TBL) && XINT (TBL) == 0))
! #endif
#endif
/* Avoid link-time collision with system mktime if we will use our own. */
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] Changes to emacs/src/config.in [emacs-unicode-2],
Miles Bader <=