comparison src/config.in @ 112305:f31011c088d9

Regenerate.
author Paul Eggert <eggert@cs.ucla.edu>
date Sat, 08 Jan 2011 17:20:28 -0800
parents 16ae11ee4ab8
children 474d5026a5a2
comparison
equal deleted inserted replaced
112304:9539682ee916 112305:f31011c088d9
102 */ 102 */
103 #undef HAVE_ALLOCA_H 103 #undef HAVE_ALLOCA_H
104 104
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
108 /* Define to 1 if strtold conforms to C99. */
109 #undef HAVE_C99_STRTOLD
107 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
111 /* Define to 1 if you have the `cfmakeraw' function. */ 114 /* Define to 1 if you have the `cfmakeraw' function. */
1057 #undef config_opsysfile 1060 #undef config_opsysfile
1058 1061
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
1065 /* Define to `int' if <sys/types.h> does not define. */ 1078 /* Define to `int' if <sys/types.h> does not define. */
1066 #undef pid_t 1079 #undef pid_t
1068 /* Define to `unsigned int' if <sys/types.h> does not define. */ 1081 /* Define to `unsigned int' if <sys/types.h> does not define. */
1069 #undef size_t 1082 #undef size_t
1070 1083
1071 /* Define to any substitute for sys_siglist. */ 1084 /* Define to any substitute for sys_siglist. */
1072 #undef sys_siglist 1085 #undef sys_siglist
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
1073 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
1077 /* Define to empty if the keyword `volatile' does not work. Warning: valid 1103 /* Define to empty if the keyword `volatile' does not work. Warning: valid