diff options
| author | Paul Eggert | 2011-01-08 17:20:28 -0800 |
|---|---|---|
| committer | Paul Eggert | 2011-01-08 17:20:28 -0800 |
| commit | a451f14b09368f4b9f96d61ddb2ee69ac048c414 (patch) | |
| tree | d4076c67607428c2bd10d0d69bf763504c42ef06 /src | |
| parent | fa2c4f5619481856c8cdf33be987d5785f51b750 (diff) | |
| download | emacs-a451f14b09368f4b9f96d61ddb2ee69ac048c414.tar.gz emacs-a451f14b09368f4b9f96d61ddb2ee69ac048c414.zip | |
Regenerate.
Diffstat (limited to 'src')
| -rw-r--r-- | src/config.in | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/config.in b/src/config.in index 0e7ba9d2b99..e50e1e5af45 100644 --- a/src/config.in +++ b/src/config.in | |||
| @@ -105,6 +105,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 105 | /* Define to 1 if ALSA is available. */ | 105 | /* Define to 1 if ALSA is available. */ |
| 106 | #undef HAVE_ALSA | 106 | #undef HAVE_ALSA |
| 107 | 107 | ||
| 108 | /* Define to 1 if strtold conforms to C99. */ | ||
| 109 | #undef HAVE_C99_STRTOLD | ||
| 110 | |||
| 108 | /* Define to 1 if you have the `cbrt' function. */ | 111 | /* Define to 1 if you have the `cbrt' function. */ |
| 109 | #undef HAVE_CBRT | 112 | #undef HAVE_CBRT |
| 110 | 113 | ||
| @@ -1059,6 +1062,16 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 1059 | /* Define to empty if `const' does not conform to ANSI C. */ | 1062 | /* Define to empty if `const' does not conform to ANSI C. */ |
| 1060 | #undef const | 1063 | #undef const |
| 1061 | 1064 | ||
| 1065 | /* Work around a bug in Apple GCC 4.0.1 build 5465: In C99 mode, it supports | ||
| 1066 | the ISO C 99 semantics of 'extern inline' (unlike the GNU C semantics of | ||
| 1067 | earlier versions), but does not display it by setting __GNUC_STDC_INLINE__. | ||
| 1068 | __APPLE__ && __MACH__ test for MacOS X. | ||
| 1069 | __APPLE_CC__ tests for the Apple compiler and its version. | ||
| 1070 | __STDC_VERSION__ tests for the C99 mode. */ | ||
| 1071 | #if defined __APPLE__ && defined __MACH__ && __APPLE_CC__ >= 5465 && !defined __cplusplus && __STDC_VERSION__ >= 199901L && !defined __GNUC_STDC_INLINE__ | ||
| 1072 | # define __GNUC_STDC_INLINE__ 1 | ||
| 1073 | #endif | ||
| 1074 | |||
| 1062 | /* Define to a type if <wchar.h> does not define. */ | 1075 | /* Define to a type if <wchar.h> does not define. */ |
| 1063 | #undef mbstate_t | 1076 | #undef mbstate_t |
| 1064 | 1077 | ||
| @@ -1071,6 +1084,19 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 1071 | /* Define to any substitute for sys_siglist. */ | 1084 | /* Define to any substitute for sys_siglist. */ |
| 1072 | #undef sys_siglist | 1085 | #undef sys_siglist |
| 1073 | 1086 | ||
| 1087 | /* Define as a marker that can be attached to declarations that might not | ||
| 1088 | be used. This helps to reduce warnings, such as from | ||
| 1089 | GCC -Wunused-parameter. */ | ||
| 1090 | #if __GNUC__ >= 3 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7) | ||
| 1091 | # define _GL_UNUSED __attribute__ ((__unused__)) | ||
| 1092 | #else | ||
| 1093 | # define _GL_UNUSED | ||
| 1094 | #endif | ||
| 1095 | /* The name _UNUSED_PARAMETER_ is an earlier spelling, although the name | ||
| 1096 | is a misnomer outside of parameter lists. */ | ||
| 1097 | #define _UNUSED_PARAMETER_ _GL_UNUSED | ||
| 1098 | |||
| 1099 | |||
| 1074 | /* Define as `fork' if `vfork' does not work. */ | 1100 | /* Define as `fork' if `vfork' does not work. */ |
| 1075 | #undef vfork | 1101 | #undef vfork |
| 1076 | 1102 | ||