3 autogen definitions fixincl
;
5 /* Define all the fixes we know about for repairing damaged headers.
6 Please see the README before adding or changing entries in this file.
8 This is the sort command
:
10 blocksort output
=inclhack.sorted \
12 trailer
='^/\*EOF\*[/]' \
14 key
=$
'hackname[ \t]*=[ \t]*(.*);'
16 Set up a debug test so we can make the templates emit special
17 code while debugging these fixes
: */
23 /* On AIX when _LARGE_FILES is defined stdio.h defines fopen to
24 * fopen64 etc. and this causes problems when building with g
++
25 * because cstdio udefs everything from stdio.h
, leaving us with
26 * ::fopen has not been declared errors. This fixes stdio.h to
27 * undef those defines and use __asm__ to alias the symbols if
28 * building with g
++ and
-D_LARGE_FILES
31 hackname
= AAB_aix_stdio
;
33 select
= "define fopen fopen64";
35 test
-text
= ''; /* no way to test
*/
41 c_fix_arg
= <<- _EOArg_
43 #if defined __GNUG__
&& defined _LARGE_FILES
&& defined __cplusplus
44 #define __need__aix_stdio_h_fix
45 #ifdef __need__aix_stdio_h_fix
52 /* Alias the symbols using asm
*/
54 extern int
fgetpos(FILE
*, fpos64_t *)
__asm__("fgetpos64");
55 extern FILE
*fopen(const char
*, const char *)
__asm__("fopen64");
56 extern FILE
*freopen(const char
*, const char
*, FILE *)
__asm__("freopen64");
57 extern int
fseeko(FILE
*, off64_t
, int
) __asm__("fseeko64");
58 extern int
fsetpos(FILE
*, const fpos64_t *)
__asm__("fsetpos64");
59 extern off64_t
ftello(FILE *)
__asm__("ftello64");
67 /* On AIX when _LARGE_FILES is defined fcntl.h defines open to
68 * open64 and creat to creat64. This fixes fcntl.h to
69 * undef those defines and use __asm__ to alias the symbols if
70 * building with g
++ and
-D_LARGE_FILES
73 hackname
= AAB_aix_fcntl
;
75 select
= "define open[ \t]open64";
77 test
-text
= ''; /* no way to test
*/
83 c_fix_arg
= <<- _EOArg_
85 #if defined __GNUG__
&& defined _LARGE_FILES
&& defined __cplusplus
86 #define __need__aix_fcntl_h_fix
87 #ifdef __need__aix_fcntl_h_fix
91 /* Alias the symbols using asm
*/
93 extern int
open(const char
*, int
, ...
) __asm__("open64");
94 extern int
creat(const char
*, mode_t
) __asm__("creat64");
95 #
if (_XOPEN_SOURCE
>= 700)
96 extern int
openat(int
, const char
*, int
, ...
) __asm__("open64at");
106 * On Mac OS
10.3.9, the
'long double' functions are available in
107 * libSystem
, but are not prototyped in math.h.
110 hackname
= AAB_darwin7_9_long_double_funcs
;
111 mach
= "*-*-darwin7.9*";
112 files
= architecture
/ppc
/math.h
;
114 replace
= <<- _EndOfHeader_
115 /* This file prototypes the long double functions available on Mac OS
119 # define __APPLE_CC__
1345
120 # include_next
<architecture
/ppc
/math.h
>
122 # define __APPLE_CC__
1
123 # ifndef __LIBMLDBL_COMPAT
124 # ifdef __LONG_DOUBLE_128__
125 # define
__LIBMLDBL_COMPAT(sym
) __asm("_" #sym
"$LDBL128")
127 # define
__LIBMLDBL_COMPAT(sym
)
128 # endif
/* __LONG_DOUBLE_128__
*/
129 # endif
/* __LIBMLDBL_COMPAT
*/
133 extern long double
acosl( long double
) __LIBMLDBL_COMPAT(acosl
);
134 extern long double
asinl( long double
) __LIBMLDBL_COMPAT(asinl
);
135 extern long double
atanl( long double
) __LIBMLDBL_COMPAT(atanl
);
136 extern long double
atan2l( long double
, long double
) __LIBMLDBL_COMPAT(atan2l
);
137 extern long double
cosl( long double
) __LIBMLDBL_COMPAT(cosl
);
138 extern long double
sinl( long double
) __LIBMLDBL_COMPAT(sinl
);
139 extern long double
tanl( long double
) __LIBMLDBL_COMPAT(tanl
);
140 extern long double
acoshl( long double
) __LIBMLDBL_COMPAT(acoshl
);
141 extern long double
asinhl( long double
) __LIBMLDBL_COMPAT(asinhl
);
142 extern long double
atanhl( long double
) __LIBMLDBL_COMPAT(atanhl
);
143 extern long double
coshl( long double
) __LIBMLDBL_COMPAT(coshl
);
144 extern long double
sinhl( long double
) __LIBMLDBL_COMPAT(sinhl
);
145 extern long double
tanhl( long double
) __LIBMLDBL_COMPAT(tanhl
);
146 extern long double
expl( long double
) __LIBMLDBL_COMPAT(expl
);
147 extern long double
exp2l( long double
) __LIBMLDBL_COMPAT(exp2l
);
148 extern long double
expm1l( long double
) __LIBMLDBL_COMPAT(expm1l
);
149 extern long double
logl( long double
) __LIBMLDBL_COMPAT(logl
);
150 extern long double
log10l( long double
) __LIBMLDBL_COMPAT(log10l
);
151 extern long double
log2l( long double
) __LIBMLDBL_COMPAT(log2l
);
152 extern long double
log1pl( long double
) __LIBMLDBL_COMPAT(log1pl
);
153 extern long double
logbl( long double
) __LIBMLDBL_COMPAT(logbl
);
154 extern long double
modfl( long double
, long double
* ) __LIBMLDBL_COMPAT(modfl
);
155 extern long double
ldexpl( long double
, int
) __LIBMLDBL_COMPAT(ldexpl
);
156 extern long double
frexpl( long double
, int
* ) __LIBMLDBL_COMPAT(frexpl
);
157 extern int
ilogbl( long double
) __LIBMLDBL_COMPAT(ilogbl
);
158 extern long double
scalbnl( long double
, int
) __LIBMLDBL_COMPAT(scalbnl
);
159 extern long double
scalblnl( long double
, long int
) __LIBMLDBL_COMPAT(scalblnl
);
160 extern long double
fabsl( long double
) __LIBMLDBL_COMPAT(fabsl
);
161 extern long double
cbrtl( long double
) __LIBMLDBL_COMPAT(cbrtl
);
162 extern long double
hypotl( long double
, long double
) __LIBMLDBL_COMPAT(hypotl
);
163 extern long double
powl( long double
, long double
) __LIBMLDBL_COMPAT(powl
);
164 extern long double
sqrtl( long double
) __LIBMLDBL_COMPAT(sqrtl
);
165 extern long double
erfl( long double
) __LIBMLDBL_COMPAT(erfl
);
166 extern long double
erfcl( long double
) __LIBMLDBL_COMPAT(erfcl
);
167 extern long double
lgammal( long double
) __LIBMLDBL_COMPAT(lgammal
);
168 extern long double
tgammal( long double
) __LIBMLDBL_COMPAT(tgammal
);
169 extern long double
ceill( long double
) __LIBMLDBL_COMPAT(ceill
);
170 extern long double
floorl( long double
) __LIBMLDBL_COMPAT(floorl
);
171 extern long double
nearbyintl( long double
) __LIBMLDBL_COMPAT(nearbyintl
);
172 extern long double
rintl( long double
) __LIBMLDBL_COMPAT(rintl
);
173 extern long int
lrintl( long double
) __LIBMLDBL_COMPAT(lrintl
);
174 extern long long int
llrintl( long double
) __LIBMLDBL_COMPAT(llrintl
);
175 extern long double
roundl( long double
) __LIBMLDBL_COMPAT(roundl
);
176 extern long int
lroundl( long double
) __LIBMLDBL_COMPAT(lroundl
);
177 extern long long int
llroundl( long double
) __LIBMLDBL_COMPAT(llroundl
);
178 extern long double
truncl( long double
) __LIBMLDBL_COMPAT(truncl
);
179 extern long double
fmodl( long double
, long double
) __LIBMLDBL_COMPAT(fmodl
);
180 extern long double
remainderl( long double
, long double
) __LIBMLDBL_COMPAT(remainderl
);
181 extern long double
remquol( long double
, long double
, int
* ) __LIBMLDBL_COMPAT(remquol
);
182 extern long double
copysignl( long double
, long double
) __LIBMLDBL_COMPAT(copysignl
);
183 extern long double
nanl( const char
* ) __LIBMLDBL_COMPAT(nanl
);
184 extern long double
nextafterl( long double
, long double
) __LIBMLDBL_COMPAT(nextafterl
);
185 extern long double
nexttowardl( long double
, long double
) __LIBMLDBL_COMPAT(nexttowardl
);
186 extern long double
fdiml( long double
, long double
) __LIBMLDBL_COMPAT(fdiml
);
187 extern long double
fmaxl( long double
, long double
) __LIBMLDBL_COMPAT(fmaxl
);
188 extern long double
fminl( long double
, long double
) __LIBMLDBL_COMPAT(fminl
);
189 extern long double
fmal( long double
, long double
, long double
) __LIBMLDBL_COMPAT(fmal
);
193 #endif
/* __MATH__
*/
198 * This fixes __FD_ZERO bug for linux
2.x.
y (x
<= 2 && y
<= some n
)
201 hackname
= AAB_fd_zero_asm_posix_types_h
;
202 files
= asm
/posix_types.h
;
203 mach
= 'i[34567]86-*-linux*';
206 bypass
= 'posix_types_64';
209 * Define _POSIX_TYPES_H_WRAPPER at the end of the wrapper
, not
210 * the start
, so that if #include_next gets another instance of
211 * the wrapper
, this will follow the #include_next chain until
212 * we arrive at the real
<asm
/posix_types.h
>.
214 replace
= <<- _EndOfHeader_
215 /* This file fixes a bug in the __FD_ZERO macro
216 for older versions of the Linux kernel.
*/
217 #ifndef _POSIX_TYPES_H_WRAPPER
218 #include
<features.h
>
219 #include_next
<asm
/posix_types.h
>
221 #if
defined(__FD_ZERO
) && !defined(__GLIBC__
)
223 #define
__FD_ZERO(fdsetp
) \
226 __asm__
__volatile__("cld ; rep ; stosl" \
227 : "=&c" (__d0
), "=&D" (__d1
) \
228 : "a" (0), "0" (__FDSET_LONGS
), \
229 "1" ((__kernel_fd_set *)
(fdsetp
)) :"memory"); \
233 #define _POSIX_TYPES_H_WRAPPER
234 #endif
/* _POSIX_TYPES_H_WRAPPER
*/
239 * This fixes __FD_ZERO bug for glibc
-1.x
242 hackname
= AAB_fd_zero_gnu_types_h
;
244 mach
= 'i[34567]86-*-linux*';
247 * Define _TYPES_H_WRAPPER at the end of the wrapper
, not
248 * the start
, so that if #include_next gets another instance of
249 * the wrapper
, this will follow the #include_next chain until
250 * we arrive at the real
<gnu
/types.h
>.
252 replace
= <<- _EndOfHeader_
253 /* This file fixes a bug in the __FD_ZERO macro present in glibc
1.x.
*/
254 #ifndef _TYPES_H_WRAPPER
255 #include
<features.h
>
256 #include_next
<gnu
/types.h
>
258 #if
defined(__FD_ZERO
) && !defined(__GLIBC__
)
260 # define
__FD_ZERO(fdsetp
) \
263 __asm__
__volatile__("cld ; rep ; stosl" \
264 : "=&c" (__d0
), "=&D" (__d1
) \
265 : "a" (0), "0" (__FDSET_LONGS
), \
266 "1" ((__fd_set *)
(fdsetp
)) :"memory"); \
270 #define _TYPES_H_WRAPPER
271 #endif
/* _TYPES_H_WRAPPER
*/
276 * This fixes __FD_ZERO bug for glibc
-2.0.x
279 hackname
= AAB_fd_zero_selectbits_h
;
280 files
= selectbits.h
;
281 mach
= 'i[34567]86-*-linux*';
284 * Define _SELECTBITS_H_WRAPPER at the end of the wrapper
, not
285 * the start
, so that if #include_next gets another instance of
286 * the wrapper
, this will follow the #include_next chain until
287 * we arrive at the real
<selectbits.h
>.
289 replace
= <<- _EndOfHeader_
290 /* This file fixes a bug in the __FD_ZERO macro present in glibc
2.0.x.
*/
291 #ifndef _SELECTBITS_H_WRAPPER
292 #include
<features.h
>
293 #include_next
<selectbits.h
>
295 #if
defined(__FD_ZERO
) && defined(__GLIBC__
) \\
296 && defined(__GLIBC_MINOR__
) && __GLIBC__
== 2 \\
297 && __GLIBC_MINOR__
== 0
299 #define
__FD_ZERO(fdsetp
) \\
302 __asm__
__volatile__ ("cld; rep; stosl" \\
303 : "=&c" (__d0
), "=&D" (__d1
) \\
304 : "a" (0), "0" (sizeof (__fd_set
) \\
305 / sizeof (__fd_mask
)), \\
306 "1" ((__fd_mask *)
(fdsetp
)) \\
311 #define _SELECTBITS_H_WRAPPER
312 #endif
/* _SELECTBITS_H_WRAPPER
*/
317 * Solaris
<sys
/varargs.h
> is a
DDK (aka kernel
-land
) header providing
318 * the same interface as
<stdarg.h
>. No idea why they couldn
't have just
319 * used the standard header.
322 hackname = AAB_solaris_sys_varargs_h;
323 files = "sys/varargs.h";
324 mach = '*-*-solaris
*';
325 replace = <<- _EndOfHeader_
335 * Fix non-ANSI memcpy declaration that conflicts with gcc's builtin
336 * declaration on Sun OS
4.x. We must only fix this on Sun OS
4.x
, because
337 * many other systems have similar text but correct versions of the file.
338 * To ensure only Sun
's is fixed, we grep for a likely unique string.
339 * Fix also on sysV68 R3V7.1 (head/memory.h\t50.1\t )
342 hackname = AAB_sun_memcpy;
344 select = "/\\*\t@\\(#\\)"
345 "(head/memory.h\t50.1\t "
346 "|memory\\.h 1\\.[2-4] 8./../.. SMI; from S5R2 1\\.2\t)\\*/";
348 replace = <<- _EndOfHeader_
349 /* This file was generated by fixincludes */
354 extern void *memccpy();
355 extern void *memchr();
356 extern void *memcpy();
357 extern void *memset();
359 extern char *memccpy();
360 extern char *memchr();
361 extern char *memcpy();
362 extern char *memset();
363 #endif /* __STDC__ */
367 #endif /* __memory_h__ */
372 * Fix assert.h on VxWorks:
375 hackname = AAB_vxworks_assert;
377 mach = "*-*-vxworks*";
379 replace = <<- _EndOfHeader_
387 #if defined(__STDC__) || defined(__cplusplus)
388 extern void __assert (const char*);
390 extern void __assert ();
394 #define assert(ign) ((void)0)
397 #define ASSERT_STRINGIFY(str) ASSERT_STRINGIFY_HELPER(str)
398 #define ASSERT_STRINGIFY_HELPER(str) #str
400 #define assert(test) ((void) \
401 ((test) ? ((void)0) : \
402 __assert("Assertion failed: " ASSERT_STRINGIFY(test) ", file " \
403 __FILE__ ", line " ASSERT_STRINGIFY(__LINE__) "\n")))
412 * Add needed include to regs.h (NOT the gcc header) on VxWorks
416 hackname = AAB_vxworks_regs_vxtypes;
418 mach = "*-*-vxworks*";
420 replace = <<- _EndOfHeader_
423 #include <types/vxTypesOld.h>
424 #include_next <arch/../regs.h>
430 * Make VxWorks stdint.h a bit more compliant - add typedefs
433 hackname = AAB_vxworks_stdint;
435 mach = "*-*-vxworks*";
437 replace = <<- _EndOfHeader_
440 /* get int*_t, uint*_t */
441 #include <types/vxTypes.h>
443 /* get legacy vxworks types for compatibility */
444 #include <types/vxTypesOld.h>
446 typedef long intptr_t;
447 typedef unsigned long uintptr_t;
449 typedef int64_t intmax_t;
450 typedef uint64_t uintmax_t;
452 typedef int8_t int_least8_t;
453 typedef int16_t int_least16_t;
454 typedef int32_t int_least32_t;
455 typedef int64_t int_least64_t;
457 typedef uint8_t uint_least8_t;
458 typedef uint16_t uint_least16_t;
459 typedef uint32_t uint_least32_t;
460 typedef uint64_t uint_least64_t;
462 typedef int8_t int_fast8_t;
463 typedef int int_fast16_t;
464 typedef int32_t int_fast32_t;
465 typedef int64_t int_fast64_t;
467 typedef uint8_t uint_fast8_t;
468 typedef unsigned int uint_fast16_t;
469 typedef uint32_t uint_fast32_t;
470 typedef uint64_t uint_fast64_t;
473 #define UINT8_MAX (~(uint8_t)0)
475 #define UINT16_MAX (~(uint16_t)0)
477 #define UINT32_MAX (~(uint32_t)0)
479 #define UINT64_MAX (~(uint64_t)0)
482 #define UINTPTR_MAX (~(uintptr_t)0)
483 #define UINTPTR_MIN 0
485 /* Need to do int_fast16_t as well, as type
486 size may be architecture dependent */
487 #define UINT_FAST16_MAX (~(uint_fast16_t)0)
488 #define UINT_FAST16_MAX 0
490 #define INT8_MAX (UINT8_MAX>>1)
491 #define INT8_MIN (INT8_MAX+1)
492 #define INT16_MAX (UINT16_MAX>>1)
493 #define INT16_MIN (INT16_MAX+1)
494 #define INT32_MAX (UINT32_MAX>>1)
495 #define INT32_MIN (INT32_MAX+1)
496 #define INT64_MAX (UINT64_MAX>>1)
497 #define INT64_MIN (INT64_MAX+1)
499 #define INTPTR_MAX (UINTPTR_MAX>>1)
500 #define INTPTR_MIN (INTPTR_MAX+1)
502 #define INT_FAST16_MAX (UINT_FAST16_MAX>>1)
503 #define INT_FAST16_MIN (INT_FAST16_MAX+1)
505 /* now define equiv. constants */
506 #define UINT_FAST8_MAX UINT8_MAX
507 #define UINT_FAST8_MIN UINT_FAST8_MIN
508 #define INT_FAST8_MAX INT8_MAX
509 #define INT_FAST8_MIN INT8_MIN
510 #define UINT_FAST32_MAX UINT32_MAX
511 #define UINT_FAST32_MIN UINT32_MIN
512 #define INT_FAST32_MAX INT32_MAX
513 #define INT_FAST32_MIN INT32_MIN
514 #define UINT_FAST64_MAX UINT64_MAX
515 #define UINT_FAST64_MIN UINT64_MIN
516 #define INT_FAST64_MAX INT64_MAX
517 #define INT_FAST64_MIN INT64_MIN
519 #define UINT_LEAST8_MAX UINT8_MAX
520 #define UINT_LEAST8_MIN UINT8_MIN
521 #define INT_LEAST8_MAX INT8_MAX
522 #define INT_LEAST8_MIN INT8_MIN
523 #define UINT_LEAST16_MAX UINT16_MAX
524 #define UINT_LEAST16_MIN UINT16_MIN
525 #define INT_LEAST16_MAX INT16_MAX
526 #define INT_LEAST16_MIN INT16_MIN
527 #define UINT_LEAST32_MAX UINT32_MAX
528 #define UINT_LEAST32_MIN UINT32_MIN
529 #define INT_LEAST32_MAX INT32_MAX
530 #define INT_LEAST32_MIN INT32_MIN
531 #define UINT_LEAST64_MAX UINT64_MAX
532 #define UINT_LEAST64_MIN UINT64_MIN
533 #define INT_LEAST64_MAX INT64_MAX
534 #define INT_LEAST64_MIN INT64_MIN
536 #define UINTMAX_MAX UINT64_MAX
537 #define UINTMAX_MIN UINT64_MIN
538 #define INTMAX_MAX INT64_MAX
539 #define INTMAX_MIN INT64_MIN
546 * This hack makes makes unistd.h more POSIX-compliant on VxWorks
549 hackname = AAB_vxworks_unistd;
551 mach = "*-*-vxworks*";
553 replace = <<- _EndOfHeader_
556 #include_next <unistd.h>
559 #define STDIN_FILENO 0
561 #ifndef STDOUT_FILENO
562 #define STDOUT_FILENO 1
564 #ifndef STDERR_FILENO
565 #define STDERR_FILENO 2
567 #endif /* _UNISTD_H */
572 * assert.h on AIX 7 redefines static_assert as _Static_assert without
576 hackname = aix_assert;
579 select = "#define[ \t]static_assert[ \t]_Static_assert";
581 c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
582 test_text = "#define static_assert _Static_assert";
586 * complex.h on AIX 5 and AIX 6 define _Complex_I and I in terms of __I,
587 * which only is provided by AIX xlc C99.
590 hackname = aix_complex;
593 select = "#define[ \t]_Complex_I[ \t]__I";
595 c_fix_arg = "#define _Complex_I (__extension__ 1.0iF)";
596 test_text = "#define _Complex_I __I\n";
600 * malloc.h on AIX6 uses XLC++ specific builtin syntax
603 hackname = aix_malloc;
606 select = "#ifdef __cplusplus";
608 c_fix_arg = "#if (defined(__cplusplus) && defined(__IBMCPP__))";
609 test_text = "#ifdef __cplusplus";
613 * net/if_arp.h defines a variable fc_softc instead of adding a
614 * typedef for the struct on AIX 5.2, 5.3, 6.1 and 7.1
617 hackname = aix_net_if_arp;
619 files = "net/if_arp.h";
620 select = "^struct fc_softc \\{";
622 c_fix_arg = "typedef struct _fc_softc {";
623 test_text = "struct fc_softc {\n int a;\n};";
627 * Fix AIX definition of NULL for G++.
632 files = curses.h, dbm.h, locale.h, stdio.h, stdlib.h, string.h,
633 time.h, unistd.h, wchar.h, sys/dir.h, sys/param.h, sys/types.h;
635 select = "#define[ \t]+NULL[ \t]+\\(*0L*\\)*";
637 c_fix_arg = <<- _EOFix_
642 #else /* ! __GNUG__ */
644 #endif /* __GNUG__ */
645 #else /* ! __cplusplus */
646 #define NULL ((void *)0)
647 #endif /* __cplusplus */
650 test_text = "# define\tNULL \t(0L) /* typed NULL */";
654 * pthread.h on AIX defines PTHREAD_ONCE_INIT, PTHREAD_MUTEX_INITIALIZER,
655 * PTHREAD_COND_INITIALIZER and PTHREAD_RWLOCK_INITIALIZER without enough
659 hackname = aix_once_init_1;
662 select = "#define[ \t]PTHREAD_ONCE_INIT \\\\\n"
665 c_fix_arg = "#define PTHREAD_ONCE_INIT \\\n"
667 test_text = "#define PTHREAD_ONCE_INIT \\\\\n"
672 hackname = aix_once_init_2;
675 select = "[ \t]0 \\\\\n"
678 c_fix_arg = " 0 \\\n"
680 test_text = " 0 \\\\\n"
685 hackname = aix_mutex_initializer_1;
688 select = "#define[ \t]PTHREAD_MUTEX_INITIALIZER \\\\\n"
691 c_fix_arg = "#define PTHREAD_MUTEX_INITIALIZER \\\n"
693 test_text = "#define PTHREAD_MUTEX_INITIALIZER \\\\\n"
698 hackname = aix_cond_initializer_1;
701 select = "#define[ \t]PTHREAD_COND_INITIALIZER \\\\\n"
704 c_fix_arg = "#define PTHREAD_COND_INITIALIZER \\\n"
706 test_text = "#define PTHREAD_COND_INITIALIZER \\\\\n"
711 hackname = aix_rwlock_initializer_1;
714 select = "#define[ \t]PTHREAD_RWLOCK_INITIALIZER \\\\\n"
717 c_fix_arg = "#define PTHREAD_RWLOCK_INITIALIZER \\\n"
719 test_text = "#define PTHREAD_RWLOCK_INITIALIZER \\\\\n"
724 * pthread.h on AIX 4.3.3 tries to define a macro without whitspace
725 * which violates a requirement of ISO C.
728 hackname = aix_pthread;
730 select = "(#define[\t ][A-Za-z_0-9]+)(\\\\\n[^A-Za-z_0-9 \t\n(])";
733 test_text = "#define PTHREAD_MUTEX_INITIALIZER\\\\\n"
734 "{...init stuff...}";
738 * AIX stdint.h fixes.
741 hackname = aix_stdint_1;
743 files = stdint-aix.h, stdint.h;
744 select = "#define[ \t]UINT8_MAX[ \t]\\(255U\\)\n"
745 "#define[ \t]UINT16_MAX[ \t]\\(65535U\\)";
747 c_fix_arg = "#define UINT8_MAX (255)\n"
748 "#define UINT16_MAX (65535)";
749 test_text = "#define UINT8_MAX (255U)\n"
750 "#define UINT16_MAX (65535U)";
757 hackname = aix_stdint_2;
759 files = stdint-aix.h, stdint.h;
760 select = "#define[ \t]INTPTR_MIN[ \t]INT64_MIN\n"
761 "#define[ \t]INTPTR_MAX[ \t]INT64_MAX\n"
762 "#define[ \t]UINTPTR_MAX[ \t]UINT64_MAX\n"
764 "#define[ \t]INTPTR_MIN[ \t]INT32_MIN\n"
765 "#define[ \t]INTPTR_MAX[ \t]INT32_MAX\n"
766 "#define[ \t]UINTPTR_MAX[ \t]UINT32_MAX";
768 c_fix_arg = "#define INTPTR_MIN (-INTPTR_MAX-1)\n"
769 "#define INTPTR_MAX 9223372036854775807L\n"
770 "#define UINTPTR_MAX 18446744073709551615UL\n"
772 "#define INTPTR_MIN (-INTPTR_MAX-1)\n"
773 "#define INTPTR_MAX 2147483647L\n"
774 "#define UINTPTR_MAX 4294967295UL";
775 test_text = "#define INTPTR_MIN INT64_MIN\n"
776 "#define INTPTR_MAX INT64_MAX\n"
777 "#define UINTPTR_MAX UINT64_MAX\n"
779 "#define INTPTR_MIN INT32_MIN\n"
780 "#define INTPTR_MAX INT32_MAX\n"
781 "#define UINTPTR_MAX UINT32_MAX";
788 hackname = aix_stdint_3;
790 files = stdint-aix.h, stdint.h;
791 select = "#define[ \t]PTRDIFF_MIN[ \t]INT64_MIN\n"
792 "#define[ \t]PTRDIFF_MAX[ \t]INT64_MAX\n"
794 "#define[ \t]PTRDIFF_MIN[ \t]*INT32_MIN\n"
795 "#define[ \t]PTRDIFF_MAX[ \t]*INT32_MAX";
797 c_fix_arg = "#define PTRDIFF_MIN (-9223372036854775807L - 1)\n"
798 "#define PTRDIFF_MAX 9223372036854775807L\n"
800 "#define PTRDIFF_MIN (-2147483647L - 1)\n"
801 "#define PTRDIFF_MAX 2147483647L";
802 test_text = "#define PTRDIFF_MIN INT64_MIN\n"
803 "#define PTRDIFF_MAX INT64_MAX\n"
805 "#define PTRDIFF_MIN INT32_MIN\n"
806 "#define PTRDIFF_MAX INT32_MAX";
813 hackname = aix_stdint_4;
815 files = stdint-aix.h, stdint.h;
816 select = "#define[ \t]SIZE_MAX[ \t]UINT64_MAX\n"
818 "#define[ \t]SIZE_MAX[ \t]*UINT32_MAX";
820 c_fix_arg = "#define SIZE_MAX 18446744073709551615UL\n"
822 "#define SIZE_MAX 4294967295UL";
823 test_text = "#define SIZE_MAX UINT64_MAX\n"
825 "#define SIZE_MAX UINT32_MAX";
832 hackname = aix_stdint_5;
834 files = stdint-aix.h, stdint.h;
835 select = "#define[ \t]UINT8_C\\(c\\)[ \t]__CONCAT__\\(c,U\\)\n"
836 "#define[ \t]UINT16_C\\(c\\)[ \t]__CONCAT__\\(c,U\\)";
838 c_fix_arg = "#define UINT8_C(c) c\n"
839 "#define UINT16_C(c) c";
840 test_text = "#define UINT8_C(c) __CONCAT__(c,U)\n"
841 "#define UINT16_C(c) __CONCAT__(c,U)";
845 * stdlib.h on AIX 4.3 declares strtof() with a non-const first argument.
848 hackname = aix_strtof_const;
850 select = "((extern[ \t]+)?float[ \t]+strtof)\\(char \\*, char \\*\\*\\);";
852 c_fix_arg = "%1(const char *, char **);";
853 test_text = "extern float strtof(char *, char **);";
857 * sys/machine.h on AIX 4.3.3 puts whitespace between a \ and a newline
858 * in an otherwise harmless (and #ifed out) macro definition
861 hackname = aix_sysmachine;
862 files = sys/machine.h;
866 test_text = "#define FOO \\\n"
867 " bar \\ \n baz \\ \n bat";
871 * sys/wait.h on AIX 5.2 defines macros that have both signed and
872 * unsigned types in conditional expressions.
875 hackname = aix_syswait_2;
877 select = '\? (\
(\
(\
(\
(unsigned
[^
)]*\
)[^
)]*\
) >> [^
)]*\
) \
& 0xff\
) : -1)';
879 c_fix_arg = "? (int)%1";
880 test_text = "#define WSTOPSIG(__x) "
881 "(int)(WIFSTOPPED(__x) ? ((((unsigned int)__x) >> 8) & 0xff) : -1)";
885 * sys/signal.h on some versions of AIX uses volatile in the typedef of
886 * sig_atomic_t, which causes gcc to generate a warning about duplicate
887 * volatile when a sig_atomic_t variable is declared volatile, as
888 * required by ANSI C.
891 hackname = aix_volatile;
892 files = sys/signal.h;
893 select = "typedef volatile int sig_atomic_t";
895 c_fix_arg = "typedef int sig_atomic_t";
896 test_text = "typedef volatile int sig_atomic_t;";
900 * Fix __assert declaration in assert.h on Alpha OSF/1.
903 hackname = alpha___assert;
905 select = '__assert\
(char \
*, char \
*, int\
)';
907 c_fix_arg = "__assert(const char *, const char *, int)";
908 test_text = 'extern void
__assert(char
*, char
*, int
);';
912 * Fix assert macro in assert.h on Alpha OSF/1.
913 * The superfluous int cast breaks C++.
916 hackname = alpha_assert;
918 select = "(#[ \t]*" 'define assert\
(EX\
).*)\
(\
(int\
) \
(EX\
)\
)';
920 c_fix_arg = "%1(EX)";
921 test_text = '#define
assert(EX
) (((int
) (EX
)) ?
(void
)0 '
922 ': __assert(#EX
, __FILE__
, __LINE__
))';
926 * Fix getopt declarations in stdio.h and stdlib.h on Alpha OSF/1 and AIX.
929 hackname = alpha_getopt;
932 select = 'getopt\
(int
, char \
*\
[\
], *char \
*\
)';
934 c_fix_arg = "getopt(int, char *const[], const char *)";
935 test_text = 'extern int
getopt(int
, char
*[], char *)
;';
939 * Fix missing semicolon on Alpha OSF/4 in <net/if.h>
942 hackname = alpha_if_semicolon;
944 select = "struct[ \t]+sockaddr[ \t]+vmif_paddr[ \t]+/\\*";
946 c_fix_arg = "struct sockaddr vmif_paddr;\t/*";
947 test_text = ' struct sockaddr vmif_paddr
/* protocol address
*/';
951 * Remove erroneous parentheses in sym.h on Alpha OSF/1.
954 hackname = alpha_parens;
956 select = '#ifndef\
(__mips64\
)';
958 c_fix_arg = "#ifndef __mips64";
959 test_text = "#ifndef(__mips64) /* bogus */\nextern int foo;\n#endif";
963 * Fix return value of sbrk in unistd.h on Alpha OSF/1 V2.0
967 hackname = alpha_sbrk;
969 select = "char[ \t]*\\*[\t ]*sbrk[ \t]*\\(";
971 c_fix_arg = "void *sbrk(";
972 test_text = "extern char* sbrk(ptrdiff_t increment);";
976 * For C++, avoid any typedef or macro definition of bool,
977 * and use the built in type instead.
978 * HP/UX 10.20 also has it in curses_colr/curses.h.
981 hackname = avoid_bool_define;
983 files = curses_colr/curses.h;
987 select = "#[ \t]*define[ \t]+bool[ \t]";
988 bypass = "__cplusplus";
991 c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
992 c_fix_arg = "^[ \t]*#[ \t]*define[ \t]+bool[ \t].*";
994 test_text = "# define bool\t char \n";
1001 hackname = avoid_bool_type;
1003 files = curses_colr/curses.h;
1007 select = "^[ \t]*typedef[ \t].*[ \t]bool[ \t]*;";
1008 bypass = "__cplusplus";
1011 c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
1013 test_text = "typedef unsigned int\tbool \t; /* bool\n type */";
1017 * For C++, avoid any typedef definition of wchar_t,
1018 * and use the built in type instead.
1019 * Don't do this for headers that are smart enough to do the right
1020 * thing (recent
[n
]curses.h and Xlib.h
).
1021 * Don
't do it for <linux/nls.h> which is never used from C++ anyway,
1022 * and will be broken by the edit.
1026 hackname = avoid_wchar_t_type;
1028 select = "^[ \t]*typedef[ \t].*[ \t]wchar_t[ \t]*;";
1029 bypass = "__cplusplus";
1030 bypass = "_LINUX_NLS_H";
1031 bypass = "XFree86: xc/lib/X11/Xlib\\.h";
1034 c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
1036 test_text = "typedef unsigned short\twchar_t \t; /* wchar_t\n type */";
1040 * Fix `typedef struct term;' on hppa1.1
-hp
-hpux9.
1043 hackname
= bad_struct_term
;
1045 select
= "^[ \t]*typedef[ \t]+struct[ \t]+term[ \t]*;";
1047 c_fix_arg
= "struct term;";
1049 test_text
= 'typedef struct term;';
1053 * Fix one other error in this file
:
1054 * a mismatched quote not inside a C comment.
1057 hackname
= badquote
;
1058 files
= sundev
/vuid_event.h
;
1061 c_fix_arg
= "does not";
1063 test_text
= "/* doesn't have matched single quotes */";
1067 * check for broken assert.h that needs stdio.h
1070 hackname
= broken_assert_stdio
;
1073 bypass
= "include.*stdio\\.h";
1075 c_fix_arg
= "#include <stdio.h>\n";
1076 test_text
= "extern FILE* stderr;";
1080 * check for broken assert.h that needs stdlib.h
1083 hackname
= broken_assert_stdlib
;
1085 select
= 'exit *\(|abort *\(';
1086 bypass
= "include.*stdlib\\.h";
1088 c_fix_arg
= "#ifdef __cplusplus\n"
1089 "#include <stdlib.h>\n"
1091 test_text
= "extern void exit ( int );";
1095 * Remove `extern double cabs
' declarations from math.h.
1096 * This conflicts with C99. Discovered on AIX.
1097 * Darwin hides its broken cabs in architecture-specific subdirs.
1100 hackname = broken_cabs;
1101 files = math.h, "architecture/*/math.h";
1102 select = "^extern[ \t]+double[ \t]+cabs";
1104 sed = "s/^extern[ \t]*double[ \t]*cabs[ \t]*\([^\\\)]*\);//";
1105 sed = "s/^extern[ \t]*long[ \t]*double[ \t]*cabsl[ \t]*\([^\\\)]*\);//";
1107 test_text = "#ifdef __STDC__\n"
1108 "extern double cabs(struct dbl_hypot);\n"
1110 "extern double cabs();\n"
1112 "extern double cabs ( _Complex z );";
1116 * Fixup Darwin's broken check for __builtin_nanf.
1119 hackname
= broken_nan
;
1121 * It is tempting to omit the first
"files" entry. Do not.
1122 * The testing machinery will take the first
"files" entry as the name
1123 * of a test file to play with. It would be a nuisance to have a directory
1124 * with the name
"*".
1126 files
= "architecture/ppc/math.h";
1127 files
= "architecture/*/math.h";
1128 select
= '#if defined\(__APPLE_CC__\) && \(__APPLE_CC__ >= 1345\)';
1131 c_fix_arg
= "#if 1";
1132 test_text
= "#if defined(__APPLE_CC__) && (__APPLE_CC__ >= 1345)";
1136 * Various systems derived from BSD4.4 contain a macro definition
1137 * for vfscanf that interacts badly with requirements of builtin
-attrs.def.
1138 * Known to be fixed in FreeBSD
5 system headers.
1141 hackname
= bsd_stdio_attrs_conflict
;
1143 mach
= "*-*-*darwin*";
1145 select
= "^#define[ \t]*vfscanf[ \t]*__svfscanf[ \t]*$";
1147 c_fix_arg
= '#define _BSD_STRING(_BSD_X) _BSD_STRINGX(_BSD_X)' "\n"
1148 '#define _BSD_STRINGX(_BSD_X) #_BSD_X' "\n"
1149 'int vfscanf(FILE *, const char *, __builtin_va_list) '
1150 '__asm__ (_BSD_STRING(__USER_LABEL_PREFIX__) "__svfscanf");';
1151 test_text
= '#define vfscanf __svfscanf';
1155 * Fix various macros used to define ioctl numbers.
1156 * The traditional syntax was
:
1158 * #define
_CTRL(n
, x
) (('n'<<8)+x
)
1159 * #define TCTRLCFOO
_CTRL(T
, 1)
1161 * but this does not work with the C standard
, which disallows macro
1162 * expansion inside strings. We have to rewrite it thus
:
1164 * #define
_CTRL(n
, x
) ((n
<<8)+x
)
1165 * #define TCTRLCFOO
_CTRL('T', 1)
1167 * The select expressions match too much
, but the c_fix code is cautious.
1169 * CTRL might be
: CTRL _CTRL ISCTRL BSD43_CTRL ...
1172 hackname
= ctrl_quotes_def
;
1173 select
= "define[ \t]+[A-Z0-9_]+CTRL\\([a-zA-Z][,)]";
1174 c_fix
= char_macro_def
;
1178 * This is two tests in order to ensure that the
"CTRL(c)" can
1179 * be selected in isolation from the multi
-arg format
1181 test_text
= "#define BSD43_CTRL(n, x) (('n'<<8)+x)\n";
1182 test_text
= "#define _CTRL(c) ('c'&037)";
1186 * Fix various macros used to define ioctl numbers.
1189 hackname
= ctrl_quotes_use
;
1190 select
= "define[ \t]+[A-Z0-9_]+[ \t]+[A-Z0-9_]+CTRL[ \t]*\\( *[^,']";
1191 c_fix
= char_macro_use
;
1193 test_text
= "#define TCTRLFOO BSD43_CTRL(T, 1)";
1197 * sys
/mman.h on HP
/UX is not C
++ ready
,
1198 * even though NO_IMPLICIT_EXTERN_C is defined on HP
/UX.
1200 * rpc
/types.h on OSF1
/2.0 is not C
++ ready
,
1201 * even though NO_IMPLICIT_EXTERN_C is defined for the alpha.
1203 * The problem is the declaration of malloc.
1206 hackname
= cxx_unready
;
1208 files
= rpc
/types.h
;
1209 select
= '[^#]+malloc.*;'; /* Catch any form of declaration
1210 not within a macro.
*/
1211 bypass
= '"C"|__BEGIN_DECLS';
1214 c_fix_arg
= "#ifdef __cplusplus\n"
1217 c_fix_arg
= "#ifdef __cplusplus\n"
1220 test_text
= "extern void* malloc( size_t );";
1224 * For the AAB_darwin7_9_long_double_funcs fix to be useful
,
1225 * you have to not use
"" includes.
1228 hackname
= darwin_9_long_double_funcs_2
;
1229 mach
= "*-*-darwin7.9*";
1231 select
= '#include[ \t]+\"';
1233 c_fix_arg
= "%1<%2.h>";
1235 c_fix_arg
= '([ \t]*#[ \t]*include[ \t]+)"([a-z0-9/]+)\.h"';
1237 test_text
= '#include "architecture/ppc/math.h"';
1241 * On darwin8 and earlier
, mach
-o
/swap.h isn
't properly guarded
1242 * by 'extern
"C"'. On darwin7 some mach/ headers aren't properly guarded.
1245 hackname
= darwin_externc
;
1246 mach
= "*-*-darwin*";
1247 files
= mach
-o
/swap.h
;
1248 files
= mach
/mach_time.h
;
1249 files
= mach
/mach_traps.h
;
1250 files
= mach
/message.h
;
1252 files
= mach
/semaphore.h
;
1253 bypass
= "extern \"C\"";
1254 bypass
= "__BEGIN_DECLS";
1256 c_fix_arg
= "#ifdef __cplusplus\n"
1259 c_fix_arg
= "#ifdef __cplusplus\n"
1262 test_text
= "extern void swap_fat_header();\n";
1266 * AvailabilityMacros.h on Darwin breaks with GCC
4.0, because of
1267 * bad __GNUC__ tests.
1270 hackname
= darwin_gcc4_breakage
;
1271 mach
= "*-*-darwin*";
1272 files
= AvailabilityMacros.h
;
1273 select
= "\\(__GNUC__ >= 3\\) && \\(__GNUC_MINOR__ >= 1\\)";
1275 c_fix_arg
= "((__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1))";
1276 test_text
= "#if defined(__GNUC__) && (__GNUC__ >= 3) && "
1277 "(__GNUC_MINOR__ >= 1)\n";
1281 * __private_extern__ doesn
't exist in FSF GCC. Even if it did,
1282 * why would you ever put it in a system header file?
1285 hackname = darwin_private_extern;
1286 mach = "*-*-darwin*";
1287 files = mach-o/dyld.h;
1288 select = "__private_extern__ [a-z_]+ _dyld_";
1290 c_fix_arg = "extern";
1291 c_fix_arg = "__private_extern__";
1292 test_text = "__private_extern__ int _dyld_func_lookup(\n"
1293 "const char *dyld_func_name,\n"
1294 "unsigned long *address);\n";
1298 * Darwin headers have a stdint.h that defines UINT8_C and UINT16_C to
1299 * unsigned constants.
1302 hackname = darwin_stdint_1;
1303 mach = "*-*-darwin*";
1304 files = stdint-darwin.h, stdint.h;
1306 c_fix_arg = "#define UINT8_C(v)\tv\n#define UINT16_C(v)\tv";
1307 select = "#define UINT8_C\\(v\\)[ \t]+\\(v ## U\\)\n"
1308 "#define UINT16_C\\(v\\)[ \t]+\\(v ## U\\)";
1309 test_text = "#define UINT8_C(v) (v ## U)\n"
1310 "#define UINT16_C(v) (v ## U)";
1314 * Darwin headers have a stdint.h that defines INTPTR_MIN and INTPTR_MAX
1318 hackname = darwin_stdint_2;
1319 mach = "*-*-darwin*";
1320 files = stdint-darwin.h, stdint.h;
1322 c_fix_arg = "#if __WORDSIZE == 64\n"
1323 "#define INTPTR_MAX 9223372036854775807L\n"
1324 "#define INTPTR_MIN (-INTPTR_MAX-1)\n"
1326 "#define INTPTR_MAX 2147483647L\n"
1327 "#define INTPTR_MIN (-INTPTR_MAX-1)\n"
1329 select = "#if __WORDSIZE == 64\n"
1330 "#define INTPTR_MIN[ \t]+INT64_MIN\n"
1331 "#define INTPTR_MAX[ \t]+INT64_MAX\n"
1333 "#define INTPTR_MIN[ \t]+INT32_MIN\n"
1334 "#define INTPTR_MAX[ \t]+INT32_MAX\n"
1336 test_text = "#if __WORDSIZE == 64\n"
1337 "#define INTPTR_MIN INT64_MIN\n"
1338 "#define INTPTR_MAX INT64_MAX\n"
1340 "#define INTPTR_MIN INT32_MIN\n"
1341 "#define INTPTR_MAX INT32_MAX\n"
1346 * Darwin headers have a stdint.h that defines UINTPTR_MAX with a wrong type.
1349 hackname = darwin_stdint_3;
1350 mach = "*-*-darwin*";
1351 files = stdint-darwin.h, stdint.h;
1353 c_fix_arg = "#if __WORDSIZE == 64\n"
1354 "#define UINTPTR_MAX 18446744073709551615UL\n"
1356 "#define UINTPTR_MAX 4294967295UL\n"
1358 select = "#if __WORDSIZE == 64\n"
1359 "#define UINTPTR_MAX[ \t]+UINT64_MAX\n"
1361 "#define UINTPTR_MAX[ \t]+UINT32_MAX\n"
1363 test_text = "#if __WORDSIZE == 64\n"
1364 "#define UINTPTR_MAX UINT64_MAX\n"
1366 "#define UINTPTR_MAX UINT32_MAX\n"
1371 * Darwin headers have a stdint.h that defines SIZE_MAX with a wrong type.
1374 hackname = darwin_stdint_4;
1375 mach = "*-*-darwin*";
1376 files = stdint-darwin.h, stdint.h;
1378 c_fix_arg = "#if __WORDSIZE == 64\n"
1379 "#define SIZE_MAX 18446744073709551615UL\n"
1381 "#define SIZE_MAX 4294967295UL\n"
1383 select = "#if __WORDSIZE == 64\n"
1384 "#define SIZE_MAX[ \t]+UINT64_MAX\n"
1386 "#define SIZE_MAX[ \t]+UINT32_MAX\n"
1388 test_text = "#if __WORDSIZE == 64\n"
1389 "#define SIZE_MAX UINT64_MAX\n"
1391 "#define SIZE_MAX UINT32_MAX\n"
1396 * Darwin headers have a stdint.h that defines {U,}INTMAX_{MIN,MAX}
1397 * with a wrong type.
1400 hackname = darwin_stdint_5;
1401 mach = "*-*-darwin*";
1402 files = stdint-darwin.h, stdint.h;
1404 c_fix_arg = "#if __WORDSIZE == 64\n"
1405 "#define INTMAX_MIN (-9223372036854775807L - 1)\n"
1406 "#define INTMAX_MAX 9223372036854775807L\n"
1407 "#define UINTMAX_MAX 18446744073709551615UL\n"
1409 "#define INTMAX_MIN (-9223372036854775807LL - 1)\n"
1410 "#define INTMAX_MAX 9223372036854775807LL\n"
1411 "#define UINTMAX_MAX 18446744073709551615ULL\n"
1413 select = "#define INTMAX_MIN[ \t]+INT64_MIN\n"
1414 "#define INTMAX_MAX[ \t]+INT64_MAX\n"
1416 "#define UINTMAX_MAX[ \t]+UINT64_MAX";
1417 test_text = "#define INTMAX_MIN INT64_MIN\n"
1418 "#define INTMAX_MAX INT64_MAX\n"
1420 "#define UINTMAX_MAX UINT64_MAX";
1424 * Darwin headers have a stdint.h that defines {U,}INTMAX_C
1425 * with a wrong type.
1428 hackname = darwin_stdint_6;
1429 mach = "*-*-darwin*";
1430 files = stdint-darwin.h, stdint.h;
1432 c_fix_arg = "#if __WORDSIZE == 64\n"
1433 "#define PTRDIFF_MIN (-9223372036854775807L - 1)\n"
1434 "#define PTRDIFF_MAX 9223372036854775807L\n"
1436 "#define PTRDIFF_MIN (-2147483647 - 1)\n"
1437 "#define PTRDIFF_MAX 2147483647\n"
1439 select = "#if __WORDSIZE == 64\n"
1440 "#define PTRDIFF_MIN[ \t]+INT64_MIN\n"
1441 "#define PTRDIFF_MAX[ \t]+INT64_MAX\n"
1443 "#define PTRDIFF_MIN[ \t]+INT32_MIN\n"
1444 "#define PTRDIFF_MAX[ \t]+INT32_MAX\n"
1446 test_text = "#if __WORDSIZE == 64\n"
1447 "#define PTRDIFF_MIN INT64_MIN\n"
1448 "#define PTRDIFF_MAX INT64_MAX\n"
1450 "#define PTRDIFF_MIN INT32_MIN\n"
1451 "#define PTRDIFF_MAX INT32_MAX\n"
1456 * Darwin headers have a stdint.h that defines {U,}INTMAX_C
1457 * with a wrong type.
1460 hackname = darwin_stdint_7;
1461 mach = "*-*-darwin*";
1462 files = stdint-darwin.h, stdint.h;
1464 c_fix_arg = "#if __WORDSIZE == 64\n"
1465 "#define INTMAX_C(v) (v ## L)\n"
1466 "#define UINTMAX_C(v) (v ## UL)\n"
1468 "#define INTMAX_C(v) (v ## LL)\n"
1469 "#define UINTMAX_C(v) (v ## ULL)\n"
1471 select = "#define INTMAX_C\\(v\\)[ \t]+\\(v ## LL\\)\n"
1472 "#define UINTMAX_C\\(v\\)[ \t]+\\(v ## ULL\\)";
1473 test_text = "#define INTMAX_C(v) (v ## LL)\n"
1474 "#define UINTMAX_C(v) (v ## ULL)";
1478 * Fix <c_asm.h> on Digital UNIX V4.0:
1479 * It contains a prototype for a DEC C internal asm() function,
1480 * clashing with gcc's asm keyword. So protect this with __DECC.
1483 hackname
= dec_intern_asm
;
1485 sed
= "/^[ \t]*float[ \t]*fasm/i\\\n#ifdef __DECC\n";
1486 sed
= "/^[ \t]*#[ \t]*pragma[ \t]*intrinsic([ \t]*dasm/a\\\n"
1490 " ... asm stuff ...\n"
1491 "};\n#pragma intrinsic( dasm )\n/* END ASM TEST*/";
1495 * Fix typo in
<wchar.h
> on DJGPP
2.03.
1498 hackname
= djgpp_wchar_h
;
1500 select
= "__DJ_wint_t";
1501 bypass
= "sys/djtypes.h";
1503 c_fix_arg
= "%0\n#include <sys/djtypes.h>";
1504 c_fix_arg
= "#include <stddef.h>";
1505 test_text
= "#include <stddef.h>\n"
1506 "extern __DJ_wint_t x;\n";
1510 * Fix these Sun OS files to avoid an invalid identifier in an #ifdef.
1513 hackname
= ecd_cursor
;
1514 files
= "sunwindow/win_lock.h";
1515 files
= "sunwindow/win_cursor.h";
1516 select
= 'ecd\.cursor';
1518 c_fix_arg
= 'ecd_cursor';
1520 test_text
= "#ifdef ecd.cursor\n#error bogus\n#endif /* ecd+cursor */";
1524 * Incorrect feraiseexcept extern inline in bits
/fenv.h on x86_64
1525 * that fails when compiling for SSE
-less
32-bit x86.
1528 hackname
= feraiseexcept_nosse_divbyzero
;
1529 mach
= 'i[34567]86-*-linux*', 'x86*-linux*', 'amd64-*-linux*';
1530 files
= bits
/fenv.h
, '*/bits/fenv.h';
1531 select
= "^([\t ]*)__asm__ __volatile__ \\(\"divss %1, %0 *\" : "
1532 ": \"x\" \\(__f\\), \"x\" \\(__g\\)\\);$";
1533 bypass
= "\"fdivp .*; fwait\"";
1536 c_fix_arg
= <<- _EOText_
1537 # ifdef __SSE_MATH__
1540 %1__asm__
__volatile__ ("fdivp %%%%st, %%%%st(1); fwait"
1541 %1 : "=t" (__f
) : "0" (__f
), "u" (__g
) : "st(1)");
1545 test_text
= <<- _EOText_
1546 __asm__
__volatile__ ("divss %1, %0" : : "x" (__f
), "x" (__g
));
1551 * Incorrect feraiseexcept extern inline in bits
/fenv.h on x86_64
1552 * that fails when compiling for SSE
-less
32-bit x86.
1555 hackname
= feraiseexcept_nosse_invalid
;
1556 mach
= 'i[34567]86-*-linux*', 'x86*-linux*', 'amd64-*-linux*';
1557 files
= bits
/fenv.h
, '*/bits/fenv.h';
1558 select
= "^([\t ]*)__asm__ __volatile__ \\(\"divss %0, %0 *\" : "
1559 ": \"x\" \\(__f\\)\\);$";
1560 bypass
= "\"fdiv .*; fwait\"";
1563 c_fix_arg
= <<- _EOText_
1564 # ifdef __SSE_MATH__
1567 %1__asm__
__volatile__ ("fdiv %%%%st, %%%%st(0); fwait"
1568 %1 : "=t" (__f
) : "0" (__f
));
1572 test_text
= <<- _EOText_
1573 __asm__
__volatile__ ("divss %0, %0" : : "x" (__f
));
1578 * Between
8/24/1998 and
2/17/2001, FreeBSD system headers presume
1579 * neither the existence of GCC
3 nor its exact feature set yet break
1580 * (by design?
) when __GNUC__ is set beyond
2.
1583 hackname
= freebsd_gcc3_breakage
;
1584 mach
= "*-*-freebsd*";
1585 files
= sys
/cdefs.h
;
1586 select
= '^#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7$';
1587 bypass
= '__GNUC__[ \t]*([>=]=[ \t]*[3-9]|>[ \t]*2)';
1589 c_fix_arg
= '%0 || __GNUC__ >= 3';
1590 test_text
= '#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7';
1594 * Some releases of FreeBSD
4 and FreeBSD
5.0 and
5.1 system headers presume
1595 * neither the existence of GCC
4 nor its exact feature set yet break
1596 * (by design?
) when __GNUC__ is set beyond
3.
1599 hackname
= freebsd_gcc4_breakage
;
1600 mach
= "*-*-freebsd*";
1601 files
= sys
/cdefs.h
;
1602 select
= '^#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7 \|\| __GNUC__ == 3$';
1604 c_fix_arg
= '#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7 || __GNUC__ >= 3';
1605 test_text
= '#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7 || __GNUC__ == 3';
1609 * Some versions of glibc don
't expect the C99 inline semantics.
1612 hackname = glibc_c99_inline_1;
1613 files = features.h, '*/features.h
';
1614 select = "^ *&& !defined __OPTIMIZE_SIZE__ && !defined __NO_INLINE__$";
1616 c_fix_arg = "%0 && (defined __extern_inline || defined __GNUC_GNU_INLINE__)";
1618 #if __GNUC_PREREQ (2, 7) && defined __OPTIMIZE__ \
1619 && !defined __OPTIMIZE_SIZE__ && !defined __NO_INLINE__
1620 # define __USE_EXTERN_INLINES 1
1626 * Similar, but a version that didn't have __NO_INLINE__
1629 hackname
= glibc_c99_inline_1a
;
1630 files
= features.h
, '*/features.h';
1631 select
= "(\\) && defined __OPTIMIZE__ && !defined __OPTIMIZE_SIZE__)\n"
1632 "(#[ \t]*define[ \t]*__USE_EXTERN_INLINES[ \t]*1)";
1634 c_fix_arg
= "%1 && (defined __extern_inline || defined __GNUC_GNU_INLINE__)\n%2";
1636 #if
__GNUC_PREREQ (2, 7) && defined __OPTIMIZE__
&& !defined __OPTIMIZE_SIZE__
1637 # define __USE_EXTERN_INLINES
1
1643 * The glibc_c99_inline_1 fix should have fixed everything. Unfortunately
1644 * there are many glibc headers which do not respect __USE_EXTERN_INLINES.
1645 * The remaining glibc_c99_inline_
* fixes deal with some of those headers.
1648 hackname
= glibc_c99_inline_2
;
1649 files
= sys
/stat.h
, '*/sys/stat.h';
1650 select
= "extern __inline__ int";
1651 sed
= "s/extern int \\(stat\\)/"
1652 "#ifdef __GNUC_GNU_INLINE__\\\nextern\\\n#endif\\\n"
1653 "__inline__ int \\1/";
1654 sed
= "s/extern int \\([lf]stat\\)/"
1655 "#ifdef __GNUC_GNU_INLINE__\\\nextern\\\n#endif\\\n"
1656 "__inline__ int \\1/";
1657 sed
= "s/extern int \\(mknod\\)/"
1658 "#ifdef __GNUC_GNU_INLINE__\\\nextern\\\n#endif\\\n"
1659 "__inline__ int \\1/";
1660 sed
= "s/extern int __REDIRECT\\(_NTH\\)\\{0,1\\} (\\(stat\\)/"
1661 "#ifdef __GNUC_GNU_INLINE__\\\nextern\\\n#endif\\\n"
1662 "__inline__ int __REDIRECT\\1 (\\2/";
1663 sed
= "s/extern int __REDIRECT\\(_NTH\\)\\{0,1\\} (\\([lf]stat\\)/"
1664 "#ifdef __GNUC_GNU_INLINE__\\\nextern\\\n#endif\\\n"
1665 "__inline__ int __REDIRECT\\1 (\\2/";
1666 sed
= "s/^extern __inline__ int/"
1667 "#ifdef __GNUC_GNU_INLINE__\\\nextern\\\n#endif\\\n"
1670 extern int
fstat64 (int __fd
, struct stat64
*__buf
) __THROW
__nonnull ((2));
1671 extern __inline__ int
1672 __NTH (fstat64 (int __fd
, struct stat64
*__statbuf
))
1678 * glibc_c99_inline_3
1681 hackname
= glibc_c99_inline_3
;
1682 files
= bits
/string2.h
, '*/bits/string2.h';
1683 select
= "extern __inline";
1684 bypass
= "__extern_inline|__GNU_STDC_INLINE__";
1686 c_fix_arg
= "# if defined(__cplusplus) || defined(__GNUC_STDC_INLINE__)";
1687 c_fix_arg
= "^# ifdef __cplusplus$";
1690 # define __STRING_INLINE inline
1692 # define __STRING_INLINE extern __inline
1698 * glibc_c99_inline_4
1701 hackname
= glibc_c99_inline_4
;
1702 files
= sys
/sysmacros.h
, '*/sys/sysmacros.h', wchar.h
, '*/wchar.h',
1703 pthread.h
, '*/pthread.h';
1704 bypass
= "__extern_inline|__gnu_inline__";
1705 select
= "(^| )extern __inline";
1707 c_fix_arg
= "%0 __attribute__ ((__gnu_inline__))";
1709 __extension__ extern __inline unsigned int
1710 extern __inline unsigned int
1714 /* glibc
-2.3.5 defines pthread mutex initializers incorrectly
,
1715 * so we replace them with versions that correspond to the
1719 hackname
= glibc_mutex_init
;
1721 select
= '\{ *\{ *0, *\} *\}';
1722 sed
= "/define[ \t]\\{1,\\}PTHREAD_MUTEX_INITIALIZER[ \t]*\\\\/{\n"
1723 "N\ns/{ { 0, } }/{ { 0, 0, 0, 0, 0, 0 } }/\n}";
1724 sed
= "s/{ \\(0, 0, 0, 0, PTHREAD_MUTEX_"
1725 "\\(RECURSIVE\\)_NP\\) }/{ \\1, 0 }/";
1726 sed
= "s/{ \\(0, 0, 0, 0, PTHREAD_MUTEX_"
1727 "\\(ERRORCHECK\\)_NP\\) }/{ \\1, 0 }/";
1728 sed
= "s/{ \\(0, 0, 0, 0, PTHREAD_MUTEX_"
1729 "\\(ADAPTIVE\\)_NP\\) }/{ \\1, 0 }/";
1730 sed
= "s/{ \\(0, 0, 0, PTHREAD_MUTEX_"
1731 "\\(RECURSIVE\\)_NP\\) }/{ \\1, 0, 0 }/";
1732 sed
= "s/{ \\(0, 0, 0, PTHREAD_MUTEX_"
1733 "\\(ERRORCHECK\\)_NP\\) }/{ \\1, 0, 0 }/";
1734 sed
= "s/{ \\(0, 0, 0, PTHREAD_MUTEX_"
1735 "\\(ADAPTIVE\\)_NP\\) }/{ \\1, 0, 0 }/";
1736 sed
= "/define[ \t]\\{1,\\}PTHREAD_RWLOCK_INITIALIZER[ \t]*\\\\/"
1737 "N;s/^[ \t]*#[ \t]*"
1738 "\\(define[ \t]\\{1,\\}PTHREAD_RWLOCK_INITIALIZER[ \t]*\\\\\\)\\n"
1739 "[ \t]*{ { 0, } }/# if __WORDSIZE == 64\\\n"
1741 " { { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } }\\\n"
1744 " { { 0, 0, 0, 0, 0, 0, 0, 0 } }\\\n"
1746 sed
= "s/{ \\(0, 0, 0, 0, 0, 0, "
1747 "PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP\\) }/{ \\1, 0 }/";
1748 sed
= "/define[ \t]\\{1,\\}PTHREAD_COND_INITIALIZER/"
1749 "s/{ { 0, } }/{ { 0, 0, 0, 0, 0, (void *) 0, 0, 0 } }/";
1751 test_text
= <<- _EOText_
1752 #define PTHREAD_MUTEX_INITIALIZER
\\
1755 # if __WORDSIZE
== 64
1756 # define PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP
\\
1757 { { 0, 0, 0, 0, PTHREAD_MUTEX_RECURSIVE_NP
} }
1758 # define PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP
\\
1759 { { 0, 0, 0, 0, PTHREAD_MUTEX_ERRORCHECK_NP
} }
1760 # define PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP
\\
1761 { { 0, 0, 0, 0, PTHREAD_MUTEX_ADAPTIVE_NP
} }
1763 # define PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP
\\
1764 { { 0, 0, 0, PTHREAD_MUTEX_RECURSIVE_NP
} }
1765 # define PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP
\\
1766 { { 0, 0, 0, PTHREAD_MUTEX_ERRORCHECK_NP
} }
1767 # define PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP
\\
1768 { { 0, 0, 0, PTHREAD_MUTEX_ADAPTIVE_NP
} }
1771 # define PTHREAD_RWLOCK_INITIALIZER
\\
1774 # if __WORDSIZE
== 64
1775 # define PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP
\\
1776 { { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \\
1777 PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP
} }
1779 # define PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP
\\
1780 { { 0, 0, 0, 0, 0, 0, PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP
} }
1783 #define PTHREAD_COND_INITIALIZER
{ { 0, } }
1787 /* glibc versions before
2.5 have a version of stdint.h that defines
1788 UINT8_C and UINT16_C to produce unsigned constants
, as do uClibc
1789 versions with stdint.h based on those glibc versions.
*/
1791 hackname
= glibc_stdint
;
1793 select
= "GNU C Library";
1795 c_fix_arg
= "# define UINT8_C(c)\tc\n# define UINT16_C(c)\tc";
1796 c_fix_arg
= "# define UINT8_C\\(c\\)\tc ## U\n# define UINT16_C\\(c\\)\tc ## U";
1797 test_text
= "/* This file is part of the GNU C Library. */\n"
1798 "# define UINT8_C(c)\tc ## U\n"
1799 "# define UINT16_C(c)\tc ## U";
1802 /* Some versions of glibc have a version of bits
/string2.h that
1803 produces
"value computed is not used" warnings from strncpy
; fix
1804 this definition by using __builtin_strncpy instead as in newer
1807 hackname
= glibc_strncpy
;
1808 files
= bits
/string2.h
, '*/bits/string2.h';
1809 bypass
= "__builtin_strncpy";
1811 c_fix_arg
= "# define strncpy(dest, src, n) __builtin_strncpy (dest, src, n)";
1812 c_fix_arg
= "# define strncpy([^\n]*\\\\\n)*[^\n]*";
1814 # define
strncpy(dest
, src
, n
) \
1815 (__extension__ (__builtin_constant_p (src
) && __builtin_constant_p (n
) \\
1816 ?
(strlen (src
) + 1 >= ((size_t
) (n
)) \\
1817 ?
(char *)
memcpy (dest
, src
, n
) \\
1818 : strncpy (dest
, src
, n
)) \\
1819 : strncpy (dest
, src
, n
)))
1824 /* glibc
's tgmath.h relies on an expression that is not an integer
1825 constant expression being treated as it was by GCC 4.4 and
1828 hackname = glibc_tgmath;
1830 select = '\
(\
(\
(type\
) 0.25\
) && \
(\
(type\
) 0.25 - 1\
)\
)';
1831 bypass = "__floating_type\\(type\\) \\\\\n.*__builtin_classify_type";
1833 c_fix_arg = "(__builtin_classify_type ((type) 0) == 8 || "
1834 "(__builtin_classify_type ((type) 0) == 9 && "
1835 "__builtin_classify_type (__real__ ((type) 0)) == 8))";
1836 test_text = "# define __floating_type(type) (((type) 0.25) && ((type) 0.25 - 1))";
1840 * Fix these files to use the types we think they should for
1841 * ptrdiff_t, size_t, and wchar_t.
1843 * This defines the types in terms of macros predefined by our 'cpp
'.
1844 * This is supposedly necessary for glibc's handling of these types.
1845 * It
's probably not necessary for anyone else, but it doesn't hurt.
1848 hackname
= gnu_types
;
1849 files
= "sys/types.h";
1851 files
= "sys/stdtypes.h";
1855 bypass
= '_GCC_(PTRDIFF|SIZE|WCHAR)_T';
1856 select
= "^[ \t]*typedef[ \t]+.*[ \t](ptrdiff|size|wchar)_t;";
1858 /* The Solaris
10 headers already define these types correctly.
*/
1859 mach
= '*-*-solaris2.1[0-9]*';
1862 test_text
= "typedef long int ptrdiff_t; /* long int */\n"
1863 "typedef uint_t size_t; /* uint_t */\n"
1864 "typedef ushort_t wchar_t; /* ushort_t */";
1868 * Fix HP
& Sony
's use of "../machine/xxx.h"
1869 * to refer to: <machine/xxx.h>
1872 hackname = hp_inline;
1873 files = sys/spinlock.h;
1874 files = machine/machparam.h;
1875 select = "[ \t]*#[ \t]*include[ \t]+" '"\.\./machine/';
1878 c_fix_arg = "%1<machine
/%2.h
>";
1880 c_fix_arg = "([ \t]*#
[ \t]*include
[ \t]+)" '"\.\.
/machine
/'
1883 test_text = ' # include "..
/machine
/mumble.h
"';
1887 * Check for (...) in C++ code in HP/UX sys/file.h.
1890 hackname = hp_sysfile;
1892 select = "HPUX_SOURCE
";
1895 c_fix_arg = "(struct file
*, ...
)";
1896 c_fix_arg = '\(\.\.\.\)';
1898 test_text = "extern void
foo(...
); /* HPUX_SOURCE
- bad varargs
*/";
1902 * Un-Hide a series of five FP defines from post-1999 compliance GCC:
1903 * FP_NORMAL, FP_ZERO, FP_INFINITE, FP_SUBNORMAL and FP_NAN
1906 hackname = hppa_hpux_fp_macros;
1907 mach = "hppa
*-hp
-hpux11
*";
1909 select = "#
[ \t]*define
[ \t]*FP_NORMAL.
*\n"
1910 "#
[ \t]*define
[ \t]*FP_ZERO.
*\n"
1911 "#
[ \t]*define
[ \t]*FP_INFINITE.
*\n"
1912 "#
[ \t]*define
[ \t]*FP_SUBNORMAL.
*\n"
1913 "#
[ \t]*define
[ \t]*FP_NAN.
*\n";
1915 c_fix_arg = <<- _EOFix_
1916 #endif /* _INCLUDE_HPUX_SOURCE */
1918 #if defined(_INCLUDE_HPUX_SOURCE) || \
1919 (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L))
1922 #ifdef _INCLUDE_HPUX_SOURCE
1927 "# define FP_NORMAL
0\n"
1928 "# define FP_ZERO
1\n"
1929 "# define FP_INFINITE
2\n"
1930 "# define FP_SUBNORMAL
3\n"
1931 "# define FP_NAN
4\n";
1935 * Delete C++ double pow (double, int) inline function from HP-UX 10 & 11
1936 * math.h to prevent clash with define in c_std/bits/std_cmath.h.
1939 hackname = hpux10_cpp_pow_inline;
1940 files = fixinc-test-limits.h, math.h;
1941 select = <<- END_POW_INLINE
1942 ^# +ifdef +__cplusplus
1944 +inline +double +pow\(double +__d,int +__expon\) +\{
1945 [ ]+return +pow\(__d,\(double\)__expon\);
1956 "# ifdef __cplusplus
\n"
1958 " inline double
pow(double __d
,int __expon
) {\n"
1959 "\t return
pow(__d
,(double
)__expon
);\n"
1961 ' extern "C
"' " {\n"
1967 hackname = hpux11_cpp_pow_inline;
1969 select = " +inline double pow
\\(double d
,int expon
\\) \\{\n"
1970 " +return pow
\\(d
, \\(double
\\)expon
\\);\n"
1976 " inline double
pow(double d
,int expon
) {\n"
1977 " return
pow(d
, (double
)expon
);\n"
1982 * Fix hpux 10.X missing ctype declarations 1
1985 hackname = hpux10_ctype_declarations1;
1987 select = "^#
[ \t]*define _toupper
\\(__c
\\)[ \t]*__toupper
\\(__c
\\)";
1988 bypass = "^
[ \t]*extern
[ \t]*int
[ \t]*__tolower
[ \t]*\\(";
1990 c_fix_arg = "#ifdef _PROTOTYPES
\n"
1991 "extern int
__tolower(int
);\n"
1992 "extern int
__toupper(int
);\n"
1993 "#else
/* NOT _PROTOTYPES
*/\n"
1994 "extern int
__tolower();\n"
1995 "extern int
__toupper();\n"
1996 "#endif
/* _PROTOTYPES
*/\n\n"
1999 test_text = "# define
_toupper(__c
) __toupper(__c
)\n";
2003 * Fix hpux 10.X missing ctype declarations 2
2006 hackname = hpux10_ctype_declarations2;
2008 select = "^# if defined
\\(_SB_CTYPE_MACROS
\\) && \\!defined
\\(__lint
\\)";
2009 bypass = "^
[ \t]*extern
[ \t]*int
[ \t]*_isalnum
[ \t]*\\(";
2011 c_fix_arg = "%0\n\n"
2012 "#ifdef _PROTOTYPES
\n"
2013 " extern int
_isalnum(int
);\n"
2014 " extern int
_isalpha(int
);\n"
2015 " extern int
_iscntrl(int
);\n"
2016 " extern int
_isdigit(int
);\n"
2017 " extern int
_isgraph(int
);\n"
2018 " extern int
_islower(int
);\n"
2019 " extern int
_isprint(int
);\n"
2020 " extern int
_ispunct(int
);\n"
2021 " extern int
_isspace(int
);\n"
2022 " extern int
_isupper(int
);\n"
2023 " extern int
_isxdigit(int
);\n"
2024 "# else
/* not _PROTOTYPES
*/\n"
2025 " extern int
_isalnum();\n"
2026 " extern int
_isalpha();\n"
2027 " extern int
_iscntrl();\n"
2028 " extern int
_isdigit();\n"
2029 " extern int
_isgraph();\n"
2030 " extern int
_islower();\n"
2031 " extern int
_isprint();\n"
2032 " extern int
_ispunct();\n"
2033 " extern int
_isspace();\n"
2034 " extern int
_isupper();\n"
2035 " extern int
_isxdigit();\n"
2036 "#endif
/* _PROTOTYPES
*/\n";
2038 test_text = "# if
defined(_SB_CTYPE_MACROS
) && !defined(__lint
)\n"
2039 " extern unsigned int
*__SB_masks
;\n";
2043 * Fix hpux 10.X missing stdio declarations
2046 hackname = hpux10_stdio_declarations;
2048 select = "^#
[ \t]*define _iob
[ \t]*__iob
";
2049 bypass = "^
[ \t]*extern
[ \t]*int
[ \t]*vsnprintf
[ \t]*\\(";
2051 c_fix_arg = "%0\n\n"
2052 "# if
defined(__STDC__
) ||
defined(__cplusplus
)\n"
2053 " extern int
snprintf(char
*, size_t
, const char
*, ...
);\n"
2054 " extern int
vsnprintf(char
*, size_t
, const char
*, __va_list
);\n"
2055 "# else
/* not __STDC__
) || __cplusplus
*/\n"
2056 " extern int
snprintf();\n"
2057 " extern int
vsnprintf();\n"
2058 "# endif
/* __STDC__
) || __cplusplus
*/\n";
2060 test_text = "# define _iob __iob
\n";
2064 * Make sure hpux defines abs in header.
2067 hackname = hpux11_abs;
2068 mach = "*-hp
-hpux11
*";
2070 select = "ifndef _MATH_INCLUDED
";
2072 c_fix_arg = "if
!defined(_MATH_INCLUDED
) ||
defined(__GNUG__
)";
2073 test_text = "#ifndef _MATH_INCLUDED
";
2080 hackname = hpux11_extern_sendfile;
2081 mach = "*-hp
-hpux11.
[12]*";
2082 files = sys/socket.h;
2083 select = "^
[ \t]*extern sbsize_t sendfile.
*\n.
*, int
\\)\\);\n";
2085 c_fix_arg = "#ifndef _APP32_64BIT_OFF_T
\n%0#endif
\n";
2086 test_text = " extern sbsize_t sendfile
__((int
, int
, off_t
, bsize_t
,\n"
2087 " const struct iovec
*, int
));\n";
2094 hackname = hpux11_extern_sendpath;
2095 mach = "*-hp
-hpux11.
[12]*";
2096 files = sys/socket.h;
2097 select = "^
[ \t]*extern sbsize_t sendpath.
*\n.
*, int
\\)\\);\n";
2099 c_fix_arg = "#ifndef _APP32_64BIT_OFF_T
\n%0#endif
\n";
2100 test_text = " extern sbsize_t sendpath
__((int
, int
, off_t
, bsize_t
,\n"
2101 " const struct iovec
*, int
));\n";
2105 * Keep HP-UX 11 from stomping on C++ math namespace
2106 * with defines for fabsf.
2109 hackname = hpux11_fabsf;
2111 select = "^
[ \t]*#
[ \t]*define
[ \t]+fabsf
\\(.
*";
2112 bypass = "__cplusplus
";
2115 c_fix_arg = "#ifndef __cplusplus
\n%0\n#endif
";
2119 "# define
fabsf(x
) ((float
)fabs((double
)(float
)(x
)))\n"
2124 * Fix C99 constant in __POINTER_SET define.
2127 hackname = hpux11_pthread_const;
2128 mach = "*-hp
-hpux11.
[0-3]*";
2129 files = sys/pthread.h;
2130 select = "^#define
[ \t]*__POINTER_SET
[ \t]*\\(\\(void
\\*\\) 1LL\\)";
2133 c_fix_arg = "#define __POINTER_SET
\t\t((void *)
1L)";
2134 test_text = "#define __POINTER_SET
\t\t((void *)
1LL)";
2138 * Prevent HP-UX 11 from defining __size_t and preventing size_t from
2139 * being defined by having it define _hpux_size_t instead.
2142 hackname = hpux11_size_t;
2143 mach = "*-hp
-hpux11
*";
2144 select = "__size_t
";
2147 c_fix_arg = "_hpux_size_t
";
2150 "#define __size_t size_t
\n"
2151 " extern int
getpwuid_r( char
*, __size_t
, struct passwd
**)
;\n";
2155 * Fix hpux 11.00 broken snprintf declaration
2156 * (third argument is char *, needs to be const char * to prevent
2157 * spurious warnings with -Wwrite-strings or in C++).
2160 hackname = hpux11_snprintf;
2162 select = '(extern int snprintf *\(char *\*, *(|__|_hpux_)size_t,)'
2163 ' *(char *\*, *\.\.\.\);)';
2165 c_fix_arg = '%1 const %3';
2167 test_text = "extern int
snprintf(char
*, size_t
, char
*, ...
);\n"
2168 "extern int
snprintf(char
*, __size_t
, char
*, ...
);\n"
2169 "extern int
snprintf(char
*, _hpux_size_t
, char
*, ...
);";
2173 * Fix hpux 11.00 broken vsnprintf declaration
2176 hackname = hpux11_vsnprintf;
2178 select = '(extern int vsnprintf\(char \*, _[hpux]*_size_t, '
2179 'const char \*,) __va__list\);';
2181 c_fix_arg = "%1 __va_list
);";
2183 test_text = 'extern int vsnprintf(char *, _hpux_size_t, const char *,'
2188 * get rid of bogus inline definitions in HP-UX 8.0
2191 hackname = hpux8_bogus_inlines;
2194 bypass = "__GNUG__
";
2195 sed = "s@inline int
abs(int
[a
-z
][a
-z
]*)
{.
*}"
2196 "@extern
\"C
\" int
abs(int
);@
";
2197 sed = "s@inline double
abs(double
[a
-z
][a
-z
]*)
{.
*}@@
";
2198 sed = "s@inline int
sqr(int
[a
-z
][a
-z
]*)
{.
*}@@
";
2199 sed = "s@inline double
sqr(double
[a
-z
][a
-z
]*)
{.
*}@@
";
2200 test_text = "inline int
abs(int v
) { return (v
>=0)?v
:-v
; }\n"
2201 "inline double
sqr(double v
) { return v
**0.5; }";
2208 hackname = hpux_c99_intptr;
2209 mach = "*-hp
-hpux11.3
*";
2210 files = stdint-hpux11.h, stdint.h;
2211 sed = "s@^
[ \t]*#
[ \t]*define
[ \t]*PTRDIFF_MAX
[ \t]*"
2212 "INT32_MAX
[ \t]*$@#define
PTRDIFF_MAX (2147483647l)@
";
2213 sed = "s@^
[ \t]*#
[ \t]*define
[ \t]*PTRDIFF_MIN
[ \t]*"
2214 "INT32_MIN
[ \t]*$@#define
PTRDIFF_MIN (-PTRDIFF_MAX
- 1)@
";
2215 sed = "s@^
[ \t]*#
[ \t]*define
[ \t]*INTPTR_MAX
[ \t]*"
2216 "INT32_MAX
[ \t]*$@#define
INTPTR_MAX (2147483647l)@
";
2217 sed = "s@^
[ \t]*#
[ \t]*define
[ \t]*INTPTR_MIN
[ \t]*"
2218 "INT32_MIN
[ \t]*$@#define
INTPTR_MIN (-INTPTR_MAX
- 1)@
";
2219 sed = "s@^
[ \t]*#
[ \t]*define
[ \t]*UINTPTR_MAX
[ \t]*"
2220 "UINT32_MAX
[ \t]*$@#define
UINTPTR_MAX (4294967295ul)@
";
2221 sed = "s@^
[ \t]*#
[ \t]*define
[ \t]*SIZE_MAX
[ \t]*"
2222 "UINT32_MAX
[ \t]*$@#define
SIZE_MAX (4294967295ul)@
";
2223 test_text = "#define PTRDIFF_MAX INT32_MAX
\n"
2224 "#define PTRDIFF_MIN INT32_MIN
\n"
2225 "#define INTPTR_MAX INT32_MAX
\n"
2226 "#define INTPTR_MIN INT32_MIN
\n"
2227 "#define UINTPTR_MAX UINT32_MAX
\n"
2228 "#define SIZE_MAX UINT32_MAX
\n";
2232 * These hacks are need in inttypes.h on 11.23 and in stdint.h on 11.31.
2235 hackname = hpux_c99_inttypes;
2236 mach = "*-hp
-hpux11.
[23]*";
2238 files = stdint-hpux11.h, stdint.h;
2239 sed = "s@^
[ \t]*#
[ \t]*define
[ \t]*UINT8_C(__c
)[ \t]*"
2240 "__CONCAT_U__(__c
)[ \t]*$@#define
UINT8_C(__c
) (__c
)@
";
2241 sed = "s@^
[ \t]*#
[ \t]*define
[ \t]*UINT16_C(__c
)[ \t]*"
2242 "__CONCAT_U__(__c
)[ \t]*$@#define
UINT16_C(__c
) (__c
)@
";
2243 sed = "s@^
[ \t]*#
[ \t]*define
[ \t]*INT32_C(__c
)[ \t]*"
2244 "__CONCAT__(__c
,l
)[ \t]*$@#define
INT32_C(__c
) (__c
)@
";
2245 sed = "s@^
[ \t]*#
[ \t]*define
[ \t]*UINT32_C(__c
)[ \t].
*$@
"
2246 "#define
UINT32_C(__c
) __CONCAT__(__c
,u
)@
";
2247 test_text = "#define
UINT8_C(__c
) __CONCAT_U__(__c
)\n"
2248 "#define
UINT16_C(__c
) __CONCAT_U__(__c
)\n"
2249 "#define
INT32_C(__c
) __CONCAT__(__c
,l
)\n"
2250 "#define
UINT32_C(__c
) __CONCAT__(__c
,ul
)\n";
2254 * These hacks are need in inttypes.h on 11.23 and in stdint.h on 11.31.
2257 hackname = hpux_c99_inttypes2;
2258 mach = "*-hp
-hpux11.2
*";
2259 files = stdint-hpux11.h, stdint.h;
2260 sed = "s@^
[ \t]*#
[ \t]*define
[ \t]*INT8_C(__c
)[ \t]*"
2261 "((signed char
)(__c
))[ \t]*$@#define
INT8_C(__c
) (__c
)@
";
2262 sed = "s@^
[ \t]*#
[ \t]*define
[ \t]*UINT8_C(__c
)[ \t]*"
2263 "((unsigned char
)(__c
))[ \t]*$@#define
UINT8_C(__c
) (__c
)@
";
2264 sed = "s@^
[ \t]*#
[ \t]*define
[ \t]*INT16_C(__c
)[ \t]*"
2265 "((short
)(__c
))[ \t]*$@#define
INT16_C(__c
) (__c
)@
";
2266 sed = "s@^
[ \t]*#
[ \t]*define
[ \t]*UINT16_C(__c
)[ \t]*"
2267 "((unsigned short
)(__c
))[ \t]*$@#define
UINT16_C(__c
) (__c
)@
";
2268 test_text = "# define
INT8_C(__c
) ((signed char
)(__c
))\n"
2269 "# define
UINT8_C(__c
) ((unsigned char
)(__c
))\n"
2270 "# define
INT16_C(__c
) ((short
)(__c
))\n"
2271 "# define
UINT16_C(__c
) ((unsigned short
)(__c
))\n";
2275 * Fix hpux broken ctype macros
2278 hackname = hpux_ctype_macros;
2280 select = '((: |\()__SB_masks \? )'
2281 '(__SB_masks\[__(alnum|c)\] & _IS)';
2283 c_fix_arg = "%1(int
)%3";
2285 test_text = ": __SB_masks ? __SB_masks
[__alnum
] & _ISCNTRL
\n"
2286 "# define
isalpha(__c
) (__SB_masks ? __SB_masks
[__c
] & _IS
\n";
2293 hackname = hpux_extern_errno;
2294 mach = "*-hp
-hpux10.
*";
2295 mach = "*-hp
-hpux11.
[0-2]*";
2297 select = "^
[ \t]*extern int errno
;$
";
2299 c_fix_arg = "#ifdef __cplusplus
\n"
2303 "#ifdef __cplusplus
\n"
2306 test_text = " extern int errno
;\n";
2310 * Fix hpux broken #ifndef _XOPEN_SOURCE_EXTENDED conditional on htonl etc.
2313 hackname = hpux_htonl;
2314 files = netinet/in.h;
2315 select = "#ifndef _XOPEN_SOURCE_EXTENDED
[ \t]*\n"
2317 " \\* Macros for number representation conversion
\\.
\n"
2321 c_fix_arg = "#if
1\n%1";
2323 test_text = "#ifndef _XOPEN_SOURCE_EXTENDED
\n"
2325 " * Macros for number representation conversion.
\n"
2328 "#define
ntohl(x
) (x
)\n"
2329 "#define
ntohs(x
) (x
)\n"
2330 "#define
htonl(x
) (x
)\n"
2331 "#define
htons(x
) (x
)\n"
2333 "#endif
/* ! _XOPEN_SOURCE_EXTENDED
*/";
2337 * These hacks are need in inttypes.h on 11.23 and in stdint.h on 11.31.
2340 hackname = hpux_imaginary_i;
2341 mach = "ia64
-hp
-hpux11.
*";
2343 select = "^
[ \t]*#
[ \t]*define
[ \t]*_Complex_I.
*";
2345 c_fix_arg = "#define
_Complex_I (__extension__
1.0iF
)";
2346 test_text = "#define
_Complex_I (0.f
+_Imaginary_I
)\n";
2350 * These hacks are need in inttypes.h on 11.23 and in stdint.h on 11.31.
2353 hackname = hpux_inttype_int8_t;
2354 mach = "*-hp
-hpux1
[01].
*";
2355 files = sys/_inttypes.h;
2356 select = "^
[ \t]*typedef
[ \t]*char
[ \t]*int(_least
){0,1}8_t.
*";
2358 c_fix_arg = "typedef signed char int
%18_t
;";
2359 test_text = "typedef char int_least8_t
;\n"
2360 "typedef char int8_t
;\n";
2367 hackname = hpux_long_double;
2368 mach = "*-*-hpux10
*";
2369 mach = "*-*-hpux11.
[012]*";
2371 select = "extern
[ \t]long_double
[ \t]strtold
";
2372 bypass = "long_double_t
";
2373 sed = "/^#
[ \t]*ifndef _LONG_DOUBLE
/,/\\/\\* _LONG_DOUBLE
\\*\\//D
";
2374 sed = "s
/long_double
/long double
/g
";
2376 test_text = "# ifndef _LONG_DOUBLE
\n"
2377 "# define _LONG_DOUBLE
\n"
2378 " typedef struct
{\n"
2379 " unsigned int word1
, word2
, word3
, word4
;\n"
2381 "# endif
/* _LONG_DOUBLE
*/\n"
2382 "extern long_double
strtold(const char
*, char
**)
;\n";
2386 * We cannot use the above rule on 11.31 because it removes the strtold
2387 * definition. ia64 is OK with no hack, PA needs some help.
2390 hackname = hpux_long_double_2;
2391 mach = "hppa
*-*-hpux11.3
*";
2393 select = "#
[ \t]*if
[ \t]*!defined
\\(__ia64
\\) \\|
\\|
"
2394 "defined
\\(_PROTOTYPES
\\) \\|
\\|
"
2395 "defined
\\(_LONG_DOUBLE_STRUCT
\\)";
2397 c_fix_arg = "# if
!defined(_PROTOTYPES
) ||
defined(_LONG_DOUBLE_STRUCT
)";
2399 test_text = "# if
!defined(__ia64
) ||
"
2400 "!defined(_PROTOTYPES
) ||
"
2401 "defined(_LONG_DOUBLE_STRUCT
)\n";
2405 * Add missing braces to pthread initializer defines.
2408 hackname = hpux_pthread_initializers;
2409 mach = "*-hp
-hpux11.
[0-3]*";
2410 files = sys/pthread.h;
2411 sed = "s@^
[ \t]*1, 1, 1, 1,[ \t]*\\\\"
2412 "@
\t{ 1, 1, 1, 1 },\t\t\t\t\t\t\t\\\\@
";
2413 sed = "s@^
[ \t]*1,[ \t]*\\\\"
2415 sed = "/^
[ \t]*0$
/d
";
2416 sed = "s@__PTHREAD_MUTEX_VALID
, 0"
2417 "@
{ __PTHREAD_MUTEX_VALID
, 0 }@
";
2418 sed = "s@^
[ \t]*0, 0, -1, 0,[ \t]*\\\\"
2419 "@
\t{ 0, 0, -1, 0 },\t\t\t\t\t\t\\\\@
";
2420 sed = "s@
0, __LWP_MTX_VALID
, 0, 1, 1, 1, 1,[ \t]*\\\\"
2421 "@
{ 0, __LWP_MTX_VALID
}, { 0, 1, 1, 1, 1 },\t\t\t\\\\@
";
2422 sed = "s@^
[ \t]*__LWP_MTX_VALID
, 0, 1, 1, 1, 1,[ \t]*\\\\"
2423 "@
\t{ 0, __LWP_MTX_VALID
}, { 0, 1, 1, 1, 1 },\t\t\t\\\\@
";
2424 sed = "s@^
[ \t]*0, 0[ \t]*\\\\"
2425 "@
\t{ 0, 0 }\t\t\t\t\t\t\t\\\\@
";
2426 sed = "s@__PTHREAD_COND_VALID
, 0"
2427 "@
{ __PTHREAD_COND_VALID
, 0 }@
";
2428 sed = "s@__LWP_COND_VALID
, 0,[ \t]*\\\\"
2429 "@
{ __LWP_COND_VALID
, 0 },\t\t\t\t\t\\\\@
";
2430 sed = "s@__PTHREAD_RWLOCK_VALID
, 0"
2431 "@
{ __PTHREAD_RWLOCK_VALID
, 0 }@
";
2432 sed = "s@__LWP_RWLOCK_VALID
, 0,[ \t]*\\\\"
2433 "@
{ __LWP_RWLOCK_VALID
, 0 },\t\t\t\t\t\\\\@
";
2434 sed = "s@^
[ \t]*0, 0, 0, 0, 0, 0, 0[ \t]*\\\\"
2435 "@
\t{ 0, 0, 0, 0, 0 }, { 0, 0}\t\t\t\t\t\\\\@
";
2436 test_text = "#define PTHREAD_MUTEX_INITIALIZER
{\t\t\t\t\t\\\\\n"
2437 "\t__PTHREAD_MUTEX_VALID
, 0,\t\t\t\t\t\\\\\n"
2438 "\t(PTHREAD_MUTEX_DEFAULT | PTHREAD_PROCESS_PRIVATE
),\t\t\\\\\n"
2439 "\t__SPNLCK_INITIALIZER
,\t\t\t\t\t\t\\\\\n"
2440 "\t0, 0, -1, 0,\t\t\t\t\t\t\t\\\\\n"
2441 "\t0, __LWP_MTX_VALID
, 0, 1, 1, 1, 1,\t\t\t\t\\\\\n"
2442 "\t0, 0\t\t\t\t\t\t\t\t\\\\\n"
2447 * Wrap spu_info in ifdef _KERNEL. GCC cannot handle an array of unknown
2448 * type and mpinfou is only defined when _KERNEL is set.
2451 hackname = hpux_spu_info;
2452 mach = "*-hp
-hpux
*";
2454 * It is tempting to omit the first "files
" entry. Do not.
2455 * The testing machinery will take the first "files
" entry as the name
2456 * of a test file to play with. It would be a nuisance to have a directory
2457 * with the name "*".
2459 files = "ia64
/sys
/getppdp.h
";
2460 files = "*/sys
/getppdp.h
";
2461 select = "^.
*extern.
*spu_info.
*";
2464 c_fix_arg = "#ifdef _KERNEL
\n%0\n#endif
";
2466 test_text = "extern union mpinfou spu_info
[];";
2470 * These hacks are need in inttypes.h on 11.23 and in stdint.h on 11.31.
2473 hackname = hpux_stdint_least_fast;
2474 mach = "*-hp
-hpux11.2
*";
2475 files = stdint-hpux11.h, stdint.h;
2477 "^
[ \t]*#
[ \t]*define
[ \t]+UINT_(LEAST|FAST
)64_MAX
[ \t]+ULLONG_MAX
";
2479 c-fix-arg = "# define UINT_
%164_MAX __UINT64_MAX__
";
2480 test-text = "# define UINT_FAST64_MAX ULLONG_MAX
\n"
2481 "# define UINT_LEAST64_MAX ULLONG_MAX
\n";
2486 * Fix hpux10.20 <sys/time.h> to avoid invalid forward decl
2489 hackname = hpux_systime;
2491 select = "^extern struct sigevent
;";
2494 c_fix_arg = "struct sigevent
;";
2496 test_text = 'extern struct sigevent;';
2500 * Fix glibc definition of HUGE_VAL in terms of hex floating point constant
2503 hackname = huge_val_hex;
2504 files = bits/huge_val.h, '*/bits/huge_val.h';
2505 select = "^#
[ \t]*define
[ \t]*HUGE_VAL
[ \t].
*0x1\\.0p.
*";
2506 bypass = "__builtin_huge_val
";
2509 c_fix_arg = "#define
HUGE_VAL (__builtin_huge_val())\n";
2511 test_text = "# define HUGE_VAL
\t(__extension__
0x1.0p2047
)";
2515 * Fix glibc definition of HUGE_VALF in terms of hex floating point constant
2518 hackname = huge_valf_hex;
2519 files = bits/huge_val.h, '*/bits/huge_val.h';
2520 select = "^#
[ \t]*define
[ \t]*HUGE_VALF
[ \t].
*0x1\\.0p.
*";
2521 bypass = "__builtin_huge_valf
";
2524 c_fix_arg = "#define
HUGE_VALF (__builtin_huge_valf())\n";
2526 test_text = "# define
HUGE_VALF (__extension__
0x1.0p255f
)";
2530 * Fix glibc definition of HUGE_VALL in terms of hex floating point constant
2533 hackname = huge_vall_hex;
2534 files = bits/huge_val.h, '*/bits/huge_val.h';
2535 select = "^#
[ \t]*define
[ \t]*HUGE_VALL
[ \t].
*0x1\\.0p.
*";
2536 bypass = "__builtin_huge_vall
";
2539 c_fix_arg = "#define
HUGE_VALL (__builtin_huge_vall())\n";
2541 test_text = "# define
HUGE_VALL (__extension__
0x1.0p32767L
)";
2545 * Fix return type of abort and free
2548 hackname = int_abort_free_and_exit;
2550 select = "int
[ \t]+(abort|free|exit
)[ \t]*\\(";
2551 bypass = "_CLASSIC_ANSI_TYPES
";
2554 c_fix_arg = "void
\t%1(";
2556 test_text = "extern int
abort(int
);\n"
2557 "extern int
free(void*)
;\n"
2558 "extern int
exit(void*)
;";
2562 * Fix various macros used to define ioctl numbers.
2563 * The traditional syntax was:
2565 * #define _IO(n, x) (('n'<<8)+x)
2566 * #define TIOCFOO _IO(T, 1)
2568 * but this does not work with the C standard, which disallows macro
2569 * expansion inside strings. We have to rewrite it thus:
2571 * #define _IO(n, x) ((n<<8)+x)
2572 * #define TIOCFOO _IO('T', 1)
2574 * The select expressions match too much, but the c_fix code is cautious.
2576 * _IO might be: _IO DESIO BSD43__IO with W, R, WR, C, ... suffixes.
2579 hackname = io_quotes_def;
2580 select = "define
[ \t]+[A
-Z0
-9_
]+IO
[A
-Z
]*\\([a
-zA
-Z
][,)]";
2581 c_fix = char_macro_def;
2584 "#define
BSD43__IOWR(n
, x
) (('n'<<8)+x
)\n"
2585 "#define
_IOWN(x
,y
,t
) (_IOC_IN|
(((t
)&_IOCPARM_MASK
)<<16)|
('x'<<8)|y
)\n"
2586 "#define
_IO(x
,y
) ('x'<<8|y
)";
2588 "#define
XX_IO(x
) ('x'<<8|
256)";
2592 * Fix the usage of the ioctl macro numbers.
2595 hackname = io_quotes_use;
2596 select = "define
[ \t]+[A
-Z0
-9_
]+[ \t]+[A
-Z0
-9_
]+IO
[A
-Z
]*[ \t]*"
2598 c_fix = char_macro_use;
2600 test_text = "#define TIOCFOO BSD43__IOWR(T, 1)\n"
2601 "#define TIOCFOO \\\\\n"
2602 "BSD43__IOWR(T, 1) /* Some are multi-line */";
2606 * Check for missing ';' in struct
2609 hackname = ip_missing_semi;
2610 files = netinet/ip.h;
2612 sed = "/^struct/,/^};/s/}$/};/";
2618 "}; /* mumbled struct */\n";
2622 * Non-traditional "const" declaration in Irix's limits.h.
2625 hackname
= irix_limits_const
;
2626 files
= fixinc
-test
-limits.h
, limits.h
;
2627 select
= "^extern const ";
2629 c_fix_arg
= "extern __const ";
2630 test_text
= "extern const char limit; /* test limits */";
2634 * IRIX
5.x
's stdio.h declares some functions that take a va_list as
2635 * taking char *. However, GCC uses void * for va_list, so
2636 * calling vfprintf with a va_list fails in C++. */
2638 hackname = irix_stdio_va_list;
2641 select = '/\
* va_list \
*/ char \
*';
2643 c_fix_arg = "__gnuc_va_list";
2645 "extern int printf( const char *, /* va_list */ char * );";
2649 * These files in Sun OS 4.x and ARM/RISCiX and BSD4.3
2650 * use / * * / to concatenate tokens.
2653 hackname = kandr_concat;
2654 files = "sparc/asm_linkage.h";
2655 files = "sun*/asm_linkage.h";
2656 files = "arm/as_support.h";
2657 files = "arm/mc_type.h";
2658 files = "arm/xcb.h";
2659 files = "dev/chardefmac.h";
2660 files = "dev/ps_irq.h";
2661 files = "dev/screen.h";
2662 files = "dev/scsi.h";
2663 files = "sys/tty.h";
2664 files = "Xm.acorn/XmP.h";
2665 files = bsd43/bsd43_.h;
2669 test_text = "#define __CONCAT__(a,b) a/**/b";
2673 * The /usr/include/sys/ucontext.h on ia64-*linux-gnu systems defines
2674 * an _SC_GR0_OFFSET macro using an idiom that isn't a compile time
2675 * constant on recent versions of g
++.
2678 hackname
= linux_ia64_ucontext
;
2679 files
= "sys/ucontext.h";
2680 mach
= "ia64-*-linux*";
2681 select
= '\(\(\(char \*\) &\(\(struct sigcontext \*\) 0\)'
2682 '->sc_gr\[0\]\) - \(char \*\) 0\)';
2684 c_fix_arg
= "__builtin_offsetof \(struct sigcontext, sc_gr[0]\)";
2685 test_text
= "# define _SC_GR0_OFFSET\t\\\\\n"
2686 "\t(((char *) &((struct sigcontext *) 0)->sc_gr[0]) - (char *) 0)\n";
2690 * Remove header file warning from sys
/time.h. Autoconf
's
2691 * AC_HEADER_TIME recommends to include both sys/time.h and time.h
2692 * which causes warning on LynxOS. Remove the warning.
2695 hackname = lynxos_no_warning_in_sys_time_h;
2697 select = "#warning[ \t]+Using <time.h> instead of <sys/time.h>";
2700 test_text = "#warning Using <time.h> instead of <sys/time.h>";
2704 * Add missing declaration for putenv.
2707 hackname = lynxos_missing_putenv;
2708 mach = '*-*-lynxos
*';
2710 bypass = 'putenv
[ \t]*\\(';
2711 select = "extern char \\*getenv[ \t]*_AP\\(\\(const char \\*\\)\\);";
2714 "extern int putenv _AP((char *));";
2715 c_fix_arg = "extern char \\*getenv[ \t]*_AP\\(\\(const char \\*\\)\\);";
2716 test_text = "extern char *getenv _AP((const char *));";
2720 * Fix BSD machine/ansi.h to use __builtin_va_list to define _BSD_VA_LIST_.
2722 * On NetBSD, machine is a symbolic link to an architecture specific
2723 * directory name, so we can't match a specific file name here.
2726 hackname
= machine_ansi_h_va_list
;
2727 select
= "define[ \t]+_BSD_VA_LIST_[ \t]";
2728 bypass
= '__builtin_va_list';
2731 c_fix_arg
= "%1__builtin_va_list";
2732 c_fix_arg
= "(define[ \t]+_BSD_VA_LIST_[ \t]+).*";
2734 test_text
= " # define _BSD_VA_LIST_\tchar**";
2738 * Fix non
-ansi machine name defines
2741 hackname
= machine_name
;
2742 c_test
= machine_name
;
2743 c_fix
= machine_name
;
2745 test_text
= "/* MACH_DIFF: */\n"
2746 "#if defined( i386 ) || defined( sparc ) || defined( vax )"
2747 "\n/* no uniform test, so be careful :-) */";
2751 * Some math.h files define struct
exception (it
's in the System V
2752 * Interface Definition), which conflicts with the class exception defined
2753 * in the C++ file std/stdexcept.h. We redefine it to __math_exception.
2754 * This is not a great fix, but I haven't been able to think of anything
2758 hackname
= math_exception
;
2760 select
= "struct exception";
2762 * This should be bypassed on __cplusplus
, but some supposedly C
++
2763 * aware headers
, such as Solaris
8 and
9, don
't wrap their struct
2764 * exception either. So currently we bypass only for glibc, based on a
2765 * comment in the fixed glibc header. Ick.
2767 bypass = 'We have a problem when using C\
+\
+|for C\
+\
+, '
2768 '_
[a
-z0
-9A
-Z_
]+_exception
; for C
, exception
';
2769 /* The Solaris 10 headers already get this right. */
2770 mach = '*-*-solaris2.1
[0-9]*';
2774 c_fix_arg = "#ifdef __cplusplus\n"
2775 "#define exception __math_exception\n"
2778 c_fix_arg = "#ifdef __cplusplus\n"
2779 "#undef exception\n"
2782 test_text = "typedef struct exception t_math_exception;";
2786 * This looks pretty broken to me. ``dbl_max_def'' will contain
2787 * "define DBL_MAX " at the start, when what we really want is just
2788 * the value portion. Can't figure out how to write a test case
2789 * for this either
:-(
2792 hackname
= math_huge_val_from_dbl_max
;
2796 * IF HUGE_VAL is defined to be DBL_MAX
*and
* DBL_MAX is _not_ defined
2797 * in math.h
, this fix applies.
2799 select
= "define[ \t]+HUGE_VAL[ \t]+DBL_MAX";
2800 bypass
= "define[ \t]+DBL_MAX";
2804 * See if we have a definition for DBL_MAX in float.h.
2805 * If we do
, we will replace the one in math.h with that one.
2808 "\tdbl_max_def=`egrep 'define[ \t]+DBL_MAX[ \t]+.*' float.h "
2809 "| sed 's/.*DBL_MAX[ \t]*//' 2>/dev/null`\n\n"
2811 "\tif ( test -n \"${dbl_max_def}\" ) > /dev/null 2>&1\n"
2812 "\tthen sed -e '/define[ \t]*HUGE_VAL[ \t]*DBL_MAX/"
2813 "s@DBL_MAX@'\"$dbl_max_def@\"\n"
2818 "`echo '#define DBL_MAX\t3.1415e+9 /* really big */' >> float.h`\n"
2819 "#define HUGE_VAL DBL_MAX";
2826 hackname
= nested_auth_des
;
2828 select
= '(/\*.*rpc/auth_des\.h>.*)/\*';
2830 c_fix_arg
= "%1*/ /*";
2831 test_text
= "/*#include <rpc/auth_des.h> /* skip this */";
2835 * Some versions of NetBSD don
't expect the C99 inline semantics.
2838 hackname = netbsd_c99_inline_1;
2839 mach = "*-*-netbsd*";
2841 select = "extern __inline int";
2844 c_fix_arg = "extern\n"
2845 "#ifdef __GNUC_STDC_INLINE__\n"
2846 "__attribute__((__gnu_inline__))\n"
2850 test_text = "extern __inline int\nsigaddset(sigset_t *set, int signo)\n{}";
2854 * netbsd_c99_inline_2
2857 hackname = netbsd_c99_inline_2;
2858 mach = "*-*-netbsd*";
2860 select = "#define _SIGINLINE extern __inline";
2863 c_fix_arg = <<- _EOArg_
2864 #ifdef __GNUC_STDC_INLINE__
2865 #define _SIGINLINE extern __attribute__((__gnu_inline__)) __inline
2871 test_text = "#define _SIGINLINE extern __inline";
2875 * NetBSD has a semicolon after the ending '}' for some extern "C".
2878 hackname = netbsd_extra_semicolon;
2879 mach = "*-*-netbsd*";
2880 files = sys/cdefs.h;
2881 select = "#define[ \t]*__END_DECLS[ \t]*};";
2884 c_fix_arg = "#define __END_DECLS }";
2886 test_text = "#define __END_DECLS };";
2890 * newlib's stdint.h has several failures to conform to C99. The fix
2891 * for these removed a comment that can be matched to identify unfixed
2895 hackname
= newlib_stdint_1
;
2896 files
= stdint
-newlib.h
, stdint.h
;
2897 select
= "@todo - Add support for wint_t types";
2898 sed
= "s@#define INT32_MIN.*@#define INT32_MIN (-INT32_MAX - 1)@";
2899 sed
= "s@#define INT32_MAX.*@#define INT32_MAX __INT32_MAX__@";
2900 sed
= "s@#define UINT32_MAX.*@#define UINT32_MAX __UINT32_MAX__@";
2901 sed
= "s@#define INT_LEAST32_MIN.*@"
2902 "#define INT_LEAST32_MIN (-INT_LEAST32_MAX - 1)@";
2903 sed
= "s@#define INT_LEAST32_MAX.*@"
2904 "#define INT_LEAST32_MAX __INT_LEAST32_MAX__@";
2905 sed
= "s@#define UINT_LEAST32_MAX.*@"
2906 "#define UINT_LEAST32_MAX __UINT_LEAST32_MAX__@";
2907 sed
= 's@#define INT_FAST\([0-9]*\)_MIN.*@'
2908 '#define INT_FAST\1_MIN (-INT_FAST\1_MAX - 1)@';
2909 sed
= 's@#define INT_FAST\([0-9]*\)_MAX.*@'
2910 '#define INT_FAST\1_MAX __INT_FAST\1_MAX__@';
2911 sed
= 's@#define UINT_FAST\([0-9]*\)_MAX.*@'
2912 '#define UINT_FAST\1_MAX __UINT_FAST\1_MAX__@';
2913 sed
= "s@#define SIZE_MAX.*@#define SIZE_MAX __SIZE_MAX__@";
2914 sed
= "s@#define PTRDIFF_MIN.*@#define PTRDIFF_MIN (-PTRDIFF_MAX - 1)@";
2915 sed
= "s@#define PTRDIFF_MAX.*@#define PTRDIFF_MAX __PTRDIFF_MAX__@";
2916 sed
= "s@#define UINT8_C.*@#define UINT8_C(c) __UINT8_C(c)@";
2917 sed
= "s@#define UINT16_C.*@#define UINT16_C(c) __UINT16_C(c)@";
2918 test_text
= "/* @todo - Add support for wint_t types. */\n"
2919 "#define INT32_MIN (-2147483647-1)\n"
2920 "#define INT32_MAX 2147483647\n"
2921 "#define UINT32_MAX 4294967295U\n"
2922 "#define INT_LEAST32_MIN (-2147483647-1)\n"
2923 "#define INT_LEAST32_MAX 2147483647\n"
2924 "#define UINT_LEAST32_MAX 4294967295U\n"
2925 "#define INT_FAST8_MIN INT8_MIN\n"
2926 "#define INT_FAST8_MAX INT8_MAX\n"
2927 "#define UINT_FAST8_MAX UINT8_MAX\n"
2928 "#define SIZE_MAX (__STDINT_EXP(LONG_MAX) * 2UL + 1)\n"
2929 "#define PTRDIFF_MIN (-__STDINT_EXP(LONG_MAX) - 1L)\n"
2930 "#define PTRDIFF_MAX __STDINT_EXP(LONG_MAX)\n"
2931 "#define UINT8_C(x) x##U\n"
2932 "#define UINT16_C(x) x##U";
2939 hackname
= newlib_stdint_2
;
2940 files
= stdint
-newlib.h
, stdint.h
;
2941 select
= "@todo - Add support for wint_t types";
2943 c_fix_arg
= "#define INTMAX_MAX __INTMAX_MAX__\n"
2944 "#define INTMAX_MIN (-INTMAX_MAX - 1)\n"
2945 "#define UINTMAX_MAX __UINTMAX_MAX__\n"
2946 "#define WCHAR_MAX __WCHAR_MAX__\n"
2947 "#define WCHAR_MIN __WCHAR_MIN__\n"
2948 "#define WINT_MAX __WINT_MAX__\n"
2949 "#define WINT_MIN __WINT_MIN__\n\n"
2951 c_fix_arg
= '/\*\* Macros for minimum-width integer constant expressions \*/';
2952 test_text
= "/* @todo - Add support for wint_t types. */\n"
2953 "/** Macros for minimum-width integer constant expressions */";
2957 * NeXT
3.2 adds const prefix to some math functions.
2958 * These conflict with the built
-in functions.
2961 hackname
= next_math_prefix
;
2962 files
= ansi
/math.h
;
2963 select
= "^extern[ \t]+double[ \t]+__const__[ \t]";
2966 c_fix_arg
= "extern double %1(";
2967 c_fix_arg
= "^extern[ \t]+double[ \t]+__const__[ \t]+([a-z]+)\\(";
2969 test_text
= "extern\tdouble\t__const__\tmumble();";
2973 * NeXT
3.2 uses the word
"template" as a parameter for some
2974 * functions. GCC reports an invalid use of a reserved key word
2975 * with the built
-in functions.
2978 hackname
= next_template
;
2980 select
= "[ \t]template\\)";
2984 c_fix_arg
= "\\(([^)]*)[ \t]template\\)";
2985 test_text
= "extern mumble( char * template); /* fix */";
2989 * NeXT
3.2 includes the keyword volatile in the
abort() and
exit()
2990 * function prototypes. That conflicts with the built
-in functions.
2993 hackname
= next_volitile
;
2994 files
= ansi
/stdlib.h
;
2995 select
= "^extern[ \t]+volatile[ \t]+void[ \t]";
2998 c_fix_arg
= "extern void %1(";
2999 c_fix_arg
= "^extern[ \t]+volatile[ \t]+void[ \t]+(exit|abort)\\(";
3001 test_text
= "extern\tvolatile\tvoid\tabort();";
3005 * NeXT
2.0 defines
'int wait(union wait*)', which conflicts with Posix
.1.
3006 * Note that version
3 of the NeXT system has wait.h in a different directory
,
3007 * so that this code won
't do anything. But wait.h in version 3 has a
3008 * conditional, so it doesn't need this fix. So everything is okay.
3011 hackname
= next_wait_union
;
3014 select
= 'wait\(union wait';
3016 c_fix_arg
= "wait(void";
3017 test_text
= "extern pid_d wait(union wait*);";
3021 * a missing semi
-colon at the end of the nodeent structure definition.
3024 hackname
= nodeent_syntax
;
3025 files
= netdnet
/dnetdb.h
;
3026 select
= "char[ \t]*\\*na_addr[ \t]*$";
3029 test_text
= "char *na_addr\t";
3033 * Fix OpenBSD
's NULL definition.
3036 hackname = openbsd_null_definition;
3037 mach = "*-*-openbsd*";
3038 files = locale.h, stddef.h, stdio.h, string.h,
3039 time.h, unistd.h, wchar.h, sys/param.h;
3040 select = "__GNUG__";
3042 c_fix_arg = "#ifndef NULL\n"
3043 "#ifdef __cplusplus\n"
3045 "#define NULL\t__null\n"
3046 "#else\t /* ! __GNUG__ */\n"
3047 "#define NULL\t0L\n"
3048 "#endif\t /* __GNUG__ */\n"
3049 "#else\t /* ! __cplusplus */\n"
3050 "#define NULL\t((void *)0)\n"
3051 "#endif\t /* __cplusplus */\n"
3052 "#endif\t /* !NULL */";
3054 c_fix_arg = "^#ifndef[ \t]*NULL\n"
3055 "^#ifdef[ \t]*__GNUG__\n"
3056 "^#define[ \t]*NULL[ \t]*__null\n"
3058 "^#define[ \t]*NULL[ \t]*0L\n"
3064 "#define NULL __null\n"
3072 * obstack.h used casts as lvalues.
3074 * We need to change postincrements of casted pointers (which are
3075 * then dereferenced and assigned into) of the form
3077 * *((TYPE*)PTRVAR)++ = (VALUE)
3079 * into expressions like
3081 * ((*((TYPE*)PTRVAR) = (VALUE)), (PTRVAR += sizeof (TYPE)))
3083 * which is correct for the cases used in obstack.h since PTRVAR is
3084 * of type char * and the value of the expression is not used.
3087 hackname = obstack_lvalue_cast;
3089 select = '\
*\
(\
(([^
()]*)\
*\
)(.*)\
)\
+\
+ = \
(([^
()]*)\
)';
3091 c_fix_arg = "((*((%1*)%2) = (%3)), (%2 += sizeof (%1)))";
3092 test_text = "*((void **) (h)->next_free)++ = (aptr)";
3096 * Fix OpenBSD's va_start define.
3099 hackname
= openbsd_va_start
;
3100 mach
= "*-*-openbsd*";
3102 select
= '__builtin_stdarg_start';
3104 c_fix_arg
= __builtin_va_start
;
3106 test_text
= "#define va_start(v,l) __builtin_stdarg_start((v),l)";
3110 * sys
/lc_core.h on some versions of OSF1
/4.x pollutes the namespace by
3111 * defining regex.h related types. This causes libg
++ build and usage
3112 * failures. Fixing this correctly requires checking and modifying
3 files.
3115 hackname
= osf_namespace_a
;
3116 files
= reg_types.h
;
3117 files
= sys
/lc_core.h
;
3118 test
= " -r reg_types.h";
3119 test
= " -r sys/lc_core.h";
3120 test
= " -n \"`grep '} regex_t;' reg_types.h`\"";
3121 test
= " -z \"`grep __regex_t regex.h`\"";
3125 c_fix_arg
= "reg(ex|off|match)_t";
3127 test_text
= "`touch sys/lc_core.h`"
3128 "typedef struct {\n int stuff, mo_suff;\n} regex_t;\n"
3129 "extern regex_t re;\n"
3130 "extern regoff_t ro;\n"
3131 "extern regmatch_t rm;\n";
3135 hackname
= osf_namespace_c
;
3137 test
= " -r reg_types.h";
3138 test
= " -r sys/lc_core.h";
3139 test
= " -n \"`grep '} regex_t;' reg_types.h`\"";
3140 test
= " -z \"`grep __regex_t regex.h`\"";
3142 select
= "#include <reg_types\.h>.*";
3145 "typedef __regex_t\tregex_t;\n"
3146 "typedef __regoff_t\tregoff_t;\n"
3147 "typedef __regmatch_t\tregmatch_t;";
3149 test_text
= "#include <reg_types.h>";
3153 * On broken glibc
-2.3.3 systems an array of incomplete structures is
3154 * passed to __sigsetjmp. Fix that to take a pointer instead.
3157 hackname
= pthread_incomplete_struct_argument
;
3159 select
= "struct __jmp_buf_tag";
3161 c_fix_arg
= "%1 *%2%3";
3162 c_fix_arg
= "^(extern int __sigsetjmp \\(struct __jmp_buf_tag) "
3163 "(__env)\\[1\\](.*)$";
3164 test_text
= "extern int __sigsetjmp (struct __jmp_buf_tag __env[1], "
3169 * Fix return type of fread and fwrite on sysV68
3172 hackname
= read_ret_type
;
3174 select
= "extern int\t.*, fread\\(\\), fwrite\\(\\)";
3176 c_fix_arg
= "extern unsigned int fread(), fwrite();\n%1%2";
3177 c_fix_arg
= "(extern int\t.*), fread\\(\\), fwrite\\(\\)(.*)";
3179 test_text
= "extern int\tfclose(), fflush(), fread(), fwrite(), foo();";
3183 * Fix casts as lvalues in glibc
's <rpc/xdr.h>.
3186 hackname = rpc_xdr_lvalue_cast_a;
3188 select = "#define[ \t]*IXDR_GET_LONG.*\\\\\n.*__extension__.*";
3190 c_fix_arg = "#define IXDR_GET_LONG(buf) ((long)IXDR_GET_U_INT32(buf))";
3191 test_text = "#define IXDR_GET_LONG(buf) \\\\\n"
3192 "\t((long)ntohl((u_long)*__extension__((u_int32_t*)(buf))++))";
3196 * rpc_xdr_lvalue_cast_b
3199 hackname = rpc_xdr_lvalue_cast_b;
3201 select = "#define[ \t]*IXDR_PUT_LONG.*\\\\\n.*__extension__.*";
3203 c_fix_arg = "#define IXDR_PUT_LONG(buf, v) ((long)IXDR_PUT_INT32(buf, (long)(v)))";
3204 test_text = "#define IXDR_PUT_LONG(buf, v) \\\\\n"
3205 "\t(*__extension__((u_int32_t*)(buf))++ = (long)htonl((u_long)(v)))";
3209 * function class(double x) conflicts with C++ keyword on rs/6000
3212 hackname = rs6000_double;
3214 select = '[^a
-zA
-Z_
]class\
(';
3217 c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
3218 c_fix_arg = '^.
*[^a
-zA
-Z_
]class\
(.
*';
3220 test_text = "extern int class();";
3224 * Wrong fchmod prototype on RS/6000.
3227 hackname = rs6000_fchmod;
3229 select = 'fchmod\
(char \
*';
3231 c_fix_arg = "fchmod(int";
3232 test_text = "extern int fchmod(char *, mode_t);";
3236 * parameters conflict with C++ new on rs/6000
3239 hackname = rs6000_param;
3243 select = 'rename\
(const char \
*old
, const char \
*new\
)';
3245 c_fix_arg = 'rename(const char
*_old
, const char
*_new
)';
3247 test_text = 'extern int
rename(const char
*old
, const char
*new
);';
3251 * Solaris 10+ <sys/feature_tests.h> defines _RESTRICT_KYWD as restrict
3252 * for C99. This is wrong for C++, which needs many C99 features, but
3253 * only supports __restrict.
3256 hackname = solaris___restrict;
3257 files = sys/feature_tests.h;
3258 select = "#define[ \t]*_RESTRICT_KYWD[ \t]*restrict";
3259 mach = "*-*-solaris2*";
3261 c_fix_arg = "#ifdef __cplusplus\n#define\t_RESTRICT_KYWD\t__restrict\n"
3262 "#else\n%0\n#endif";
3263 test_text = "#define _RESTRICT_KYWD restrict";
3267 * Solaris 10+ complex.h defines _Complex_I and _Imaginary_I in terms of
3268 * themselves, which are Sun Studio compiler intrinsics. Remove _Imaginary_I
3269 * and imaginary definitions which are not supported by GCC.
3272 hackname = solaris_complex;
3273 mach = "*-*-solaris2.*";
3275 select = "#define[ \t]_Complex_I[ \t]_Complex_I";
3276 sed = "s/#define[ \t]_Complex_I[ \t]_Complex_I/"
3277 "#define\t_Complex_I\t(__extension__ 1.0iF)/";
3278 sed = "/#define[ \t]_Imaginary_I[ \t]_Imaginary_I/d";
3279 sed = "/#define[ \t]imaginary[ \t]_Imaginary/d";
3280 sed = "s/#define[ \t]I[ \t]\\{1,\\}_Imaginary_I/#define\tI\t\t_Complex_I/";
3281 test_text = "#define _Complex_I _Complex_I\n"
3282 "#define complex _Complex\n"
3283 "#define _Imaginary_I _Imaginary_I\n"
3284 "#define imaginary _Imaginary\n"
3286 "#define I _Imaginary_I";
3290 * Solaris 10+ <complex.h> is wrapped in #ifndef __cplusplus. Wrap in
3291 * extern "C" instead so libstdc++ can use it.
3294 hackname = solaris_complex_cxx;
3295 mach = "*-*-solaris2.*";
3297 sed = "/#if[ \t]*!defined(__cplusplus)/c\\\n"
3298 "#ifdef\t__cplusplus\\\nextern \"C\" {\\\n#endif";
3299 sed = "/#endif[ \t]*\\/\\* !defined(__cplusplus) \\*\\//c\\\n"
3300 "#ifdef\t__cplusplus\\\n}\\\n#endif";
3301 test_text = "#if !defined(__cplusplus)\n"
3302 "#endif /* !defined(__cplusplus) */";
3306 * g++ rejects functions declared with both C and C++ linkage.
3309 hackname = solaris_cxx_linkage;
3310 mach = '*-*-solaris2
*';
3311 files = "iso/stdlib_iso.h";
3312 select = "(#if __cplusplus >= 199711L)\n"
3313 "(extern \"C\\+\\+\" \\{\n)"
3314 "(.*(bsearch|qsort).*)";
3316 c_fix_arg = "%1 && !__GNUG__\n%2%3";
3319 "#if __cplusplus >= 199711L\n"
3320 "extern \"C++\" {\n"
3321 " void *bsearch(const void *, const void *, size_t, size_t,";
3325 * Solaris <iso/stdio_iso.h> doesn't declare getc for C
++ with
3326 * _STRICT_STDC
, but uses it.
3329 hackname
= solaris_getc_strict_stdc
;
3330 mach
= "*-*-solaris2*";
3331 files
= "iso/stdio_iso.h";
3332 select
= "(.*&& )!defined\\(_STRICT_STDC\\)(.*)";
3334 c_fix_arg
= "%1(!defined(_STRICT_STDC) || (__cplusplus >= 199711L))%2";
3337 "#if !defined(_REENTRANT) && !defined(_LP64) && !defined(_STRICT_STDC)";
3341 * Sun Solaris
2 has a version of sys
/int_const.h that defines
3342 * UINT8_C and UINT16_C to unsigned constants.
3345 hackname
= solaris_int_const
;
3346 files
= sys
/int_const.h
;
3347 mach
= '*-*-solaris2*';
3349 c_fix_arg
= "#define\tUINT8_C(c)\t(c)\n"
3351 "#define\tUINT16_C(c)\t(c)";
3352 select
= "^#define[ \t]+UINT8_C\\(c\\)[ \t]+__CONCAT__.*\n"
3354 "#define[ \t]+UINT16_C\\(c\\)[ \t]+__CONCAT__.*";
3356 "#define UINT8_C(c) __CONCAT__(c,u)\n"
3358 "#define UINT16_C(c) __CONCAT__(c,u)";
3362 * Sun Solaris
2 has a version of sys
/int_limits.h that defines
3363 * UINT8_MAX and UINT16_MAX to unsigned constants.
3366 hackname
= solaris_int_limits_1
;
3367 files
= sys
/int_limits.h
;
3368 mach
= '*-*-solaris2*';
3370 c_fix_arg
= "#define\tUINT8_MAX\t(255)\n"
3371 "#define\tUINT16_MAX\t(65535)";
3372 select
= "^#define[ \t]+UINT8_MAX[ \t]+\\(255U\\)\n"
3373 "#define[ \t]+UINT16_MAX[ \t]+\\(65535U\\)";
3375 "#define UINT8_MAX (255U)\n"
3376 "#define UINT16_MAX (65535U)";
3380 * Sun Solaris
2 has a version of sys
/int_limits.h that defines
3381 * INT_FAST16 limits to wrong values for sys
/int_types.h.
3384 hackname
= solaris_int_limits_2
;
3385 files
= sys
/int_limits.h
;
3386 mach
= '*-*-solaris2*';
3388 c_fix_arg
= "#define\t%1_FAST16_%2 %132_%2";
3389 select
= "^#define[ \t]+(INT|UINT)_FAST16_(MAX|MIN)[ \t](INT|UINT)16.*";
3391 "#define INT_FAST16_MAX INT16_MAX\n"
3392 "#define UINT_FAST16_MAX UINT16_MAX\n"
3393 "#define INT_FAST16_MIN INT16_MIN";
3397 * Sun Solaris
2 has a version of sys
/int_limits.h that defines
3398 * SIZE_MAX as unsigned long.
3401 hackname
= solaris_int_limits_3
;
3402 files
= sys
/int_limits.h
;
3403 mach
= '*-*-solaris2*';
3405 c_fix_arg
= "#define\tSIZE_MAX\t4294967295U";
3406 select
= "^#define[ \t]+SIZE_MAX[ \t]+4294967295UL";
3408 "#define SIZE_MAX 4294967295UL";
3412 * Sun Solaris
10 defines several C99 math macros in terms of
3413 * builtins specific to the Studio compiler
, in particular not
3414 * compatible with the GNU compiler.
3417 hackname
= solaris_math_1
;
3418 select
= '@\(#\)math_c99.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
3419 bypass
= "__GNUC__";
3420 files
= iso
/math_c99.h
;
3422 c_fix_arg
= "#define\tHUGE_VA%1\t(__builtin_huge_va%2())";
3423 c_fix_arg
= "^#define[ \t]+HUGE_VA([LF]+)[ \t]+__builtin_huge_va([lf]+)";
3425 '#ident "@(#)math_c99.h 1.9 04/11/01 SMI"'"\n"
3427 "#define HUGE_VAL __builtin_huge_val\n"
3428 "#undef HUGE_VALF\n"
3429 "#define HUGE_VALF __builtin_huge_valf\n"
3430 "#undef HUGE_VALL\n"
3431 "#define HUGE_VALL __builtin_huge_vall";
3435 * On Solaris
11, if you do
isinf(NaN
) you
'll get a floating point
3436 * exception. Provide an alternative using GCC's builtin.
3439 hackname
= solaris_math_10
;
3440 select
= '@\(#\)math_c99.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
3441 files
= iso
/math_c99.h
;
3443 c_fix_arg
= "#define\tisinf(x) __builtin_isinf(x)";
3444 c_fix_arg
= "^#define[ \t]+isinf\\(x\\)[ \t]+__extension__\\([ \t]*\\\\\n"
3445 "[ \t]*\\{[ \t]*__typeof\\(x\\)[ \t]*__x_i[ \t]*=[ \t]*\\(x\\);"
3447 "[ \t]*__x_i[ \t]*==[ \t]*\\(__typeof\\(__x_i\\)\\)[ \t]*"
3448 "INFINITY[ \t]*\\|\\|[ \t]*\\\\\n"
3449 "[ \t]*__x_i[ \t]*==[ \t]*\\(__typeof\\(__x_i\\)\\)[ \t]*"
3450 "\\(-INFINITY\\);[ \t]*\\}\\)";
3452 '#pragma ident "@(#)math_c99.h 1.12 07/01/21 SMI"'"\n"
3454 "#define isinf(x) __extension__( \\\\\n"
3455 " { __typeof(x) __x_i = (x); \\\\\n"
3456 " __x_i == (__typeof(__x_i)) INFINITY || \\\\\n"
3457 " __x_i == (__typeof(__x_i)) (-INFINITY); })";
3461 * Solaris math INFINITY
3464 hackname
= solaris_math_2
;
3465 select
= '@\(#\)math_c99.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
3466 bypass
= "__GNUC__";
3467 files
= iso
/math_c99.h
;
3469 c_fix_arg
= "#define\tINFINITY\t(__builtin_inff())";
3470 c_fix_arg
= "^#define[ \t]+INFINITY[ \t]+__builtin_infinity";
3472 '#ident "@(#)math_c99.h 1.9 04/11/01 SMI"'"\n"
3474 "#define INFINITY __builtin_infinity";
3481 hackname
= solaris_math_3
;
3482 select
= '@\(#\)math_c99.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
3483 bypass
= "__GNUC__";
3484 files
= iso
/math_c99.h
;
3486 c_fix_arg
= "#define\tNAN\t\t(__builtin_nanf(\"\"))";
3487 c_fix_arg
= "^#define[ \t]+NAN[ \t]+__builtin_nan";
3489 '#ident "@(#)math_c99.h 1.9 04/11/01 SMI"'"\n"
3491 "#define NAN __builtin_nan";
3495 * Solaris math fpclassify
3498 hackname
= solaris_math_4
;
3499 select
= '@\(#\)math_c99.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
3500 bypass
= "__GNUC__";
3501 files
= iso
/math_c99.h
;
3503 c_fix_arg
= "#define\tfpclassify(x) \\\n"
3504 " __builtin_fpclassify(FP_NAN, FP_INFINITE, FP_NORMAL, "
3505 "FP_SUBNORMAL, FP_ZERO, (x))";
3506 c_fix_arg
= "^#define[ \t]+fpclassify\\(x\\)[ \t]+__builtin_fpclassify\\(x\\)";
3508 '#ident "@(#)math_c99.h 1.9 04/11/01 SMI"'"\n"
3509 "#undef fpclassify\n"
3510 "#define fpclassify(x) __builtin_fpclassify(x)";
3514 * Solaris math signbit
3517 hackname
= solaris_math_8
;
3518 select
= '@\(#\)math_c99\.h' "[ \t]+1\\.[0-9]+[ \t]+[0-9/]+ SMI";
3519 bypass
= "__GNUC__";
3520 files
= iso
/math_c99.h
;
3522 c_fix_arg
= "#define\tsignbit(x)\t(sizeof(x) == sizeof(float) \\\n"
3523 "\t\t\t ? __builtin_signbitf(x) \\\n"
3524 "\t\t\t : sizeof(x) == sizeof(long double) \\\n"
3525 "\t\t\t ? __builtin_signbitl(x) \\\n"
3526 "\t\t\t : __builtin_signbit(x))";
3527 c_fix_arg
= "^#define[ \t]+signbit\\(x\\)[ \t]+__builtin_signbit\\(x\\)";
3528 test_text
= <<- _EOText_
3529 #ident
"@(#)math_c99.h 1.9 04/11/01 SMI"
3531 #define
signbit(x
) __builtin_signbit(x
)
3536 * Solaris math comparison macros
3539 hackname
= solaris_math_9
;
3540 select
= '@\(#\)math_c99.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
3541 bypass
= "__GNUC__";
3542 files
= iso
/math_c99.h
;
3544 c_fix_arg
= "#define\t%1(x, y)%2__builtin_%1(x, y)";
3545 c_fix_arg
= "^#define[ \t]+([a-z]+)\\(x, y\\)([ \t]+)\\(\\(x\\) "
3546 "__builtin_[a-z]+\\(y\\)\\)";
3548 '#ident "@(#)math_c99.h 1.9 04/11/01 SMI"'"\n"
3549 "#undef isgreater\n"
3550 "#define isgreater(x, y) ((x) __builtin_isgreater(y))\n"
3551 "#undef isgreaterequal\n"
3552 "#define isgreaterequal(x, y) ((x) __builtin_isgreaterequal(y))\n"
3554 "#define isless(x, y) ((x) __builtin_isless(y))\n"
3555 "#undef islessequal\n"
3556 "#define islessequal(x, y) ((x) __builtin_islessequal(y))\n"
3557 "#undef islessgreater\n"
3558 "#define islessgreater(x, y) ((x) __builtin_islessgreater(y))\n"
3559 "#undef isunordered\n"
3560 "#define isunordered(x, y) ((x) __builtin_isunordered(y))";
3564 * Newer Solaris
10/11 GCC signbit implementations cause strict
-aliasing
3568 hackname
= solaris_math_11
;
3569 select
= '@\(#\)math_c99\.h' "[ \t]+1\\.[0-9]+[ \t]+[0-9/]+ ";
3570 files
= iso
/math_c99.h
;
3572 c_fix_arg
= << _EOArg_
3574 #define
signbit(x
) (sizeof(x
) == sizeof(float
) \
3575 ?
__builtin_signbitf(x
) \
3576 : sizeof(x
) == sizeof(long double
) \
3577 ?
__builtin_signbitl(x
) \
3578 : __builtin_signbit(x
))
3580 c_fix_arg
= << _EOArg_
3582 #if defined\
(__sparc\
)
3583 #define
[ ]+signbit\
(x\
)[ ]+__extension__\
( \\
3584 [ ]+\
{[ ]*__typeof\
(x\
)[ ]*__x_s
[ ]*=[ ]*\
(x\
);[ ]*\\
3585 [ ]+\
(int\
)[ ]*\
(\
*\
(unsigned
[ ]*\
*\
)[ ]*\
&__x_s
[ ]*>>[ ]*31\
);[ ]*\
}\
)
3586 #elif defined\
(__i386\
) \|\| defined\
(__amd64\
)
3587 #define
[ ]+signbit\
(x\
)[ ]+__extension__\
( \\
3588 [ ]+\
{ __typeof\
(x\
) __x_s
= \
(x\
); \\
3589 [ ]+\
(sizeof \
(__x_s\
) == sizeof \
(float\
) \? \\
3590 [ ]+\
(int\
) \
(\
*\
(unsigned \
*\
) \
&__x_s
>> 31\
) : \\
3591 [ ]+sizeof \
(__x_s\
) == sizeof \
(double\
) \? \\
3592 [ ]+\
(int\
) \
(\
(\
(unsigned \
*\
) \
&__x_s\
)\
[1\
] >> 31\
) : \\
3593 [ ]+\
(int\
) \
(\
(\
(unsigned short \
*\
) \
&__x_s\
)\
[4\
] >> 15\
)\
); \
}\
)
3596 test_text
= << _EOText_
3597 /* @
(#
)math_c99.h
1.14 13/03/27 */
3599 #if
defined(__sparc
)
3600 #define
signbit(x
) __extension__( \\
3601 { __typeof(x
) __x_s
= (x
); \\
3602 (int
) (*(unsigned *) &__x_s
>> 31); })
3603 #elif
defined(__i386
) ||
defined(__amd64
)
3604 #define
signbit(x
) __extension__( \\
3605 { __typeof(x
) __x_s
= (x
); \\
3606 (sizeof (__x_s
) == sizeof (float
) ?
\\
3607 (int
) (*(unsigned *) &__x_s
>> 31) : \\
3608 sizeof (__x_s
) == sizeof (double
) ?
\\
3609 (int
) (((unsigned *)
&__x_s
)[1] >> 31) : \\
3610 (int
) (((unsigned short *)
&__x_s
)[4] >> 15)); })
3616 * Sun Solaris defines PTHREAD_ONCE_INIT as an array containing a
3617 * structure. As such
, it need two levels of brackets
, but only
3618 * contains one. Wrap the macro definition in an extra layer.
3621 hackname
= solaris_once_init_1
;
3622 select
= '@\(#\)pthread.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
3624 mach
= '*-*-solaris*';
3626 c_fix_arg
= "%1{%2}%3";
3627 c_fix_arg
= "(^#define[ \t]+PTHREAD_ONCE_INIT[ \t]+\\{)([^}]+)(\\})[ \t]*$";
3629 '#pragma ident "@(#)pthread.h 1.37 04/09/28 SMI"'"\n"
3630 "#define PTHREAD_ONCE_INIT\t{0, 0, 0, PTHREAD_ONCE_NOTDONE}";
3634 * Solaris
10+ <spawn.h
> uses char
*const argv
[_RESTRICT_KYWD
] in the
3635 * posix_spawn declarations
, which doesn
't work with C++.
3638 hackname = solaris_posix_spawn_restrict;
3640 mach = '*-*-solaris2
*';
3642 c_fix_arg = "%1*_RESTRICT_KYWD %2%3";
3643 select = "(.*[ \t]+)([a-z]+)\\[_RESTRICT_KYWD\\](.*)";
3645 "char *const argv[_RESTRICT_KYWD],\n"
3646 "char *const envp[_RESTRICT_KYWD]);";
3650 * The pow overloads with int were removed in C++ 2011 DR 550.
3653 hackname = solaris_pow_int_overload;
3654 mach = '*-*-solaris2
*';
3655 files = "iso/math_iso.h";
3656 select = "^[ \t]*inline [a-z ]* pow\\([^()]*, int [^()]*\\)"
3657 " *\\{[^{}]*\n[^{}]*\\}";
3659 c_fix_arg = "#if __cplusplus < 201103L\n%0\n#endif";
3662 " inline long double pow(long double __X, int __Y) { return\n"
3663 " __powl(__X, (long double) (__Y)); }";
3667 * Sun Solaris defines PTHREAD_RWLOCK_INITIALIZER with a "0" for some
3668 * fields of the pthread_rwlock_t structure, which are of type
3669 * upad64_t, which itself is typedef'd to int64_t
, but with __STDC__
3670 * defined (e.g. by
-ansi
) it is a union. So change the initializer
3674 hackname
= solaris_rwlock_init_1
;
3675 select
= '@\(#\)pthread.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
3677 mach
= '*-*-solaris*';
3679 c_fix_arg
= "#if __STDC__ - 0 == 0 && !defined(_NO_LONGLONG)\n"
3682 "%1{0, 0, 0, {{0}, {0}, {0}}, {{0}, {0}}, {{0}, {0}}}\n"
3684 c_fix_arg
= "(^#define[ \t]+PTHREAD_RWLOCK_INITIALIZER[ \t]+)"
3685 "\\{0, 0, 0, \\{0, 0, 0\\}, \\{0, 0\\}, \\{0, 0\\}\\}[ \t]*$";
3688 '#ident "@(#)pthread.h 1.26 98/04/12 SMI"'"\n"
3689 "#define PTHREAD_RWLOCK_INITIALIZER\t{0, 0, 0, {0, 0, 0}, {0, 0}, {0, 0}}";
3693 * Before Solaris
10, <stdio.h
> lacks declarations of std
::__filbuf and
3694 * std
::__flsbuf
, but
<iso
/stdio_iso.h
> uses them.
3697 hackname
= solaris_std___filbuf
;
3699 mach
= '*-*-solaris2*';
3700 bypass
= "using std::__filbuf";
3701 select
= "(using std::perror;\n)(#endif)";
3703 c_fix_arg
= "%1#ifndef _LP64\n"
3704 "using std::__filbuf;\n"
3705 "using std::__flsbuf;\n"
3708 test_text
= "using std::perror;\n"
3713 * Sun Solaris
8 has what appears to be some gross workaround for
3714 * some old version of their c
++ compiler. G
++ doesn
't want it
3715 * either, but doesn't want to be tied to SunPRO version numbers.
3718 hackname
= solaris_stdio_tag
;
3719 files
= stdio_tag.h
;
3721 select
= '__cplusplus < 54321L';
3722 /* In Solaris
10, the code in stdio_tag.h is conditionalized on
3723 "!defined(__GNUC__)" so we no longer need to fix it.
*/
3724 bypass
= '__GNUC__';
3725 sed
= 's/defined(__cplusplus) && (__cplusplus < 54321L)/0/';
3727 test_text
= "#if\tdefined(__cplusplus) && (__cplusplus < 54321L)";
3731 * a missing semi
-colon at the end of the statsswtch structure definition.
3734 hackname
= statsswtch
;
3735 files
= rpcsvc
/rstat.h
;
3736 select
= "boottime$";
3738 c_fix_arg
= "boottime;";
3739 test_text
= "struct statswtch {\n int boottime\n};";
3743 * Arrange for stdio.h to use stdarg.h to define __gnuc_va_list.
3744 * On
4BSD
-derived systems
, stdio.h defers to machine
/ansi.h
; that
's
3748 hackname = stdio_stdarg_h;
3750 bypass = "include.*(stdarg\.h|machine/ansi\.h)";
3752 * On Solaris 10, this fix is unncessary; <stdio.h> includes
3753 * <iso/stdio_iso.h>, which includes <sys/va_list.h>.
3755 mach = '*-*-solaris2.1
[0-9]*';
3760 c_fix_arg = "#define __need___va_list\n#include <stdarg.h>\n";
3766 * Don't use or define the name va_list in stdio.h. This is for
3767 * ANSI. Note _BSD_VA_LIST_ is dealt with elsewhere. The presence
3768 * of __gnuc_va_list
, __DJ_va_list
, or _G_va_list is taken to
3769 * indicate that the header knows what it
's doing -- under SUSv2,
3770 * stdio.h is required to define va_list, and we shouldn't break
3774 hackname
= stdio_va_list
;
3776 bypass
= '__gnuc_va_list|_BSD_VA_LIST_|__DJ_va_list|_G_va_list';
3778 * On Solaris
10, the definition in
3779 * <stdio.h
> is guarded appropriately by the _XPG4 feature macro
;
3780 * there is therefore no need for this fix there.
3782 mach
= '*-*-solaris2.1[0-9]*';
3786 * Use __gnuc_va_list in arg types in place of va_list.
3787 * On
386BSD use __gnuc_va_list instead of _VA_LIST_. On Tru64 UNIX V5.1A
3788 * use __gnuc_va_list instead of __VA_LIST__. We
're hoping the
3789 * trailing parentheses and semicolon save all other systems from this.
3790 * Define __not_va_list__ (something harmless and unused)
3791 * instead of va_list.
3792 * Don't claim to have defined va_list.
3794 sed
= "s@[ \t]va_list\\([ \t)]\\)@ __gnuc_va_list\\1@\n"
3795 "s@(va_list)&@(__gnuc_va_list)\\&@\n"
3796 "s@ _VA_LIST_));@ __gnuc_va_list));@\n"
3797 "s@ __VA_LIST__));@ __gnuc_va_list));@\n"
3798 "s@ va_list@ __not_va_list__@\n"
3799 "s@\\*va_list@*__not_va_list__@\n"
3800 "s@ __va_list)@ __gnuc_va_list)@\n"
3801 "s@typedef[ \t]\\(.*\\)[ \t]va_list[ \t]*;"
3802 "@typedef \\1 __not_va_list__;@\n"
3803 "s@typedef[ \t]*__va_list__@typedef __gnuc_va_list@\n"
3804 "s@GNUC_VA_LIST@GNUC_Va_LIST@\n"
3805 "s@_VA_LIST_DEFINED@_Va_LIST_DEFINED@\n"
3806 "s@_NEED___VA_LIST@_NEED___Va_LIST@\n"
3807 "s@VA_LIST@DUMMY_VA_LIST@\n"
3808 "s@_Va_LIST@_VA_LIST@";
3809 test_text
= "extern void mumble( va_list);";
3813 * Fix headers that use va_list from stdio.h to use the updated
3814 * va_list from the stdio_va_list change. Note _BSD_VA_LIST_ is
3815 * dealt with elsewhere. The presence of __gnuc_va_list
,
3816 * __DJ_va_list
, or _G_va_list is taken to indicate that the header
3817 * knows what it
's doing.
3820 hackname = stdio_va_list_clients;
3828 files = curses_colr/curses.h;
3829 bypass = '__gnuc_va_list|_BSD_VA_LIST_|__DJ_va_list|_G_va_list
';
3830 /* Don't fix
, if we use va_list from stdarg.h
, or if the use is
3831 otherwise protected.
*/
3832 bypass
= 'include <stdarg\.h>|#ifdef va_start';
3835 * Use __gnuc_va_list in arg types in place of va_list.
3836 * On
386BSD use __gnuc_va_list instead of _VA_LIST_. On Tru64 UNIX V5.1A
3837 * use __gnuc_va_list instead of __VA_LIST__. We
're hoping the
3838 * trailing parentheses and semicolon save all other systems from this.
3839 * Define __not_va_list__ (something harmless and unused)
3840 * instead of va_list.
3841 * Don't claim to have defined va_list.
3843 sed
= "s@[ \t]va_list\\([ \t)]\\)@ __gnuc_va_list\\1@\n"
3844 "s@(va_list)&@(__gnuc_va_list)\\&@\n"
3845 "s@ _VA_LIST_));@ __gnuc_va_list));@\n"
3846 "s@ __VA_LIST__));@ __gnuc_va_list));@\n"
3847 "s@ va_list@ __not_va_list__@\n"
3848 "s@\\*va_list@*__not_va_list__@\n"
3849 "s@ __va_list)@ __gnuc_va_list)@\n"
3850 "s@typedef[ \t]\\(.*\\)[ \t]va_list[ \t]*;"
3851 "@typedef \\1 __not_va_list__;@\n"
3852 "s@typedef[ \t]*__va_list__@typedef __gnuc_va_list@\n"
3853 "s@GNUC_VA_LIST@GNUC_Va_LIST@\n"
3854 "s@_VA_LIST_DEFINED@_Va_LIST_DEFINED@\n"
3855 "s@_NEED___VA_LIST@_NEED___Va_LIST@\n"
3856 "s@VA_LIST@DUMMY_VA_LIST@\n"
3857 "s@_Va_LIST@_VA_LIST@";
3858 test_text
= "extern void mumble( va_list);";
3862 * "!__STDC__" or
"__STDC__==0" or
"__STDC__!=1" or
"__STDC__-0==0"
3863 * is
"!defined( __STRICT_ANSI__ )"
3866 hackname
= strict_ansi_not
;
3867 select
= "^([ \t]*#[ \t]*if.*)"
3869 "|__STDC__[ \t]*==[ \t]*0"
3870 "|__STDC__[ \t]*!=[ \t]*1"
3871 "|__STDC__[ \t]*-[ \t]*0[ \t]*==[ \t]*0)";
3872 /* Tru64 UNIX V4.0F
/V5.1
<standards.h
> supports GCC usage of __STDC__.
*/
3873 bypass
= 'GNU and MIPS C compilers define __STDC__ differently';
3874 /* GNU gmp.h uses
"__STDC__ != 1" only if __SCO_VERSION__
, which
3875 is not defined by GCC
, so it is safe.
*/
3876 bypass
= '__SCO_VERSION__.*__STDC__ != 1';
3877 c_test
= stdc_0_in_system_headers
;
3880 c_fix_arg
= "%1 !defined(__STRICT_ANSI__)";
3882 test_text
= "#if !__STDC__ \n"
3883 "#if __STDC__ == 0\n"
3884 "#if __STDC__ != 1\n"
3885 "#if __STDC__ - 0 == 0"
3886 "/* not std C */\nint foo;\n"
3887 "\n#end-end-end-end-if :-)";
3892 * is
"!defined( __STRICT_ANSI__ )" on continued #if
-s
3895 hackname
= strict_ansi_not_ctd
;
3896 files
= math.h
, limits.h
, stdio.h
, signal.h
,
3897 stdlib.h
, sys
/signal.h
, time.h
;
3899 * Starting at the beginning of a line
, skip white space and
3900 * a leading
"(" or
"&&" or
"||". One of those must be found.
3901 * Then
, zero
, one or more copies of a
"defined(_FOO_BAR_) &&"
3902 * expression. If these are nested
, then they must accumulate
3903 * because we won
't match any closing parentheses. Finally,
3904 * after skipping over all that, we must then match our suspect
3905 * phrase: "__STDC__-0==0" with or without white space.
3907 select = "^([ \t]*" '(\
(|
&&|\|\|
)'
3908 "([ \t(]*!*[ \t]*defined\\([a-zA-Z_0-9]+\\)[ \t]*[|&][|&])*"
3910 "(__STDC__[ \t]*(|-[ \t]*0[ \t]*)==[ \t]*0)";
3911 c_test = stdc_0_in_system_headers;
3914 c_fix_arg = "%1 !defined(__STRICT_ANSI__)";
3916 test_text = "#if 1 && \\\\\n"
3917 "&& defined(mumbling) |& (__STDC__ - 0 == 0) \\\\\n"
3918 "( __STDC__ == 0 && !defined(_XOPEN_SOURCE) \\\\\n"
3919 "|| __STDC__ - 0 == 0 ) /* not std C */\n"
3924 * "__STDC__!=0" or "__STDC__==1" or "__STDC__-0==1"
3925 * is "defined( __STRICT_ANSI__ )"
3928 hackname = strict_ansi_only;
3929 select = "^([ \t]*#[ \t]*if.*)"
3930 "(__STDC__[ \t]*!=[ \t]*0"
3931 "|__STDC__[ \t]*==[ \t]*1"
3932 "|__STDC__[ \t]*-[ \t]*0[ \t]*==[ \t]*1"
3933 "|__STDC__[ \t]*-[ \t]*0[ \t]*!=[ \t]*0)";
3934 c_test = stdc_0_in_system_headers;
3937 c_fix_arg = "%1 defined(__STRICT_ANSI__)";
3939 test_text = "#if __STDC__ == 1 /* is std C\n */\nint foo;\n#endif";
3943 * IRIX 4.0.5 <rpc/xdr.h> uses struct __file_s
3944 * in prototype without previous definition.
3947 hackname = struct_file;
3949 select = '^.
*xdrstdio_create.
*struct __file_s
';
3951 c_fix_arg = "struct __file_s;\n%0";
3952 test_text = "extern void xdrstdio_create( struct __file_s* );";
3956 * IRIX 4.0.5 <rpc/auth.h> uses struct sockaddr
3957 * in prototype without previous definition.
3959 * Don't fix OpenBSD
, which uses struct sockaddr_in prototyping the same
3960 * function
, and does define it.
3963 hackname
= struct_sockaddr
;
3965 select
= "^.*authdes_create.*struct sockaddr[^_]";
3966 bypass
= "<sys/socket\.h>";
3967 bypass
= "struct sockaddr;\n";
3969 c_fix_arg
= "struct sockaddr;\n%0";
3970 test_text
= "extern AUTH* authdes_create( struct sockaddr* );";
3974 * Apply fix this to all OSs since this problem seems to effect
3975 * more than just SunOS.
3978 hackname
= sun_auth_proto
;
3983 bypass
= "__cplusplus";
3985 * Select those files containing
'(*name)()'.
3987 select
= '\(\*[a-z][a-z_]*\)\(\)';
3990 c_fix_arg
= "#ifdef __cplusplus\n%1(...);%2\n"
3991 "#else\n%1();%2\n#endif";
3992 c_fix_arg
= '(.*\(\*[a-z][a-z_]*\))\(\);(.*)';
3996 " int (*name)(); /* C++ bad */\n"
4001 * Fix bogus #ifdef on SunOS
4.1.
4004 hackname
= sun_bogus_ifdef
;
4005 files
= "hsfs/hsfs_spec.h";
4006 files
= "hsfs/iso_spec.h";
4007 select
= '#ifdef(.*\|\|.*)';
4009 c_fix_arg
= "#if%1";
4011 test_text
= "#ifdef __i386__ || __vax__ || __sun4c__";
4015 * Fix the CAT macro in SunOS memvar.h.
4018 hackname
= sun_catmacro
;
4019 files
= pixrect
/memvar.h
;
4020 select
= "^#define[ \t]+CAT\\(a,b\\).*";
4025 "# define CAT(a,b) a##b\n"
4026 "#else\n%0\n#endif";
4029 "#define CAT(a,b)\ta/**/b";
4033 * Fix return type of free and
{c
,m
,re
}alloc in
<malloc.h
> on SunOS
4.1.
4034 * Also fix return type of
{m
,re
}alloc in
<malloc.h
> on sysV68
4037 hackname
= sun_malloc
;
4039 bypass
= "_CLASSIC_ANSI_TYPES";
4041 sed
= "s/typedef[ \t]char \\*\tmalloc_t/typedef void \\*\tmalloc_t/g";
4042 sed
= "s/int[ \t][ \t]*free/void\tfree/g";
4043 sed
= "s/char\\([ \t]*\\*[ \t]*malloc\\)/void\\1/g";
4044 sed
= "s/char\\([ \t]*\\*[ \t]*realloc\\)/void\\1/g";
4045 sed
= "s/char\\([ \t]*\\*[ \t]*calloc\\)/void\\1/g";
4048 "typedef char *\tmalloc_t;\n"
4050 "char*\tmalloc();\n"
4051 "char*\tcalloc();\n"
4052 "char*\trealloc();";
4056 * Check for yet more missing
';' in
struct (in SunOS
4.0.x
)
4059 hackname
= sun_rusers_semi
;
4060 files
= rpcsvc
/rusers.h
;
4062 sed
= "/^struct/,/^};/s/_cnt$/_cnt;/";
4063 test_text
= "struct mumble\n int _cnt\n};";
4067 * signal.h on SunOS defines signal
using (),
4068 * which causes trouble when compiling with g
++ -pedantic.
4071 hackname
= sun_signal
;
4072 files
= sys
/signal.h
;
4074 select
= "^void\t" '\(\*signal\(\)\)\(\);.*';
4078 "#ifdef __cplusplus\n"
4079 "void\t(*signal(...))(...);\n"
4080 "#else\n%0\n#endif";
4082 test_text
= "void\t(*signal())();";
4086 * Correct the return type for strlen in strings.h in SunOS
4.
4089 hackname
= sunos_strlen
;
4091 select
= "int[ \t]*strlen\\(\\);(.*)";
4093 c_fix_arg
= "__SIZE_TYPE__ strlen();%1";
4094 test_text
= " int\tstrlen(); /* string length */";
4098 * Linux kernel
's vt.h breaks C++
4101 hackname = suse_linux_vt_cxx;
4104 select = "^[ \t]*unsigned int new;";
4106 c_fix_arg = "unsigned int newev;";
4108 test_text = " unsigned int new; /* New console (if changing) */";
4112 * Disable apparent native compiler optimization cruft in SVR4.2 <string.h>
4113 * that is visible to any ANSI compiler using this include. Simply
4114 * delete the lines that #define some string functions to internal forms.
4117 hackname = svr4_disable_opt;
4119 select = '#define.
*__std_hdr_
';
4120 sed = '/#define.
*__std_hdr_
/d
';
4121 test_text = "#define strlen __std_hdr_strlen\n";
4125 * Fix broken decl of getcwd present on some svr4 systems.
4128 hackname = svr4_getcwd;
4131 files = prototypes.h;
4132 select = 'getcwd\
(char \
*, int\
)';
4135 c_fix_arg = "getcwd(char *, size_t)";
4137 test_text = "extern char* getcwd(char *, int);";
4141 * Fix broken decl of profil present on some svr4 systems.
4144 hackname = svr4_profil;
4149 'profil\
(unsigned short \
*, unsigned int
, unsigned int
, unsigned int\
)';
4151 c_fix_arg = 'profil(unsigned short
*, size_t
, int
, unsigned int
)';
4154 'profil(unsigned short
*, unsigned int
, unsigned int
, unsigned int
);';
4158 * Correct types for signal handler constants like SIG_DFL; they might be
4159 * void (*) (), and should be void (*) (int). C++ doesn't like the
4163 hackname
= svr4_sighandler_type
;
4164 files
= sys
/signal.h
;
4165 select
= 'void *\(\*\)\(\)';
4167 c_fix_arg
= "void (*)(int)";
4168 test_text
= "#define SIG_DFL (void(*)())0\n"
4169 "#define SIG_IGN (void (*)())0\n";
4173 * Some SysV r4 systems
, including Sequent
's DYNIX/ptx, use the local
4174 * function 'getrnge
' in <regexp.h> before they declare it. For these
4175 * systems add a 'static int
' declaration of 'getrnge
' into <regexp.h>
4178 * 'getrnge
' traditionally manipulates a file-scope global called 'size
',
4179 * so put the declaration right after the declaration of 'size
'.
4181 * Don't do this if there is already a `static void getrnge
' declaration
4182 * present, since this would cause a redeclaration error. Solaris 2.x has
4183 * such a declaration.
4186 hackname = svr4_undeclared_getrnge;
4189 bypass = "static void getrnge";
4192 "static int getrnge ();";
4193 c_fix_arg = "^static int[ \t]+size;";
4194 test_text = "static int size;\n"
4195 "/* stuff which calls getrnge() */\n"
4196 "static getrnge()\n"
4201 * Fix return value of mem{ccpy,chr,cpy,set} and str{len,spn,cspn}
4202 * in string.h on sysV68
4203 * Correct the return type for strlen in string.h on Lynx.
4204 * Correct the argument type for ffs in string.h on Alpha OSF/1 V2.0.
4205 * Add missing const for strdup on OSF/1 V3.0.
4206 * On sysV88 layout is slightly different.
4209 hackname = sysv68_string;
4212 bypass = "_CLASSIC_ANSI_TYPES";
4214 sed = "s/extern[ \t]*int[ \t]*strlen();/extern unsigned int strlen();/";
4215 sed = "s/extern[ \t]*int[ \t]*ffs[ \t]*(long);/extern int ffs(int);/";
4216 sed = "s/strdup(char \\*s1);/strdup(const char *s1);/";
4218 sed = "/^extern char$/N";
4219 sed = "s/^extern char\\(\\n\t\\*memccpy(),\\)$/extern void\\1/";
4221 sed = "/^extern int$/N";
4222 sed = "s/^extern int\\(\\n\tstrlen(),\\)/extern size_t\\1/";
4224 sed = "/^\tstrncmp(),$/N";
4225 sed = 's
/^\
(' "\t" 'strncmp()\
),\n\
(' "\t" 'strlen(),\
)$
/'
4226 '\
1;' "\\\nextern unsigned int\\\n\\2/";
4229 "extern int strlen();\n"
4231 "extern int ffs(long);\n"
4244 "\tstrlen(), strspn();";
4248 * Fix return type of calloc, malloc, realloc, bsearch and exit
4251 hackname = sysz_stdlib_for_sun;
4253 bypass = "_CLASSIC_ANSI_TYPES";
4255 select = "char[ \t]*\\*[ \t]*(calloc|malloc|realloc|bsearch)[ \t]*\\(";
4257 c_fix_arg = "void *\t%1(";
4260 "extern char*\tcalloc(size_t);\n"
4261 "extern char*\tmalloc(size_t);\n"
4262 "extern char*\trealloc(void*,size_t);\n"
4263 "extern char*\tbsearch(void*,size_t,size_t);\n";
4267 * __thread is now a keyword.
4270 hackname = thread_keyword;
4271 files = "pthread.h";
4272 files = bits/sigthread.h, '*/bits
/sigthread.h
';
4273 select = "([* ])__thread([,)])";
4275 c_fix_arg = "%1__thr%2";
4278 "extern int pthread_create (pthread_t *__restrict __thread,\n"
4279 "extern int pthread_kill (pthread_t __thread, int __signo);\n"
4280 "extern int pthread_cancel (pthread_t __thread);";
4284 * if the #if says _cplusplus, not the double underscore __cplusplus
4288 hackname = tinfo_cplusplus;
4290 select = "[ \t]_cplusplus";
4293 c_fix_arg = " __cplusplus";
4294 test_text = "#ifdef _cplusplus\nint bogus;\n#endif";
4298 * parameters not const on DECstation Ultrix V4.0 and OSF/1.
4301 hackname = ultrix_const;
4303 select = 'perror\
( char \
*';
4306 c_fix_arg = "%1 const %3 *__";
4307 c_fix_arg = "([ \t*](perror|fputs|fwrite|scanf|fscanf)\\(.*)"
4308 "[ \t]+(char|void) \\*__";
4311 "extern void perror( char *__s );\n"
4312 "extern int fputs( char *__s, FILE *);\n"
4313 "extern size_t fwrite( void *__ptr, size_t, size_t, FILE *);\n"
4314 "extern int fscanf( FILE *__stream, char *__format, ...);\n"
4315 "extern int scanf( char *__format, ...);\n";
4319 * parameters not const on DECstation Ultrix V4.0 and OSF/1.
4322 hackname = ultrix_const2;
4325 select = '\
*fopen\
( char \
*';
4327 c_fix_arg = "%1( const char *%3, const char *";
4328 c_fix_arg = "([ \t*](fopen|sscanf|popen|tempnam))\\("
4329 "[ \t]*char[ \t]*\\*([^,]*),"
4330 "[ \t]*char[ \t]*\\*[ \t]*";
4333 "extern FILE *fopen( char *__filename, char *__type );\n"
4334 "extern int sscanf( char *__s, char *__format, ...);\n"
4335 "extern FILE *popen(char *, char *);\n"
4336 "extern char *tempnam(char*,char*);\n";
4340 * Fix definitions of macros used by va-i960.h in VxWorks header file.
4343 hackname = va_i960_macro;
4344 files = arch/i960/archI960.h;
4345 select = "__(vsiz|vali|vpad|alignof__)";
4348 c_fix_arg = "__vx%1";
4351 "extern int __vsiz vsiz;\n"
4352 "extern int __vali vali;\n"
4353 "extern int __vpad vpad;\n"
4354 "#define __alignof__(x) ...";
4358 * On VMS, add missing braces around sigset_t constants.
4361 hackname = vms_add_missing_braces;
4362 select = "(_SIG_[A-Z]+_SET[ \t]+= \\{)(0x[0F]+, 0x[0F]+)";
4364 files = "rtldef/signal.h";
4367 c_fix_arg = '%1 {%2} ';
4369 test_text = "static const __sigset_t _SIG_EMPTY_SET = "
4370 "{0x00000000, 0x00000000},\n"
4371 " _SIG_FULL_SET = {0xFFFFFFFF, 0xFFFFFFFF};\n";
4375 * On VMS, some DEC-C builtins are directly used.
4378 hackname = vms_decc_builtin;
4379 select = "(__MEMSET|__MEMMOVE|__MEMCPY|__STRLEN|__STRCPY)";
4381 files = rtldef/string.h, rtldef/time.h, rtldef/strings.h,
4383 sed = "s@__MEMSET@memset@";
4384 sed = "s@__MEMMOVE@memmove@";
4385 sed = "s@__MEMCPY@memcpy@";
4386 sed = "s@__STRLEN@strlen@";
4387 sed = "s@__STRCPY@strcpy@";
4389 test_text = "define FD_ZERO(__p) __MEMSET((__p), 0, sizeof(*(__p)))\n";
4393 * Define __CAN_USE_EXTERN_PREFIX on vms.
4396 hackname = vms_define_can_use_extern_prefix;
4397 files = "rtldef/decc$types.h";
4398 select = "#[ \t]*else\n"
4399 "#[ \t]*if defined\\(__DECCXX\\)\n"
4400 "#[ \t]*define __CAN_USE_EXTERN_PREFIX 1\n";
4405 "# elif defined (__GNUC__)\n"
4406 "#\tdefine __CAN_USE_EXTERN_PREFIX 1\n";
4408 test_text = "# else\n"
4409 "# if defined(__DECCXX)\n"
4410 "#\tdefine __CAN_USE_EXTERN_PREFIX 1\n"
4416 * On VMS, disable the use of dec-c string builtins
4419 hackname = vms_disable_decc_string_builtins;
4420 select = "#if !defined\\(__VAX\\)\n";
4422 files = "rtldef/string.h";
4425 c_fix_arg = "#if !defined(__VAX) && !defined(__GNUC__)\n";
4427 test_text = "#if !defined(__VAX)\n";
4431 * On VMS, fix incompatible redeclaration of hostalias.
4434 hackname = vms_do_not_redeclare_hostalias;
4435 select = "(void[ \t]+fp_nquery \\(const u_char \\*, int, FILE \\*\\);)\n"
4436 "(__char_ptr32[ \t]+hostalias \\(const char \\*\\);)";
4438 files = "rtldef/resolv.h";
4444 test_text = "void fp_nquery (const u_char *, int, FILE *);\n"
4445 "__char_ptr32 hostalias (const char *);\n";
4449 * On VMS, forward declare structure before referencing them in prototypes.
4452 hackname = vms_forward_declare_struct;
4453 select = "(/\\* forward decls for C\\+\\+ \\*/\n)"
4454 "#ifdef __cplusplus\n";
4456 files = rtldef/if.h;
4460 "#if defined (__cplusplus) || defined (__GNUC__)\n";
4462 test_text = "/* forward decls for C++ */\n"
4463 "#ifdef __cplusplus\n"
4469 * On VMS, do not declare getopt and al if pointers are 64 bit.
4472 hackname = vms_no_64bit_getopt;
4473 select = "^[ \t]*(extern[ \t]*)?(int[ \t]*(getopt|optind|opterr|optopt)"
4474 "|(char \\*optarg))([ \t]*\\(.*\\))?;\n";
4476 files = rtldef/stdio.h, rtldef/unistd.h;
4479 c_fix_arg = <<- _EOArg_
4480 #if __INITIAL_POINTER_SIZE != 64 /* getopt is short ptr only. */
4485 test_text = "int getopt (int, char * const [], const char *);";
4489 * On VMS, force the use of fast setjmp, as the normal setjmp uses conditions
4490 * which is not yet fully supported by gcc.
4493 hackname = vms_use_fast_setjmp;
4494 select = "(#[ \t]*if[ \t]*defined\\(__FAST_SETJMP\\)[ \t]*\\|\\|)";
4496 files = rtldef/setjmp.h;
4499 c_fix_arg = "%0 defined (__GNUC__) ||";
4501 test_text = "# if defined(__FAST_SETJMP) || defined(__UNIX_SETJMP)";
4505 * On VMS, use pragma extern_model instead of VAX-C keywords.
4508 hackname = vms_use_pragma_extern_model;
4509 select = "#if defined\\(__DECC\\) \\|\\| defined\\(__DECCXX\\)\n"
4510 "# pragma extern_model __save\n";
4514 c_fix_arg = "#if defined(__DECC) || defined(__DECCXX) || defined(__GNUC__)\n"
4515 "# pragma extern_model __save\n";
4517 test_text = "#if defined(__DECC) || defined(__DECCXX)\n"
4518 "# pragma extern_model __save\n"
4519 "# pragma extern_model strict_refdef\n"
4520 " extern struct x zz$yy;\n"
4521 "# pragma extern_model __restore\n"
4526 * On VMS, change <resource.h> to <sys/resource.h> to avoid a
4527 * conflict while building gcc. Likewise for <builtins.h>
4530 hackname = vms_use_quoted_include;
4531 select = "(#[ \t]*include[ \t]+)<(resource|builtins)\\.h>";
4533 files = rtldef/wait.h, starlet_c/pthread.h;
4536 c_fix_arg = '%1<sys
/%2.h
>';
4538 test_text = "# include <resource.h>";
4542 * AIX and Interix headers define NULL to be cast to a void pointer,
4543 * which is illegal in ANSI C++.
4546 hackname = void_null;
4547 files = curses.h, dbm.h, locale.h, stdio.h, stdlib.h, string.h,
4548 time.h, unistd.h, sys/dir.h, sys/param.h, sys/types.h;
4549 /* avoid changing C++ friendly NULL */
4550 bypass = __cplusplus;
4552 select = "^#[ \t]*define[ \t]+NULL[ \t]+\\(\\(void[ \t]*\\*\\)0\\)";
4554 c_fix_arg = <<- _EOFix_
4559 #else /* ! __GNUG__ */
4561 #endif /* __GNUG__ */
4562 #else /* ! __cplusplus */
4563 #define NULL ((void *)0)
4564 #endif /* __cplusplus */
4567 test_text = "# define\tNULL \t((void *)0) /* typed NULL */";
4571 * Make VxWorks header which is almost gcc ready fully gcc ready.
4574 hackname = vxworks_gcc_problem;
4575 files = types/vxTypesBase.h;
4576 select = "__GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__";
4578 sed = "s/#ifdef __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__/"
4581 sed = "/[ \t]size_t/i\\\n"
4582 "#ifndef _GCC_SIZE_T\\\n"
4583 "#define _GCC_SIZE_T\n";
4585 sed = "/[ \t]size_t/a\\\n"
4588 sed = "/[ \t]ptrdiff_t/i\\\n"
4589 "#ifndef _GCC_PTRDIFF_T\\\n"
4590 "#define _GCC_PTRDIFF_T\n";
4592 sed = "/[ \t]ptrdiff_t/a\\\n"
4595 sed = "/[ \t]wchar_t/i\\\n"
4596 "#ifndef _GCC_WCHAR_T\\\n"
4597 "#define _GCC_WCHAR_T\n";
4599 sed = "/[ \t]wchar_t/a\\\n"
4603 "#ifdef __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__\n"
4604 "typedef unsigned int size_t;\n"
4605 "typedef long ptrdiff_t;\n"
4606 "typedef unsigned short wchar_t;\n"
4607 "#endif /* __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__ */\n";
4611 * Wrap VxWorks ioctl to keep everything pretty
4614 hackname = vxworks_ioctl_macro;
4616 mach = "*-*-vxworks*";
4620 "#define ioctl(fd, func, arg) (ioctl)(fd, func, (int)(arg))\n";
4621 c_fix_arg = "extern[\t ]+int[\t ]+ioctl[\t ]*\\([\t ,[:alnum:]]*\\);";
4623 test_text = "extern int ioctl ( int asdf1234, int jkl , int qwerty ) ;";
4627 * Wrap VxWorks mkdir to be posix compliant
4630 hackname = vxworks_mkdir_macro;
4632 mach = "*-*-vxworks*";
4636 "#define mkdir(dir, ...) ((void)0, ##__VA_ARGS__, (mkdir)(dir))\n";
4637 c_fix_arg = "extern[\t ]+STATUS[\t ]+mkdir[\t ]*"
4638 "\\([\t ]*const[\t ]+char[\t ]*\\*[\t ]*" /* arg type */
4639 "(|[_[:alpha:]][_[:alnum:]]*)" /* arg name (optional) */
4642 test_text = "extern STATUS mkdir (const char * _qwerty) ;";
4646 * Fix VxWorks <time.h> to not require including <vxTypes.h>.
4649 hackname = vxworks_needs_vxtypes;
4651 select = "uint_t([ \t]+_clocks_per_sec)";
4653 c_fix_arg = "unsigned int%1";
4654 test_text = "uint_t\t_clocks_per_sec;";
4658 * Fix VxWorks <sys/stat.h> to not require including <vxWorks.h>.
4661 hackname = vxworks_needs_vxworks;
4663 test = " -r types/vxTypesOld.h";
4664 test = " -n \"`egrep '#include
' $file`\"";
4665 test = " -n \"`egrep ULONG $file`\"";
4666 select = "#[ \t]define[ \t]+__INCstath";
4668 sed = "/#[ \t]define[ \t][ \t]*__INCstath/a\\\n"
4669 "#include <types/vxTypesOld.h>\n";
4671 test_text = "`touch types/vxTypesOld.h`"
4672 "#include </dev/null> /* ULONG */\n"
4673 "# define\t__INCstath <sys/stat.h>";
4677 * Make it so VxWorks does not include gcc/regs.h accidentally
4680 hackname = vxworks_regs;
4681 mach = "*-*-vxworks*";
4683 select = "#[\t ]*include[\t ]+[<\"]regs.h[>\"]";
4685 c_fix_arg = "#include <arch/../regs.h>";
4687 test_text = "#include <regs.h>\n";
4691 * Another bad dependency in VxWorks 5.2 <time.h>.
4694 hackname = vxworks_time;
4696 test = " -r vxWorks.h";
4698 select = "#[ \t]*define[ \t]+VOIDFUNCPTR[ \t].*";
4702 "#ifndef __gcc_VOIDFUNCPTR_defined\n"
4703 "#ifdef __cplusplus\n"
4704 "typedef void (*__gcc_VOIDFUNCPTR) (...);\n"
4706 "typedef void (*__gcc_VOIDFUNCPTR) ();\n"
4708 "#define __gcc_VOIDFUNCPTR_defined\n"
4710 "#define VOIDFUNCPTR __gcc_VOIDFUNCPTR";
4712 test_text = "`touch vxWorks.h`"
4713 "#define VOIDFUNCPTR (void(*)())";
4717 * This hack makes write const-correct on VxWorks
4720 hackname = vxworks_write_const;
4722 mach = "*-*-vxworks*";
4725 c_fix_arg = "extern int write (int, const char*, size_t);";
4726 c_fix_arg = "extern[\t ]+int[\t ]+write[\t ]*\\("
4728 "[\t ]*char[\t ]*\\*[\t ]*,"
4729 "[\t ]*size_t[\t ]*\\)[\t ]*;";
4731 test_text = "extern int write ( int , char * , size_t ) ;";
4735 * There are several name conflicts with C++ reserved words in X11 header
4736 * files. These are fixed in some versions, so don't do the fixes if
4737 * we find __cplusplus in the file. These were found on the RS
/6000.
4740 hackname
= x11_class
;
4741 files
= X11
/ShellP.h
;
4742 bypass
= __cplusplus
;
4743 select
= "^([ \t]*char \\*)class;(.*)";
4745 c_fix_arg
= "#ifdef __cplusplus\n%1c_class;%2\n"
4746 "#else\n%1class;%2\n#endif";
4754 * class in Xm
/BaseClassI.h
4757 hackname
= x11_class_usage
;
4758 files
= Xm
/BaseClassI.h
;
4759 bypass
= "__cplusplus";
4761 select
= " class\\)";
4763 c_fix_arg
= " c_class)";
4765 test_text
= "extern mumble (int class);\n";
4769 * new in Xm
/Traversal.h
4773 files
= Xm
/Traversal.h
;
4774 bypass
= __cplusplus
;
4776 sed
= "/Widget\told, new;/i\\\n"
4777 "#ifdef __cplusplus\\\n"
4778 "\\\tWidget\told, c_new;\\\n"
4781 sed
= "/Widget\told, new;/a\\\n"
4784 sed
= "s/Widget new,/Widget c_new,/g";
4787 " Widget\told, new;\n"
4788 "};\nextern Wedged( Widget new, Widget old );";
4792 * Incorrect sprintf declaration in X11
/Xmu.h
4795 hackname
= x11_sprintf
;
4797 files
= X11
/Xmu
/Xmu.h
;
4798 select
= "^extern char \\*\tsprintf\\(\\);$";
4801 c_fix_arg
= "#ifndef __STDC__\n%0\n#endif /* !defined __STDC__ */";
4803 test_text
= "extern char *\tsprintf();";