Merge from mainline
[official-gcc.git] / gcc / fixinc / inclhack.def
blobaedf09713d385d3b0885d49629c61673069f240a
2 /* -*- Mode: C -*- */
4 autogen definitions fixincl;
6 /* Define all the fixes we know about for repairing damaged headers.
7 Please see the README before adding or changing entries in this file.
9 This is the sort command:
11 blocksort output=XXX \
12 pattern='^/\*$' \
13 start='DO +NOT +DO +BROKEN +FIXES' \
14 trailer='^/\*EOF\*[/]' \
15 input=inclhack.def \
16 key='hackname[ ]*=[ ]*(.*);'
18 Set up a debug test so we can make the templates emit special
19 code while debugging these fixes: */
21 #ifdef DEBUG
22 FIXINC_DEBUG = yes;
23 #endif
25 /* DO NOT DO BROKEN FIXES (empty replacement fixes) */
28 * This file on SunOS 4 has a very large macro. When the sed loop
29 * tries pull it in, it overflows the pattern space size of the SunOS
30 * sed (GNU sed does not have this problem). Since the file does not
31 * require fixing, we remove it from the fixed directory.
33 fix = {
34 hackname = AAA_bad_fixes;
35 files = sundev/ipi_error.h;
36 /* shouldn't there be a select expression here??? */
37 replace; /* empty replacement -> no fixing the file */
42 * Purge some HP-UX 11 files that are only broken after they are "fixed".
44 fix = {
45 hackname = AAA_ki;
46 files = sys/ki.h;
47 select = '11.00 HP-UX LP64';
48 replace; /* empty replacement -> no fixing the file */
53 * Purge some HP-UX 11 files that are only broken after they are "fixed".
55 fix = {
56 hackname = AAA_ki_calls;
57 files = sys/ki_calls.h;
58 select = 'kthread_create_caller_t';
59 replace; /* empty replacement -> no fixing the file */
64 * Purge some HP-UX 11 files that are only broken after they are "fixed".
66 fix = {
67 hackname = AAA_ki_defs;
68 files = sys/ki_defs.h;
69 select = 'Kernel Instrumentation Definitions';
70 replace; /* empty replacement -> no fixing the file */
75 * Purge some HP-UX 11 files that are only broken after they are "fixed".
77 fix = {
78 hackname = AAA_ki_iface;
79 files = sys/ki_iface.h;
80 select = 'These definitions are for HP Internal developers';
81 replace; /* empty replacement -> no fixing the file */
86 * Tru64 UNIX V4.0F/V5.1 <standards.h> defines _NO_PROTO and _NONSTD_TYPES
87 * correctly for GCC, but strict_ansi_not breaks it.
89 fix = {
90 hackname = AAA_standards;
91 files = standards.h;
92 select = 'GNU and MIPS C compilers define __STDC__ differently';
93 replace; /* empty replacement -> no fixing the file */
98 * Purge some HP-UX 11 files that are only broken after they are "fixed".
100 fix = {
101 hackname = AAA_time;
102 files = sys/time.h;
103 select = '11.0 and later representation of ki time';
104 replace; /* empty replacement -> no fixing the file */
107 /* And now, the real fixes, replacement text fixes first: */
110 * Completely replace <_int_varargs.h> with a file that includes gcc's
111 * stdarg.h or varargs.h files as appropriate on DG/UX
113 fix = {
114 hackname = AAB_dgux_int_varargs;
115 files = _int_varargs.h;
116 replace =
117 "#ifndef __INT_VARARGS_H
118 \#define __INT_VARARGS_H
120 /************************************************************************/
121 /* _INT_VARARGS.H - Define the common stuff for varargs/stdarg/stdio. */
122 /************************************************************************/
124 /*" "
125 ** This file is a DG internal header. Never include this
126 ** file directly.
129 \#ifndef ___int_features_h
130 \#include <sys/_int_features.h>
131 \#endif
133 \#if !(defined(_VA_LIST) || defined(_VA_LIST_))
134 \#define _VA_LIST
135 \#define _VA_LIST_
137 \#ifdef __LINT__
139 \#ifdef __STDC__
140 typedef void * va_list;
141 \#else
142 typedef char * va_list;
143 \#endif
145 \#else
146 \#if _M88K_ANY
148 \#if defined(__DCC__)
150 typedef struct {
151 int next_arg;
152 int *mem_ptr;
153 int *reg_ptr;
154 } va_list;
156 \#else /* ! defined(__DCC__) */
158 typedef struct {
159 int __va_arg; /* argument number */
160 int *__va_stk; /* start of args passed on stack */
161 int *__va_reg; /* start of args passed in regs */
162 } va_list;
164 \#endif /* ! defined(__DCC__) */
166 \#elif _IX86_ANY
168 \#if defined(__GNUC__) || defined(__STDC__)
169 typedef void * va_list;
170 \#else
171 typedef char * va_list;
172 \#endif
174 \#endif /* _IX86_ANY */
176 \#endif /* __LINT__ */
177 \#endif /* !(defined(_VA_LIST) || defined(_VA_LIST_)) */
178 \#endif /* #ifndef __INT_VARARGS_H */\n";
183 * This fixes __FD_ZERO bug for linux 2.x.y (x <= 2 && y <= some n)
185 fix = {
186 hackname = AAB_fd_zero_asm_posix_types_h;
187 files = asm/posix_types.h;
188 mach = 'i[34567]86-*-linux*';
189 bypass = '} while';
192 * Define _POSIX_TYPES_H_WRAPPER at the end of the wrapper, not
193 * the start, so that if #include_next gets another instance of
194 * the wrapper, this will follow the #include_next chain until
195 * we arrive at the real <asm/posix_types.h>.
197 replace =
199 '/* This file fixes a bug in the __FD_ZERO macro
200 for older versions of the Linux kernel. */
201 \#ifndef _POSIX_TYPES_H_WRAPPER
202 \#include <features.h>
203 \#include_next <asm/posix_types.h>
205 \#if defined(__FD_ZERO) && !defined(__GLIBC__)
206 \#undef __FD_ZERO
207 \#define __FD_ZERO(fdsetp) \\
208 do { \\
209 int __d0, __d1; \\
210 __asm__ __volatile__("cld ; rep ; stosl" \\
211 : "=&c" (__d0), "=&D" (__d1) \\
212 : "a" (0), "0" (__FDSET_LONGS), \\
213 "1" ((__kernel_fd_set *) (fdsetp)) :"memory"); \\
214 } while (0)
215 \#endif
217 \#define _POSIX_TYPES_H_WRAPPER
218 \#endif /* _POSIX_TYPES_H_WRAPPER */
224 * This fixes __FD_ZERO bug for glibc-1.x
226 fix = {
227 hackname = AAB_fd_zero_gnu_types_h;
228 files = gnu/types.h;
229 mach = 'i[34567]86-*-linux*';
232 * Define _TYPES_H_WRAPPER at the end of the wrapper, not
233 * the start, so that if #include_next gets another instance of
234 * the wrapper, this will follow the #include_next chain until
235 * we arrive at the real <gnu/types.h>.
237 replace =
239 '/* This file fixes a bug in the __FD_ZERO macro present in glibc 1.x. */
240 \#ifndef _TYPES_H_WRAPPER
241 \#include <features.h>
242 \#include_next <gnu/types.h>
244 \#if defined(__FD_ZERO) && !defined(__GLIBC__)
245 \#undef __FD_ZERO
246 \# define __FD_ZERO(fdsetp) \\
247 do { \\
248 int __d0, __d1; \\
249 __asm__ __volatile__("cld ; rep ; stosl" \\
250 : "=&c" (__d0), "=&D" (__d1) \\
251 : "a" (0), "0" (__FDSET_LONGS), \\
252 "1" ((__fd_set *) (fdsetp)) :"memory"); \\
253 } while (0)
254 \#endif
256 \#define _TYPES_H_WRAPPER
257 \#endif /* _TYPES_H_WRAPPER */
263 * This fixes __FD_ZERO bug for glibc-2.0.x
265 fix = {
266 hackname = AAB_fd_zero_selectbits_h;
267 files = selectbits.h;
268 mach = 'i[34567]86-*-linux*';
271 * Define _SELECTBITS_H_WRAPPER at the end of the wrapper, not
272 * the start, so that if #include_next gets another instance of
273 * the wrapper, this will follow the #include_next chain until
274 * we arrive at the real <selectbits.h>.
276 replace =
278 '/* This file fixes a bug in the __FD_ZERO macro present in glibc 2.0.x. */
279 \#ifndef _SELECTBITS_H_WRAPPER
280 \#include <features.h>
281 \#include_next <selectbits.h>
283 \#if defined(__FD_ZERO) && defined(__GLIBC__) \\
284 && defined(__GLIBC_MINOR__) && __GLIBC__ == 2 \\
285 && __GLIBC_MINOR__ == 0
286 \#undef __FD_ZERO
287 \#define __FD_ZERO(fdsetp) \\
288 do { \\
289 int __d0, __d1; \\
290 __asm__ __volatile__ ("cld; rep; stosl" \\
291 : "=&c" (__d0), "=&D" (__d1) \\
292 : "a" (0), "0" (sizeof (__fd_set) \\
293 / sizeof (__fd_mask)), \\
294 "1" ((__fd_mask *) (fdsetp)) \\
295 : "memory"); \\
296 } while (0)
297 \#endif
299 \#define _SELECTBITS_H_WRAPPER
300 \#endif /* _SELECTBITS_H_WRAPPER */
306 * Fix non-ANSI memcpy declaration that conflicts with gcc's builtin
307 * declaration on Sun OS 4.x. We must only fix this on Sun OS 4.x, because
308 * many other systems have similar text but correct versions of the file.
309 * To ensure only Sun's is fixed, we grep for a likely unique string.
310 * Fix also on sysV68 R3V7.1 (head/memory.h\t50.1\t )
312 fix = {
313 hackname = AAB_sun_memcpy;
314 files = memory.h;
315 select = "/\\*\t@\\(#\\)"
316 "(head/memory.h\t50.1\t "
317 "|memory\\.h 1\\.[2-4] 8./../.. SMI; from S5R2 1\\.2\t)\\*/";
319 replace =
320 '/* This file was generated by fixincludes */
321 \#ifndef __memory_h__
322 \#define __memory_h__
324 \#ifdef __STDC__
325 extern void *memccpy();
326 extern void *memchr();
327 extern void *memcpy();
328 extern void *memset();
329 \#else
330 extern char *memccpy();
331 extern char *memchr();
332 extern char *memcpy();
333 extern char *memset();
334 \#endif /* __STDC__ */
336 extern int memcmp();
338 \#endif /* __memory_h__ */
345 * Completely replace <sys/varargs.h> with a file that includes gcc's
346 * stdarg.h or varargs.h files as appropriate.
348 #ifdef SVR4
349 fix = {
350 hackname = AAB_svr4_no_varargs;
351 files = sys/varargs.h;
352 replace = "/* This file was generated by fixincludes. */\n"
353 "#ifndef _SYS_VARARGS_H\n"
354 "#define _SYS_VARARGS_H\n\n"
356 "#ifdef __STDC__\n"
357 "#include <stdarg.h>\n"
358 "#else\n"
359 "#include <varargs.h>\n"
360 "#endif\n\n"
362 "#endif /* _SYS_VARARGS_H */\n";
364 #endif
368 * Completely replace <sys/byteorder.h>; with a file that implements gcc's
369 * optimized byteswapping. Restricted to "SVR4" machines until either
370 * it is shown to be safe to replace this file always, or we get bolder ;-)
372 fix = {
373 hackname = AAB_svr4_replace_byteorder;
374 #ifndef SVR5
375 mach = "*-*-sysv4*";
376 mach = "i[34567]86-*-sysv5*";
377 mach = "i[34567]86-*-udk*";
378 mach = "i[34567]86-*-solaris2.[0-4]";
379 mach = "powerpcle-*-solaris2.[0-4]";
380 mach = "sparc-*-solaris2.[0-4]";
381 #endif /* SVR5 */
382 files = sys/byteorder.h;
383 replace = '#ifndef _SYS_BYTEORDER_H
384 \#define _SYS_BYTEORDER_H
386 /* Functions to convert `short\' and `long\' quantities from host byte order
387 to (internet) network byte order (i.e. big-endian).
389 Written by Ron Guilmette (rfg@ncd.com).
391 This isn\'t actually used by GCC. It is installed by fixinc.svr4.
393 For big-endian machines these functions are essentially no-ops.
395 For little-endian machines, we define the functions using specialized
396 asm sequences in cases where doing so yields better code (e.g. i386). */
398 \#if !defined (__GNUC__) && !defined (__GNUG__)
399 \#error You lose! This file is only useful with GNU compilers.
400 \#endif
402 \#ifndef __BYTE_ORDER__
403 /* Byte order defines. These are as defined on UnixWare 1.1, but with
404 double underscores added at the front and back. */
405 \#define __LITTLE_ENDIAN__ 1234
406 \#define __BIG_ENDIAN__ 4321
407 \#define __PDP_ENDIAN__ 3412
408 \#endif
410 \#ifdef __STDC__
411 static __inline__ unsigned long htonl (unsigned long);
412 static __inline__ unsigned short htons (unsigned int);
413 static __inline__ unsigned long ntohl (unsigned long);
414 static __inline__ unsigned short ntohs (unsigned int);
415 \#endif /* defined (__STDC__) */
417 \#if defined (__i386__)
419 \#ifndef __BYTE_ORDER__
420 \#define __BYTE_ORDER__ __LITTLE_ENDIAN__
421 \#endif
423 /* Convert a host long to a network long. */
425 /* We must use a new-style function definition, so that this will also
426 be valid for C++. */
427 static __inline__ unsigned long
428 htonl (unsigned long __arg)
430 register unsigned long __result;
432 __asm__ ("xchg%B0 %b0,%h0
433 ror%L0 $16,%0
434 xchg%B0 %b0,%h0" : "=q" (__result) : "0" (__arg));
435 return __result;
438 /* Convert a host short to a network short. */
440 static __inline__ unsigned short
441 htons (unsigned int __arg)
443 register unsigned short __result;
445 __asm__ ("xchg%B0 %b0,%h0" : "=q" (__result) : "0" (__arg));
446 return __result;
449 \#elif ((defined (__i860__) && !defined (__i860_big_endian__)) \\
450 || defined (__ns32k__) || defined (__vax__) \\
451 || defined (__spur__) || defined (__arm__))
453 \#ifndef __BYTE_ORDER__
454 \#define __BYTE_ORDER__ __LITTLE_ENDIAN__
455 \#endif
457 /* For other little-endian machines, using C code is just as efficient as
458 using assembly code. */
460 /* Convert a host long to a network long. */
462 static __inline__ unsigned long
463 htonl (unsigned long __arg)
465 register unsigned long __result;
467 __result = (__arg >> 24) & 0x000000ff;
468 __result |= (__arg >> 8) & 0x0000ff00;
469 __result |= (__arg << 8) & 0x00ff0000;
470 __result |= (__arg << 24) & 0xff000000;
471 return __result;
474 /* Convert a host short to a network short. */
476 static __inline__ unsigned short
477 htons (unsigned int __arg)
479 register unsigned short __result;
481 __result = (__arg << 8) & 0xff00;
482 __result |= (__arg >> 8) & 0x00ff;
483 return __result;
486 \#else /* must be a big-endian machine */
488 \#ifndef __BYTE_ORDER__
489 \#define __BYTE_ORDER__ __BIG_ENDIAN__
490 \#endif
492 /* Convert a host long to a network long. */
494 static __inline__ unsigned long
495 htonl (unsigned long __arg)
497 return __arg;
500 /* Convert a host short to a network short. */
502 static __inline__ unsigned short
503 htons (unsigned int __arg)
505 return __arg;
508 \#endif /* big-endian */
510 /* Convert a network long to a host long. */
512 static __inline__ unsigned long
513 ntohl (unsigned long __arg)
515 return htonl (__arg);
518 /* Convert a network short to a host short. */
520 static __inline__ unsigned short
521 ntohs (unsigned int __arg)
523 return htons (__arg);
525 \#endif
531 * Cancel out ansi_compat.h on Ultrix. Replace it with an empty file.
533 fix = {
534 hackname = AAB_ultrix_ansi_compat;
535 files = ansi_compat.h;
536 select = ULTRIX;
537 replace = "/* This file intentionally left blank. */\n";
542 * The Ultrix 4.3 file limits.h is a symbolic link to sys/limits.h.
543 * Replace limits.h with a file that includes sys/limits.h.
545 fix = {
546 hackname = AAB_ultrix_limits;
547 files = limits.h;
548 mach = "*-*-ultrix4.3";
549 replace =
550 '#ifndef _LIMITS_INCLUDED
551 \#define _LIMITS_INCLUDED
552 \#include <sys/limits.h>
553 \#endif /* _LIMITS_INCLUDED */
559 * The ULTRIX 4.3 version of memory.h duplicates definitions
560 * present in strings.h. Replace memory.h with a file that includes
561 * strings.h to prevent problems from multiple inclusion.
563 fix = {
564 hackname = AAB_ultrix_memory;
565 files = memory.h;
566 mach = "*-*-ultrix4.3";
567 replace =
568 '#ifndef _MEMORY_INCLUDED
569 \#define _MEMORY_INCLUDED
570 \#include <strings.h>
571 \#endif /* _MEMORY_INCLUDED */
577 * The Ultrix 4.3 file string.h is a symbolic link to strings.h.
578 * Replace string.h link with a file that includes strings.h to prevent
579 * problems from multiple inclusion.
581 fix = {
582 hackname = AAB_ultrix_string;
583 files = string.h;
584 mach = "*-*-ultrix4.3";
585 replace =
586 '#ifndef _STRING_INCLUDED
587 \#define _STRING_INCLUDED
588 \#include <strings.h>
589 \#endif /* _STRING_INCLUDED */
595 * pthread.h on AIX 4.3.3 tries to define a macro without whitspace
596 * which violates a requirement of ISO C.
598 fix = {
599 hackname = aix_pthread;
600 files = "pthread.h";
601 select = "(#define [A-Za-z_0-9]+)(\\\\\n[^A-Za-z_0-9 \t\n(])";
602 c_fix = format;
603 c_fix_arg = "%1 %2";
604 test_text = "#define PTHREAD_MUTEX_INITIALIZER\\\\\n"
605 "{...init stuff...}";
610 * sys/machine.h on AIX 4.3.3 puts whitespace between a \ and a newline
611 * in an otherwise harmless (and #ifed out) macro definition
613 fix = {
614 hackname = aix_sysmachine;
615 files = sys/machine.h;
616 select = "\\\\ +\n";
617 c_fix = format;
618 c_fix_arg = "\\\n";
619 test_text = "#define FOO \\\n"
620 " bar \\ \n baz \\ \n bat";
625 * sys/wait.h on AIX 3.2.5 puts the declaration of wait3 before the
626 * definition of struct rusage, so the prototype added by fixproto fails.
628 fix = {
629 hackname = aix_syswait;
630 files = sys/wait.h;
631 select = "^extern pid_t wait3\\(\\);\n";
632 select = "bos325,";
633 c_fix = format;
634 c_fix_arg = "struct rusage;\n%0";
635 test_text = "/* bos325, */\n"
636 "extern pid_t wait3();\n"
637 "\t/* pid_t wait3(int *, int, struct rusage *); */";
642 * sys/signal.h on some versions of AIX uses volatile in the typedef of
643 * sig_atomic_t, which causes gcc to generate a warning about duplicate
644 * volatile when a sig_atomic_t variable is declared volatile, as
645 * required by ANSI C.
647 fix = {
648 hackname = aix_volatile;
649 files = sys/signal.h;
650 select = "typedef volatile int sig_atomic_t";
651 c_fix = format;
652 c_fix_arg = "typedef int sig_atomic_t";
653 test_text = "typedef volatile int sig_atomic_t;";
658 * Fix __assert declaration in assert.h on Alpha OSF/1.
660 fix = {
661 hackname = alpha___assert;
662 files = "assert.h";
663 select = '__assert\(char \*, char \*, int\)';
664 c_fix = format;
665 c_fix_arg = "__assert(const char *, const char *, int)";
666 test_text = 'extern void __assert(char *, char *, int);';
671 * Fix getopt declarations in stdio.h and stdlib.h on Alpha OSF/1 and AIX.
673 fix = {
674 hackname = alpha_getopt;
675 files = "stdio.h";
676 files = "stdlib.h";
677 select = 'getopt\(int, char \*\[\], *char \*\)';
678 c_fix = format;
679 c_fix_arg = "getopt(int, char *const[], const char *)";
680 test_text = 'extern int getopt(int, char *[], char *);';
685 * Remove erroneous parentheses in sym.h on Alpha OSF/1.
687 fix = {
688 hackname = alpha_parens;
689 files = sym.h;
690 select = '#ifndef\(__mips64\)';
691 c_fix = format;
692 c_fix_arg = "#ifndef __mips64";
693 test_text = "#ifndef(__mips64) /* bogus */\nextern int foo;\n#endif";
698 * Fix return value of sbrk in unistd.h on Alpha OSF/1 V2.0
700 fix = {
701 hackname = alpha_sbrk;
702 files = unistd.h;
703 select = "char[ \t]*\\*[\t ]*sbrk[ \t]*\\(";
704 c_fix = format;
705 c_fix_arg = "void *sbrk(";
706 test_text = "extern char* sbrk(ptrdiff_t increment);";
711 * Fix this ARM/RISCiX file where ___type is a Compiler
712 * hint that is specific to the Norcroft compiler.
714 fix = {
715 hackname = arm_norcroft_hint;
716 select = "___type p_type";
717 files = "X11/Intrinsic.h";
718 c_fix = format;
719 c_fix_arg = "p_type";
720 test_text = "___type p_type mumble;";
725 * Fix this ARM/RISCiX file to avoid interfering
726 * with the use of __wchar_t in cc1plus.
728 fix = {
729 hackname = arm_wchar;
730 files = stdlib.h;
731 select = "#[ \t]*define[ \t]*__wchar_t";
733 c_fix = format;
734 c_fix_arg = "%1_GCC_WCHAR_T";
735 c_fix_arg = "(#[ \t]*(ifndef|define)[ \t]+)__wchar_t";
737 test_text =
738 "# ifndef \t __wchar_t /* we don't have wchar_t yet, ... */\n"
739 "# define __wchar_t short\n"
740 "# endif /* __wchar_t */";
745 * This file in A/UX 3.0.x/3.1.x contains an __asm directive for c89;
746 * gcc doesn't understand it.
748 fix = {
749 hackname = aux_asm;
750 files = sys/param.h;
751 select = "#ifndef NOINLINE";
753 c_fix = format;
754 c_fix_arg = "#if !defined(NOINLINE) && !defined(__GNUC__)";
756 test_text =
757 "#ifndef NOINLINE /* ain't got no inline, so we got it */\n"
758 "#endif /* NOINLINE */";
763 * For C++, avoid any typedef or macro definition of bool,
764 * and use the built in type instead.
765 * HP/UX 10.20 also has it in curses_colr/curses.h.
767 fix = {
768 hackname = avoid_bool_define;
769 files = curses.h;
770 files = curses_colr/curses.h;
771 files = term.h;
772 files = tinfo.h;
774 select = "#[ \t]*define[ \t]+bool[ \t]";
775 bypass = "we must use the C\\+\\+ compiler's type";
777 c_fix = format;
778 c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
779 c_fix_arg = "^[ \t]*#[ \t]*define[ \t]+bool[ \t].*";
781 test_text = "# define bool\t char \n";
784 fix = {
785 hackname = avoid_bool_type;
786 files = curses.h;
787 files = curses_colr/curses.h;
788 files = term.h;
789 files = tinfo.h;
791 select = "^[ \t]*typedef[ \t].*[ \t]bool[ \t]*;";
792 bypass = "we must use the C\\+\\+ compiler's type";
794 c_fix = format;
795 c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
797 test_text = "typedef unsigned int\tbool \t; /* bool\n type */";
801 * For C++, avoid any typedef definition of wchar_t,
802 * and use the built in type instead.
805 fix = {
806 hackname = avoid_wchar_t_type;
808 select = "^[ \t]*typedef[ \t].*[ \t]wchar_t[ \t]*;";
810 c_fix = format;
811 c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
813 test_text = "typedef unsigned short\twchar_t \t; /* wchar_t\n type */";
817 * Fix #defines under Alpha OSF/1:
818 * The following files contain '#pragma extern_prefix "_FOO"' followed by
819 * a '#define something(x,y,z) _FOOsomething(x,y,z)'. The intent of these
820 * statements is to reduce namespace pollution. While these macros work
821 * properly in most cases, they don't allow you to take a pointer to the
822 * "something" being modified. To get around this limitation, change these
823 * statements to be of the form '#define something _FOOsomething'.
825 * sed ain't egrep, lesson 2463: sed can use self-referential
826 * regular expressions. In the substitute expression below,
827 * "\\1" and "\\2" refer to subexpressions found earlier in the
828 * same match. So, we continue to use sed. "extern_prefix" will
829 * be a rare match anyway...
831 fix = {
832 hackname = bad_lval;
834 select = "^[ \t]*#[ \t]*pragma[ \t]+extern_prefix";
836 files = libgen.h;
837 files = dirent.h;
838 files = ftw.h;
839 files = grp.h;
840 files = ndbm.h;
841 files = pthread.h;
842 files = pwd.h;
843 files = signal.h;
844 files = standards.h;
845 files = stdlib.h;
846 files = string.h;
847 files = stropts.h;
848 files = time.h;
849 files = unistd.h;
851 sed =
852 "s/^[ \t]*#[ \t]*define[ \t][ \t]*\\([^(]*\\)\\(([^)]*)\\)[ \t]*"
853 "\\(_.*\\)\\1\\2[ \t]*$/#define \\1 \\3\\1/";
855 test_text = '#pragma extern_prefix "_FOO"'"\n"
856 "#define something(x,y,z) _FOOsomething(x,y,z)\n"
857 "#define mumble _FOOmumble";
862 * Fix `typedef struct term;' on hppa1.1-hp-hpux9.
864 fix = {
865 hackname = bad_struct_term;
866 files = curses.h;
867 select = "^[ \t]*typedef[ \t]+struct[ \t]+term[ \t]*;";
868 c_fix = format;
869 c_fix_arg = "struct term;";
871 test_text = 'typedef struct term;';
876 * Fix one other error in this file:
877 * a mismatched quote not inside a C comment.
879 fix = {
880 hackname = badquote;
881 files = sundev/vuid_event.h;
882 select = "doesn't";
883 c_fix = format;
884 c_fix_arg = "does not";
886 test_text = "/* doesn't have matched single quotes */";
891 * check for broken assert.h that needs stdio.h
893 fix = {
894 hackname = broken_assert_stdio;
895 files = assert.h;
896 select = stderr;
897 bypass = "include.*stdio\\.h";
898 c_fix = wrap;
899 c_fix_arg = "#include <stdio.h>\n";
900 test_text = "extern FILE* stderr;";
905 * check for broken assert.h that needs stdlib.h
907 fix = {
908 hackname = broken_assert_stdlib;
909 files = assert.h;
910 select = 'exit *\(|abort *\(';
911 bypass = "include.*stdlib\\.h";
912 c_fix = wrap;
913 c_fix_arg = "#ifdef __cplusplus\n"
914 "#include <stdlib.h>\n"
915 "#endif\n";
916 test_text = "extern void exit ( int );";
921 * Remove `extern double cabs' declarations from math.h.
922 * This conflicts with C99. Discovered on AIX.
923 * SunOS4 has its cabs() declaration followed by a comment which
924 * terminates on the following line.
926 fix = {
927 hackname = broken_cabs;
928 files = "math.h";
929 select = '^extern[ \t]+double[ \t]+cabs';
931 c_fix = format;
932 c_fix_arg = "";
933 c_fix_arg = "^extern[ \t]+double[ \t]+cabs\\((struct dbl_hypot|)\\);";
935 test_text = "#ifdef __STDC__\n"
936 "extern double cabs(struct dbl_hypot);\n"
937 "#else\n"
938 "extern double cabs();\n"
939 "#endif\n"
940 "extern double cabs(); /* This is a comment\n"
941 " and it ends here. */";
946 * Fix various macros used to define ioctl numbers.
947 * The traditional syntax was:
949 * #define _CTRL(n, x) (('n'<<8)+x)
950 * #define TCTRLCFOO _CTRL(T, 1)
952 * but this does not work with the C standard, which disallows macro
953 * expansion inside strings. We have to rewrite it thus:
955 * #define _CTRL(n, x) ((n<<8)+x)
956 * #define TCTRLCFOO _CTRL('T', 1)
958 * The select expressions match too much, but the c_fix code is cautious.
960 * CTRL might be: CTRL _CTRL ISCTRL BSD43_CTRL ...
962 fix = {
963 hackname = ctrl_quotes_def;
964 select = "define[ \t]+[A-Z0-9_]+CTRL\\([a-zA-Z][,)]";
965 c_fix = char_macro_def;
966 c_fix_arg = "CTRL";
969 * This is two tests in order to ensure that the "CTRL(c)" can
970 * be selected in isolation from the multi-arg format
972 test_text = "#define BSD43_CTRL(n, x) (('n'<<8)+x)\n";
973 test_text = "#define _CTRL(c) ('c'&037)";
976 fix = {
977 hackname = ctrl_quotes_use;
978 select = "define[ \t]+[A-Z0-9_]+[ \t]+[A-Z0-9_]+CTRL[ \t]*\\( *[^,']";
979 c_fix = char_macro_use;
980 c_fix_arg = "CTRL";
981 test_text = "#define TCTRLFOO BSD43_CTRL(T, 1)";
986 * sys/mman.h on HP/UX is not C++ ready,
987 * even though NO_IMPLICIT_EXTERN_C is defined on HP/UX.
989 * rpc/types.h on OSF1/2.0 is not C++ ready,
990 * even though NO_IMPLICIT_EXTERN_C is defined for the alpha.
992 * The problem is the declaration of malloc.
994 fix = {
995 hackname = cxx_unready;
996 files = sys/mman.h;
997 files = rpc/types.h;
998 select = '[^#]+malloc.*;'; /* Catch any form of declaration
999 not within a macro. */
1000 bypass = '"C"|__BEGIN_DECLS';
1002 c_fix = wrap;
1003 c_fix_arg = "#ifdef __cplusplus\n"
1004 "extern \"C\" {\n"
1005 "#endif\n";
1006 c_fix_arg = "#ifdef __cplusplus\n"
1007 "}\n"
1008 "#endif\n";
1009 test_text = "extern void* malloc( size_t );";
1014 * Fix <c_asm.h> on Digital UNIX V4.0:
1015 * It contains a prototype for a DEC C internal asm() function,
1016 * clashing with gcc's asm keyword. So protect this with __DECC.
1018 fix = {
1019 hackname = dec_intern_asm;
1020 files = c_asm.h;
1021 sed = "/^[ \t]*float[ \t]*fasm/i\\\n#ifdef __DECC\n";
1022 sed = "/^[ \t]*#[ \t]*pragma[ \t]*intrinsic([ \t]*dasm/a\\\n"
1023 "#endif\n";
1024 test_text =
1025 "float fasm {\n"
1026 " ... asm stuff ...\n"
1027 "};\n#pragma intrinsic( dasm )\n/* END ASM TEST*/";
1032 * Fix typo in <wchar.h> on DJGPP 2.03.
1034 fix = {
1035 hackname = djgpp_wchar_h;
1036 file = wchar.h;
1037 select = "__DJ_wint_t";
1038 bypass = "sys/djtypes.h";
1039 c_fix = format;
1040 c_fix_arg = "%0\n#include <sys/djtypes.h>";
1041 c_fix_arg = "#include <stddef.h>";
1042 test_text = "#include <stddef.h>\n"
1043 "extern __DJ_wint_t x;\n";
1047 * Fix these Sun OS files to avoid an invalid identifier in an #ifdef.
1049 fix = {
1050 hackname = ecd_cursor;
1051 files = "sunwindow/win_lock.h";
1052 files = "sunwindow/win_cursor.h";
1053 select = 'ecd\.cursor';
1054 c_fix = format;
1055 c_fix_arg = 'ecd_cursor';
1057 test_text = "#ifdef ecd.cursor\n#error bogus\n#endif /* ecd+cursor */";
1062 * fix-header doesn't fix fabs' prototype, and I have no idea why.
1064 fix = {
1065 hackname = fix_header_breakage;
1066 mach = "m88k-motorola-sysv3*";
1067 files = "math.h";
1069 select = 'extern double floor\(\), ceil\(\), fmod\(\), fabs\(\);';
1070 c_fix = format;
1071 c_fix_arg =
1072 'extern double floor(), ceil(), fmod(), fabs _PARAMS((double));';
1073 test_text = 'extern double floor(), ceil(), fmod(), fabs();';
1078 * Between 8/24/1998 and 2/17/2001, FreeBSD system headers presume
1079 * neither the existence of GCC 3 nor its exact feature set yet break
1080 * (by design?) when __GNUC__ is set beyond 2.
1082 fix = {
1083 hackname = freebsd_gcc3_breakage;
1084 mach = *-*-freebsd*;
1085 files = sys/cdefs.h;
1086 select = '^#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7$';
1087 bypass = '__GNUC__[ \t]*([>=]=[ \t]*[3-9]|>[ \t]*2)';
1088 c_fix = format;
1089 c_fix_arg = '%0 || __GNUC__ >= 3';
1090 test_text = '#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7';
1095 * Fix these files to use the same types that we think they should.
1097 fix = {
1098 hackname = gnu_types;
1099 files = "sys/types.h";
1100 files = "stdlib.h";
1101 files = "sys/stdtypes.h";
1102 files = "stddef.h";
1103 files = "memory.h";
1104 files = "unistd.h";
1105 bypass = '_GCC_(PTRDIFF|SIZE|WCHAR)_T';
1106 select = "^[ \t]*typedef[ \t]+.*[ \t](ptrdiff|size|wchar)_t;";
1107 c_fix = gnu_type;
1109 test_text = "typedef long int ptrdiff_t; /* long int */\n"
1110 "typedef uint_t size_t; /* uint_t */\n"
1111 "typedef ushort_t wchar_t; /* ushort_t */";
1116 * Fix HP & Sony's use of "../machine/xxx.h"
1117 * to refer to: <machine/xxx.h>
1119 fix = {
1120 hackname = hp_inline;
1121 files = sys/spinlock.h;
1122 files = machine/machparam.h;
1123 select = "[ \t]*#[ \t]*include[ \t]+" '"\.\./machine/';
1125 c_fix = format;
1126 c_fix_arg = "%1<machine/%2.h>";
1128 c_fix_arg = "([ \t]*#[ \t]*include[ \t]+)" '"\.\./machine/'
1129 '([a-z]+)\.h"';
1131 test_text = ' # include "../machine/mumble.h"';
1136 * Check for (...) in C++ code in HP/UX sys/file.h.
1138 fix = {
1139 hackname = hp_sysfile;
1140 files = sys/file.h;
1141 select = "HPUX_SOURCE";
1143 c_fix = format;
1144 c_fix_arg = "(struct file *, ...)";
1145 c_fix_arg = '\(\.\.\.\)';
1147 test_text = "extern void foo(...); /* HPUX_SOURCE - bad varargs */";
1152 * Delete C++ double pow (double, int) inline function from HP-UX 10 & 11
1153 * math.h to prevent clash with define in c_std/bits/std_cmath.h.
1155 fix = {
1156 hackname = hpux10_cpp_pow_inline;
1157 files = fixinc-test-limits.h, math.h;
1158 select = <<- END_POW_INLINE
1159 ^# +ifdef +__cplusplus
1161 +inline +double +pow\(double +__d,int +__expon\) +{
1162 [ ]+return +pow\(__d,\(double\)__expon\);
1164 +extern +"C" +{
1165 #else
1166 # +endif
1167 END_POW_INLINE;
1169 c_fix = format;
1170 c_fix_arg = "";
1172 test_text =
1173 "# ifdef __cplusplus\n"
1174 " }\n"
1175 " inline double pow(double __d,int __expon) {\n"
1176 "\t return pow(__d,(double)__expon);\n"
1177 " }\n"
1178 ' extern "C"' " {\n"
1179 "#else\n"
1180 "# endif";
1183 fix = {
1184 hackname = hpux11_cpp_pow_inline;
1185 files = math.h;
1186 select = " +inline double pow\\(double d,int expon\\) {\n"
1187 " +return pow\\(d, \\(double\\)expon\\);\n"
1188 " +}\n";
1189 c_fix = format;
1190 c_fix_arg = "";
1192 test_text =
1193 " inline double pow(double d,int expon) {\n"
1194 " return pow(d, (double)expon);\n"
1195 " }\n";
1199 * Keep HP-UX 11 from stomping on C++ math namespace
1200 * with defines for fabsf.
1202 fix = {
1203 hackname = hpux11_fabsf;
1204 files = math.h;
1205 select = "^[ \t]*#[ \t]*define[ \t]+fabsf\\(.*";
1206 bypass = "__cplusplus";
1208 c_fix = format;
1209 c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
1211 test_text =
1212 "#ifdef _PA_RISC\n"
1213 "# define fabsf(x) ((float)fabs((double)(float)(x)))\n"
1214 "#endif";
1219 * In inttypes.h on HPUX 11, the use of __CONCAT__ in the definition
1220 * of UINT32_C has undefined behavior according to ISO/ANSI:
1221 * the arguments to __CONCAT__ are not macro expanded before the
1222 * concatination happens so the trailing ')' in the first argument
1223 * is concatinated with the 'l' in the second argument creating an
1224 * invalid pp token. The behavior of invalid pp tokens is undefined.
1225 * GCC does not handle these invalid tokens the way the HP compiler does.
1226 * This problem will potentially occur anytime macros are used in the
1227 * arguments to __CONCAT__. A general solution to this problem would be to
1228 * insert another layer of macro between __CONCAT__ and its use
1229 * in UINT32_C. An example of this solution can be found in the C standard.
1230 * A more specific solution, the one used here, is to change the UINT32_C
1231 * macro to not used macros in the arguments to __CONCAT__.
1233 fix = {
1234 hackname = hpux11_uint32_c;
1235 files = inttypes.h;
1236 select = "^#define UINT32_C\\(__c\\)[ \t]*"
1237 "__CONCAT__\\(__CONCAT_U__\\(__c\\),l\\)";
1238 c_fix = format;
1239 c_fix_arg = '#define UINT32_C(__c) __CONCAT__(__c,ul)';
1240 test_text =
1241 "#define CONCAT_U__(__c)\t__CONCAT__(__c,u)\n"
1242 "#define UINT32_C(__c)\t__CONCAT__(__CONCAT_U__(__c),l)";
1247 * Fix hpux 11.00 broken vsnprintf declaration
1249 fix = {
1250 hackname = hpux11_vsnprintf;
1251 files = stdio.h;
1252 select = 'extern int vsnprintf\(char \*, __size_t, const char \*,'
1253 ' __va__list\);';
1255 c_fix = format;
1256 c_fix_arg = "extern int vsnprintf(char *, __size_t, const char *,"
1257 " __va_list);";
1259 test_text = 'extern int vsnprintf(char *, __size_t, const char *,'
1260 ' __va__list);';
1265 * get rid of bogus inline definitions in HP-UX 8.0
1267 fix = {
1268 hackname = hpux8_bogus_inlines;
1269 files = math.h;
1270 select = inline;
1271 sed = "s@inline int abs(int [a-z][a-z]*) {.*}"
1272 "@extern \"C\" int abs(int);@";
1273 sed = "s@inline double abs(double [a-z][a-z]*) {.*}@@";
1274 sed = "s@inline int sqr(int [a-z][a-z]*) {.*}@@";
1275 sed = "s@inline double sqr(double [a-z][a-z]*) {.*}@@";
1276 test_text = "inline int abs(int v) { return (v>=0)?v:-v; }\n"
1277 "inline double sqr(double v) { return v**0.5; }";
1282 * HPUX 10.x sys/param.h defines MAXINT which clashes with values.h
1284 fix = {
1285 hackname = hpux_maxint;
1286 files = sys/param.h;
1287 files = values.h;
1288 select = "^#[ \t]*define[ \t]+MAXINT[ \t]";
1289 bypass = "^#[ \t]*ifndef[ \t]+MAXINT";
1290 test =
1291 "-n \"`egrep '#[ \t]*define[ \t]+MAXINT[ \t]' sys/param.h`\"";
1293 c_fix = format;
1294 c_fix_arg = "#ifndef MAXINT\n%0\n#endif";
1295 c_fix_arg = "^#[ \t]*define[ \t]+MAXINT[ \t].*";
1297 test_text = '#define MAXINT 0x7FFFFFFF';
1302 * Fix hpux10.20 <sys/time.h> to avoid invalid forward decl
1304 fix = {
1305 hackname = hpux_systime;
1306 files = sys/time.h;
1307 select = "^extern struct sigevent;";
1309 c_fix = format;
1310 c_fix_arg = "struct sigevent;";
1312 test_text = 'extern struct sigevent;';
1317 * Fix return type of abort and free
1319 fix = {
1320 hackname = int_abort_free_and_exit;
1321 files = stdlib.h;
1322 select = "int[ \t]+(abort|free|exit)[ \t]*\\(";
1324 c_fix = format;
1325 c_fix_arg = "void\t%1(";
1327 test_text = "extern int abort(int);\n"
1328 "extern int free(void*);\n"
1329 "extern int exit(void*);";
1334 * Fix various macros used to define ioctl numbers.
1335 * The traditional syntax was:
1337 * #define _IO(n, x) (('n'<<8)+x)
1338 * #define TIOCFOO _IO(T, 1)
1340 * but this does not work with the C standard, which disallows macro
1341 * expansion inside strings. We have to rewrite it thus:
1343 * #define _IO(n, x) ((n<<8)+x)
1344 * #define TIOCFOO _IO('T', 1)
1346 * The select expressions match too much, but the c_fix code is cautious.
1348 * _IO might be: _IO DESIO BSD43__IO with W, R, WR, C, ... suffixes.
1350 fix = {
1351 hackname = io_quotes_def;
1352 select = "define[ \t]+[A-Z0-9_]+IO[A-Z]*\\([a-zA-Z][,)]";
1353 c_fix = char_macro_def;
1354 c_fix_arg = "IO";
1355 test_text =
1356 "#define BSD43__IOWR(n, x) (('n'<<8)+x)\n"
1357 "#define _IOWN(x,y,t) (_IOC_IN|(((t)&_IOCPARM_MASK)<<16)|('x'<<8)|y)\n"
1358 "#define _IO(x,y) ('x'<<8|y)";
1359 test_text =
1360 "#define XX_IO(x) ('x'<<8|256)";
1363 fix = {
1364 hackname = io_quotes_use;
1365 select = "define[ \t]+[A-Z0-9_]+[ \t]+[A-Z0-9_]+IO[A-Z]*[ \t]*"
1366 "\\( *[^,']";
1367 c_fix = char_macro_use;
1368 c_fix_arg = "IO";
1369 test_text = "#define TIOCFOO BSD43__IOWR(T, 1)\n"
1370 "#define TIOCFOO \\\\\n"
1371 "BSD43__IOWR(T, 1) /* Some are multi-line */";
1376 * Check for missing ';' in struct
1378 fix = {
1379 hackname = ip_missing_semi;
1380 files = netinet/ip.h;
1381 select = "}$";
1382 sed = "/^struct/,/^};/s/}$/};/";
1383 test_text=
1384 "struct mumble {\n"
1385 " union {\n"
1386 " int x;\n"
1387 " }\n"
1388 "}; /* mumbled struct */\n";
1393 * IRIX 5.2's <sys/asm.h> contains an asm comment with a contraction
1394 * that causes the assembly preprocessor to complain about an
1395 * unterminated character constant.
1397 fix = {
1398 hackname = irix_asm_apostrophe;
1399 files = sys/asm.h;
1401 select = "^[ \t]*#.*[Ww]e're";
1402 c_fix = format;
1403 c_fix_arg = "%1 are";
1404 c_fix_arg = "^([ \t]*#.*[Ww]e)'re";
1405 test_text = "\t# and we're on vacation";
1410 * Non-traditional "const" declaration in Irix's limits.h.
1412 fix = {
1413 hackname = irix_limits_const;
1414 files = fixinc-test-limits.h, limits.h;
1415 select = "^extern const ";
1416 c_fix = format;
1417 c_fix_arg = "extern __const ";
1418 test_text = "extern const char limit; /* test limits */";
1423 * IRIX 5.x's stdio.h declares some functions that take a va_list as
1424 * taking char *. However, GCC uses void * for va_list, so
1425 * calling vfprintf with a va_list fails in C++. */
1426 fix = {
1427 hackname = irix_stdio_va_list;
1428 files = stdio.h;
1430 select = '(printf\(.*), /\* va_list \*/ char \*';
1431 c_fix = format;
1432 c_fix_arg = "%1, __gnuc_va_list";
1433 test_text =
1434 "extern int printf( const char *, /* va_list */ char * );";
1439 * Fixing ISC fmod declaration
1441 fix = {
1442 hackname = isc_fmod;
1443 files = math.h;
1444 select = 'fmod\(double\)';
1445 c_fix = format;
1446 c_fix_arg = "fmod(double, double)";
1447 test_text = "extern double fmod(double);";
1452 * On Interactive Unix 2.2, certain traditional Unix definitions
1453 * (notably getc and putc in stdio.h) are omitted if __STDC__ is
1454 * defined, not just if _POSIX_SOURCE is defined. This makes it
1455 * impossible to compile any nontrivial program except with -posix.
1457 fix = {
1458 hackname = isc_omits_with_stdc;
1460 files = "stdio.h";
1461 files = "math.h";
1462 files = "ctype.h";
1463 files = "sys/limits.h";
1464 files = "sys/fcntl.h";
1465 files = "sys/dirent.h";
1467 select = '!defined\(__STDC__\) && !defined\(_POSIX_SOURCE\)';
1468 c_fix = format;
1469 c_fix_arg = '!defined(_POSIX_SOURCE)';
1470 test_text = "#if !defined(__STDC__) && !defined(_POSIX_SOURCE) /* ? ! */"
1471 "\nint foo;\n#endif";
1476 * These files in Sun OS 4.x and ARM/RISCiX and BSD4.3
1477 * use / * * / to concatenate tokens.
1479 fix = {
1480 hackname = kandr_concat;
1481 files = "sparc/asm_linkage.h";
1482 files = "sun3/asm_linkage.h";
1483 files = "sun3x/asm_linkage.h";
1484 files = "sun4/asm_linkage.h";
1485 files = "sun4c/asm_linkage.h";
1486 files = "sun4m/asm_linkage.h";
1487 files = "sun4c/debug/asm_linkage.h";
1488 files = "sun4m/debug/asm_linkage.h";
1489 files = "arm/as_support.h";
1490 files = "arm/mc_type.h";
1491 files = "arm/xcb.h";
1492 files = "dev/chardefmac.h";
1493 files = "dev/ps_irq.h";
1494 files = "dev/screen.h";
1495 files = "dev/scsi.h";
1496 files = "sys/tty.h";
1497 files = "Xm.acorn/XmP.h";
1498 files = bsd43/bsd43_.h;
1499 select = '/\*\*/';
1500 c_fix = format;
1501 c_fix_arg = '##';
1502 test_text = "#define __CONCAT__(a,b) a/**/b";
1507 * GNU libc1 string.h does not prototype memcpy and memcmp for gcc
1508 * versions > 1. This fix will open up the declaration for all
1509 * versions of GCC and for g++.
1511 fix = {
1512 hackname = libc1_ifdefd_memx;
1514 /* The string.h result is overwritten by AAB_ultrix_string when doing
1515 "make check" and will fail. Therefore, we add the following kludgery
1516 to insert the test_text into the special testing header. :-} */
1517 files = testing.h;
1518 files = string.h;
1520 c_fix = format;
1521 select = "' is a built-in function for gcc 2\\.x\\. \\*/";
1522 bypass = __cplusplus;
1523 c_fix_arg = "%1";
1524 c_fix_arg =
1525 '/\* `mem...\' is a built-in function for gcc 2\.x\. \*/' "\n"
1526 '#if defined\(__STDC__\) && __GNUC__ < 2' "\n"
1527 "(/\\* .* \\*/\n"
1528 "extern [a-z_]+ mem.*(\n[^#].*)*;)\n"
1529 "#endif";
1531 test_text =
1532 "/* \\`memcpy' is a built-in function for gcc 2.x. */\n"
1533 "#if defined(__STDC__) && __GNUC__ < 2\n"
1534 "/* Copy N bytes of SRC to DEST. */\n"
1535 "extern __ptr_t memcpy __P ((__ptr_t __dest, __const __ptr_t __src,\n"
1536 " size_t __n));\n"
1537 "#endif";
1542 * In limits.h, put #ifndefs around things that are supposed to be defined
1543 * in float.h to avoid redefinition errors if float.h is included first.
1544 * On HP/UX this patch does not work, because on HP/UX limits.h uses
1545 * multi line comments and the inserted #endif winds up inside the
1546 * comment. Fortunately, HP/UX already uses #ifndefs in limits.h; if
1547 * we find a #ifndef FLT_MIN we assume that all the required #ifndefs
1548 * are there, and we do not add them ourselves.
1550 fix = {
1551 hackname = limits_ifndefs;
1552 files = "sys/limits.h";
1553 files = "limits.h";
1554 bypass = "ifndef[ \t]+FLT_MIN";
1556 c_fix = format;
1557 c_fix_arg = "#ifndef %1\n%0\n#endif";
1558 c_fix_arg = "^[ \t]*#[ \t]*define[ \t]+"
1559 "((FLT|DBL)_(MIN|MAX|DIG))[ \t].*";
1560 test_text = " #\tdefine\tDBL_DIG \t 0 /* somthin' */";
1565 * Delete the '#define void int' line from curses.h on Lynx
1567 fix = {
1568 hackname = lynx_void_int;
1569 files = curses.h;
1570 select = "#[ \t]*define[ \t]+void[ \t]+int[ \t]*";
1571 c_fix = format;
1572 c_fix_arg = "";
1573 test_text = "# define\tvoid\tint \t/* curses foiled again */";
1578 * Fix fcntl prototype in fcntl.h on LynxOS.
1580 fix = {
1581 hackname = lynxos_fcntl_proto;
1582 files = fcntl.h;
1583 select = "fcntl[ \t]*" '\(int, int, int\)';
1584 c_fix = format;
1585 c_fix_arg = '%1...)';
1586 c_fix_arg = "(fcntl[ \t]*" '\(int, int, )int\)';
1587 test_text = "extern int fcntl(int, int, int);";
1592 * libm.a on m88k-motorola-sysv3 contains a stupid optimization for
1593 * function hypot(), which returns the second argument without even
1594 * looking at its value, if the other is 0.0.
1596 fix = {
1597 hackname = m88k_bad_hypot_opt;
1598 mach = "m88k-motorola-sysv3*";
1599 files = "math.h";
1600 select = "^extern double hypot\\(\\);\n";
1601 c_fix = format;
1602 c_fix_arg = "%0"
1603 "/* Workaround a stupid Motorola optimization if one\n"
1604 " of x or y is 0.0 and the other is negative! */\n"
1605 "#ifdef __STDC__\n"
1606 "static __inline__ double fake_hypot (double x, double y)\n"
1607 "#else\n"
1608 "static __inline__ double fake_hypot (x, y)\n"
1609 "\tdouble x, y;\n"
1610 "#endif\n"
1611 "{\n"
1612 "\treturn fabs (hypot (x, y));\n"
1613 "}\n"
1614 "#define hypot\tfake_hypot\n";
1615 test_text = "extern double hypot();";
1620 * Fix incorrect S_IF* definitions on m88k-sysv3.
1622 fix = {
1623 hackname = m88k_bad_s_if;
1624 mach = "m88k-*-sysv3*";
1625 files = sys/stat.h;
1626 select = "#define[ \t]+S_IS[A-Z]+\\(m\\)[ \t]+\\(m[ \t]*&";
1628 c_fix = format;
1629 c_fix_arg = '#define %1(m) (((m) & S_IFMT) == %2)';
1630 c_fix_arg = "#define[ \t]+(S_IS[A-Z]+)\\(m\\)[ \t]+"
1631 "\\(m[ \t]*&[ \t]*"
1632 "(S_IF[A-Z][A-Z][A-Z]+|0[0-9]+)"
1633 "[ \t]*\\)";
1634 test_text = '#define S_ISREG(m) (m & S_IFREG) /* is regular? */';
1639 * Put cpp wrappers around these include files to avoid redeclaration
1640 * errors during multiple inclusion on m88k-tektronix-sysv3.
1642 fix = {
1643 hackname = m88k_multi_incl;
1644 mach = "m88k-tektronix-sysv3*";
1645 files = "time.h";
1646 bypass = "#ifndef";
1647 c_fix = wrap;
1648 test_text = "";
1653 * Fix BSD machine/ansi.h to use __builtin_va_list to define _BSD_VA_LIST_.
1655 * On NetBSD, machine is a symbolic link to an architecture specific
1656 * directory name, so we can't match a specific file name here.
1658 fix = {
1659 hackname = machine_ansi_h_va_list;
1660 select = "define[ \t]+_BSD_VA_LIST_[ \t]";
1661 bypass = '__builtin_va_list';
1663 c_fix = format;
1664 c_fix_arg = "%1__builtin_va_list";
1665 c_fix_arg = "(define[ \t]+_BSD_VA_LIST_[ \t]+).*";
1667 test_text = " # define _BSD_VA_LIST_\tchar**";
1672 * Fix non-ansi machine name defines
1674 fix = {
1675 hackname = machine_name;
1676 c_test = machine_name;
1677 c_fix = machine_name;
1679 test_text = "/* MACH_DIFF: */\n"
1680 "#if defined( i386 ) || defined( sparc ) || defined( vax )"
1681 "\n/* no uniform test, so be careful :-) */";
1686 * Some math.h files define struct exception, which conflicts with
1687 * the class exception defined in the C++ file std/stdexcept.h. We
1688 * redefine it to __math_exception. This is not a great fix, but I
1689 * haven't been able to think of anything better.
1690 * Note that we have to put the #ifdef/#endif blocks at beginning
1691 * and end of file, because fixproto runs after us and may insert
1692 * additional references to struct exception.
1694 fix = {
1695 hackname = math_exception;
1696 files = math.h;
1697 select = "struct exception";
1698 bypass = 'We have a problem when using C\+\+';
1699 c_fix = wrap;
1701 c_fix_arg = "#ifdef __cplusplus\n"
1702 "#define exception __math_exception\n"
1703 "#endif\n";
1705 c_fix_arg = "#ifdef __cplusplus\n"
1706 "#undef exception\n"
1707 "#endif\n";
1709 test_text = "typedef struct exception t_math_exception;";
1714 * This looks pretty broken to me. ``dbl_max_def'' will contain
1715 * "define DBL_MAX " at the start, when what we really want is just
1716 * the value portion. Can't figure out how to write a test case
1717 * for this either :-(
1719 fix = {
1720 hackname = math_huge_val_from_dbl_max;
1721 files = math.h;
1724 * IF HUGE_VAL is defined to be DBL_MAX *and* DBL_MAX is _not_ defined
1725 * in math.h, this fix applies.
1727 select = "define[ \t]+HUGE_VAL[ \t]+DBL_MAX";
1728 bypass = "define[ \t]+DBL_MAX";
1730 shell =
1732 * See if we have a definition for DBL_MAX in float.h.
1733 * If we do, we will replace the one in math.h with that one.
1736 "\tdbl_max_def=`egrep 'define[ \t]+DBL_MAX[ \t]+.*' float.h "
1737 "| sed 's/.*DBL_MAX[ \t]*//' 2>/dev/null`\n\n"
1739 "\tif ( test -n \"${dbl_max_def}\" ) > /dev/null 2>&1\n"
1740 "\tthen sed -e '/define[ \t]*HUGE_VAL[ \t]*DBL_MAX/"
1741 "s@DBL_MAX@'\"$dbl_max_def@\"\n"
1742 "\telse cat\n"
1743 "\tfi";
1745 test_text =
1746 "`echo '#define DBL_MAX\t3.1415e+9 /* really big */' >> float.h`\n"
1747 "#define HUGE_VAL DBL_MAX";
1752 * In any case, put #ifndef .. #endif around #define HUGE_VAL in math.h.
1754 fix = {
1755 hackname = math_huge_val_ifndef;
1756 files = math.h;
1757 files = math/math.h;
1758 select = "define[ \t]+HUGE_VAL";
1760 c_fix = format;
1761 c_fix_arg = "#ifndef HUGE_VAL\n%0\n#endif";
1762 c_fix_arg = "^[ \t]*#[ \t]*define[ \t]+HUGE_VAL[ \t].*";
1764 test_text = "# define\tHUGE_VAL 3.4e+40";
1769 * nested comment
1771 fix = {
1772 hackname = nested_auth_des;
1773 files = rpc/rpc.h;
1774 select = '(/\*.*rpc/auth_des\.h>.*)/\*';
1775 c_fix = format;
1776 c_fix_arg = "%1*/ /*";
1777 test_text = "/*#include <rpc/auth_des.h> /* skip this */";
1782 * Fix nested comments in Motorola's <limits.h> and <sys/limits.h>
1784 fix = {
1785 hackname = nested_motorola;
1786 mach = "m68k-motorola-sysv*";
1787 files = sys/limits.h;
1788 files = limits.h;
1789 select = "max # bytes atomic in write|error value returned by Math lib";
1791 sed = "s@^\\(#undef[ \t][ \t]*PIPE_BUF[ \t]*"
1792 "/\\* max # bytes atomic in write to a\\)$@\\1 */@";
1793 sed = "s@\\(/\\*#define\tHUGE_VAL\t3.[0-9e+]* \\)"
1794 "\\(/\\*error value returned by Math lib\\*/\\)$@\\1*/ \\2@";
1796 test_text =
1797 "#undef PIPE_BUF /* max # bytes atomic in write to a\n"
1798 "\t\t/* PIPE */\n"
1799 "/*#define\tHUGE_VAL\t3.9e+9 /*error value returned by Math lib*/";
1804 * Fixing nested comments in ISC <sys/limits.h>
1806 fix = {
1807 hackname = nested_sys_limits;
1808 files = sys/limits.h;
1809 select = CHILD_MAX;
1810 sed = "/CHILD_MAX/s,/\\* Max, Max,";
1811 sed = "/OPEN_MAX/s,/\\* Max, Max,";
1812 test_text = "/*\n#define CHILD_MAX 20 /* Max, Max, ... */ /*\n"
1813 "#define OPEN_MAX 20 /* Max, Max, ... */\n";
1817 * fix bogus recursive stdlib.h in NEWS-OS 4.0C
1819 fix = {
1820 hackname = news_os_recursion;
1821 files = stdlib.h;
1822 select = "[ \t]*#include <stdlib\\.h>.*";
1824 c_fix = format;
1825 c_fix_arg = "#ifdef BOGUS_RECURSION\n%0\n#endif";
1826 test_text = "#include <stdlib.h>";
1831 * NeXT 3.2 adds const prefix to some math functions.
1832 * These conflict with the built-in functions.
1834 fix = {
1835 hackname = next_math_prefix;
1836 files = ansi/math.h;
1837 select = "^extern[ \t]+double[ \t]+__const__[ \t]";
1839 c_fix = format;
1840 c_fix_arg = "extern double %1(";
1841 c_fix_arg = "^extern[ \t]+double[ \t]+__const__[ \t]+([a-z]+)\\(";
1843 test_text = "extern\tdouble\t__const__\tmumble();";
1848 * NeXT 3.2 uses the word "template" as a parameter for some
1849 * functions. GCC reports an invalid use of a reserved key word
1850 * with the built-in functions.
1852 fix = {
1853 hackname = next_template;
1854 files = bsd/libc.h;
1855 select = "[ \t]template\\)";
1857 c_fix = format;
1858 c_fix_arg = "(%1)";
1859 c_fix_arg = "\\(([^)]*)[ \t]template\\)";
1860 test_text = "extern mumble( char * template); /* fix */";
1865 * NeXT 3.2 includes the keyword volatile in the abort() and exit()
1866 * function prototypes. That conflicts with the built-in functions.
1868 fix = {
1869 hackname = next_volitile;
1870 files = ansi/stdlib.h;
1871 select = "^extern[ \t]+volatile[ \t]+void[ \t]";
1873 c_fix = format;
1874 c_fix_arg = "extern void %1(";
1875 c_fix_arg = "^extern[ \t]+volatile[ \t]+void[ \t]+(exit|abort)\\(";
1877 test_text = "extern\tvolatile\tvoid\tabort();";
1882 * NeXT 2.0 defines 'int wait(union wait*)', which conflicts with Posix.1.
1883 * Note that version 3 of the NeXT system has wait.h in a different directory,
1884 * so that this code won't do anything. But wait.h in version 3 has a
1885 * conditional, so it doesn't need this fix. So everything is okay.
1887 fix = {
1888 hackname = next_wait_union;
1889 files = sys/wait.h;
1891 select = 'wait\(union wait';
1892 c_fix = format;
1893 c_fix_arg = "wait(void";
1894 test_text = "extern pid_d wait(union wait*);";
1899 * a missing semi-colon at the end of the nodeent structure definition.
1901 fix = {
1902 hackname = nodeent_syntax;
1903 files = netdnet/dnetdb.h;
1904 select = "char[ \t]*\\*na_addr[ \t]*$";
1905 c_fix = format;
1906 c_fix_arg = "%0;";
1907 test_text = "char *na_addr\t";
1912 * sys/lc_core.h on some versions of OSF1/4.x pollutes the namespace by
1913 * defining regex.h related types. This causes libg++ build and usage
1914 * failures. Fixing this correctly requires checking and modifying 3 files.
1916 fix = {
1917 hackname = osf_namespace_a;
1918 files = reg_types.h;
1919 files = sys/lc_core.h;
1920 test = " -r reg_types.h";
1921 test = " -r sys/lc_core.h";
1922 test = " -n \"`grep '} regex_t;' reg_types.h`\"";
1923 test = " -z \"`grep __regex_t regex.h`\"";
1925 c_fix = format;
1926 c_fix_arg = "__%0";
1927 c_fix_arg = "reg(ex|off|match)_t";
1929 test_text = "`touch sys/lc_core.h`"
1930 "typedef struct {\n int stuff, mo_suff;\n} regex_t;\n"
1931 "extern regex_t re;\n"
1932 "extern regoff_t ro;\n"
1933 "extern regmatch_t rm;\n";
1936 fix = {
1937 hackname = osf_namespace_c;
1938 files = regex.h;
1939 test = " -r reg_types.h";
1940 test = " -r sys/lc_core.h";
1941 test = " -n \"`grep '} regex_t;' reg_types.h`\"";
1942 test = " -z \"`grep __regex_t regex.h`\"";
1944 select = "#include <reg_types\.h>.*";
1945 c_fix = format;
1946 c_fix_arg = "%0\n"
1947 "typedef __regex_t\tregex_t;\n"
1948 "typedef __regoff_t\tregoff_t;\n"
1949 "typedef __regmatch_t\tregmatch_t;";
1951 test_text = "#include <reg_types.h>";
1956 * Fix __page_size* declarations in pthread.h AIX 4.1.[34].
1957 * The original ones fail if uninitialized externs are not common.
1958 * This is the default for all ANSI standard C++ compilers.
1960 fix = {
1961 hackname = pthread_page_size;
1962 files = pthread.h;
1963 select = "^int __page_size";
1964 c_fix = format;
1965 c_fix_arg = "extern %0";
1966 test_text = "int __page_size;";
1971 * Fix return type of fread and fwrite on sysV68
1973 fix = {
1974 hackname = read_ret_type;
1975 files = stdio.h;
1976 select = "extern int\t.*, fread\\(\\), fwrite\\(\\)";
1977 c_fix = format;
1978 c_fix_arg = "extern unsigned int fread(), fwrite();\n%1%2";
1979 c_fix_arg = "(extern int\t.*), fread\\(\\), fwrite\\(\\)(.*)";
1981 test_text = "extern int\tfclose(), fflush(), fread(), fwrite(), foo();";
1986 * function class(double x) conflicts with C++ keyword on rs/6000
1988 fix = {
1989 hackname = rs6000_double;
1990 files = math.h;
1991 select = '[^a-zA-Z_]class\(';
1993 c_fix = format;
1994 c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
1995 c_fix_arg = '^.*[^a-zA-Z_]class\(.*';
1997 test_text = "extern int class();";
2002 * Wrong fchmod prototype on RS/6000.
2004 fix = {
2005 hackname = rs6000_fchmod;
2006 files = sys/stat.h;
2007 select = 'fchmod\(char \*';
2008 c_fix = format;
2009 c_fix_arg = "fchmod(int";
2010 test_text = "extern int fchmod(char *, mode_t);";
2015 * parameters conflict with C++ new on rs/6000
2017 fix = {
2018 hackname = rs6000_param;
2019 files = "stdio.h";
2020 files = "unistd.h";
2022 select = 'rename\(const char \*old, const char \*new\)';
2023 c_fix = format;
2024 c_fix_arg = 'rename(const char *_old, const char *_new)';
2026 test_text = 'extern int rename(const char *old, const char *new);';
2031 * The static functions lstat() and fchmod() in <sys/stat.h>
2032 * cause G++ grief since they're not wrapped in "if __cplusplus".
2034 * On SCO OpenServer 5.0.0 through (at least) 5.0.5 <sys/stat.h> contains
2035 * tiny static wrappers that aren't C++ safe.
2037 fix = {
2038 hackname = sco_static_func;
2039 files = sys/stat.h;
2040 mach = "i?86-*-sco3.2*";
2041 select = "^static int";
2043 sed = "/^static int/i\\\n"
2044 "#if __cplusplus\\\n"
2045 "extern \"C\" {\\\n"
2046 "#endif /* __cplusplus */";
2048 sed = "/^}$/a\\\n"
2049 "#if __cplusplus\\\n"
2050 " }\\\n"
2051 "#endif /* __cplusplus */";
2053 test_text =
2054 "#ifdef __STDC__\n"
2055 "static int\tstat(const char *__f, struct stat *__p) {\n"
2056 "\treturn __stat32(__f, __p);\n"
2057 "}\n\n# else /* !__STDC__ */\n"
2059 "static int\tstat(__f, __p)\n"
2060 "\tchar *__f;\n"
2061 "\tstruct stat *__p;\n"
2062 "{\n"
2063 "\treturn __stat32(__f, __p);\n"
2064 "}\n"
2065 "#endif";
2070 * Fix prototype declaration of utime in sys/times.h.
2071 * In 3.2v4.0 the const is missing.
2073 fix = {
2074 hackname = sco_utime;
2075 files = sys/times.h;
2076 mach = "i?86-*-sco3.2v4*";
2078 select = '\(const char \*, struct utimbuf \*\);';
2079 c_fix = format;
2080 c_fix_arg = '(const char *, const struct utimbuf *);';
2082 test_text = "extern int utime(const char *, struct utimbuf *);";
2087 * Sun Solaris defines PTHREAD_MUTEX_INITIALIZER with a trailing
2088 * "0" for the last field of the pthread_mutex_t structure, which is
2089 * of type upad64_t, which itself is typedef'd to int64_t, but with
2090 * __STDC__ defined (e.g. by -ansi) it is a union. So change the
2091 * initializer to "{0}" instead
2093 fix = {
2094 hackname = solaris_mutex_init;
2095 select = '@\(#\)pthread.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
2096 files = pthread.h;
2097 c_fix = format;
2098 c_fix_arg = "#if __STDC__ - 0 == 0 && !defined(_NO_LONGLONG)\n"
2099 "%0\n"
2100 "#else\n"
2101 "%1, {0}}%3\n"
2102 "#endif";
2103 c_fix_arg = "(^#define[ \t]+PTHREAD_(MUTEX|COND)_INITIALIZER[ \t]+{.*)"
2104 ",[ \t]*0}" "(|[ \t].*)$";
2105 test_text =
2106 '#ident "@(#)pthread.h 1.26 98/04/12 SMI"'"\n"
2107 "#define PTHREAD_MUTEX_INITIALIZER\t{{{0},0}, {{{0}}}, 0}\n"
2108 "#define PTHREAD_COND_INITIALIZER\t{{{0}, 0}, 0}\t/* DEFAULTCV */\n"
2109 "#define PTHREAD_RWLOCK_INITIALIZER\t"
2110 "{0, 0, 0, {0, 0, 0}, {0, 0}, {0, 0}}";
2115 * Sony NEWSOS 5.0 does not support the complete ANSI C standard.
2117 #ifdef SONY
2118 fix = {
2119 hackname = sony_ctype;
2120 files = ctype.h;
2121 test = " -x /bin/sony";
2122 test = " ! -z \"`if /bin/sony ; then echo true ; fi`\"";
2123 sed = "s/__ctype/_ctype/g";
2125 #endif
2129 * Sony NEWSOS 5.0 does not support the complete ANSI C standard.
2131 #ifdef SONY
2132 fix = {
2133 hackname = sony_stdio;
2134 files = stdio.h;
2135 test = " -x /bin/sony";
2136 test = " ! -z \"`if /bin/sony ; then echo true ; fi`\"";
2137 sed = "s/__filbuf/_filbuf/g\n"
2138 "s/__flsbuf/_flsbuf/g\n"
2139 "s/__iob/_iob/g";
2141 #endif
2145 * Add a `static' declaration of `getrnge' into <regexp.h>.
2147 * Don't do this if there is already a `static void getrnge' declaration
2148 * present, since this would cause a redeclaration error. Solaris 2.x has
2149 * such a declaration.
2151 #ifdef SVR4
2152 fix = {
2153 hackname = static_getrnge;
2154 files = regexp.h;
2155 bypass = "static void getrnge";
2156 sed = "/^static int[ \t]*size;/c\\\n"
2157 "static int size ;\\\n\\\n"
2158 "static int getrnge ();";
2160 #endif
2164 * a missing semi-colon at the end of the statsswtch structure definition.
2166 fix = {
2167 hackname = statsswtch;
2168 files = rpcsvc/rstat.h;
2169 select = "boottime$";
2170 c_fix = format;
2171 c_fix_arg = "boottime;";
2172 test_text = "struct statswtch {\n int boottime\n};";
2177 * Arrange for stdio.h to use stdarg.h to define __gnuc_va_list.
2178 * On 4BSD-derived systems, stdio.h defers to machine/ansi.h; that's
2179 * OK too.
2181 fix = {
2182 hackname = stdio_stdarg_h;
2183 files = stdio.h;
2184 bypass = "include.*(stdarg\.h|machine/ansi\.h)";
2186 c_fix = wrap;
2188 c_fix_arg = "#define __need___va_list\n#include <stdarg.h>\n";
2190 test_text = "";
2195 * Don't use or define the name va_list in stdio.h.
2196 * This is for ANSI and also to interoperate properly with gcc's varargs.h.
2197 * Note _BSD_VA_LIST_ is dealt with elsewhere.
2199 fix = {
2200 hackname = stdio_va_list;
2201 files = stdio.h;
2202 bypass = '__gnuc_va_list|_BSD_VA_LIST_|__DJ_va_list';
2205 * Use __gnuc_va_list in arg types in place of va_list.
2206 * On 386BSD use __gnuc_va_list instead of _VA_LIST_. We're hoping the
2207 * trailing parentheses and semicolon save all other systems from this.
2208 * Define __not_va_list__ (something harmless and unused)
2209 * instead of va_list.
2210 * Don't claim to have defined va_list.
2212 sed = "s@ va_list @ __gnuc_va_list @\n"
2213 "s@ va_list)@ __gnuc_va_list)@\n"
2214 "s@ _VA_LIST_));@ __gnuc_va_list));@\n"
2215 "s@ va_list@ __not_va_list__@\n"
2216 "s@\\*va_list@*__not_va_list__@\n"
2217 "s@ __va_list)@ __gnuc_va_list)@\n"
2218 "s@typedef[ \t]\\(.*\\)[ \t]va_list[ \t]*;"
2219 "@typedef \\1 __not_va_list__;@\n"
2220 "s@GNUC_VA_LIST@GNUC_Va_LIST@\n"
2221 "s@_NEED___VA_LIST@_NEED___Va_LIST@\n"
2222 "s@VA_LIST@DUMMY_VA_LIST@\n"
2223 "s@_Va_LIST@_VA_LIST@";
2224 test_text = "extern void mumble( va_list);";
2229 * "!__STDC__" or "__STDC__==0" or "__STDC__!=1" or "__STDC__-0==0"
2230 * is "!defined( __STRICT_ANSI__ )"
2232 fix = {
2233 hackname = strict_ansi_not;
2234 select = "^([ \t]*#[ \t]*if.*)"
2235 "(!__STDC__"
2236 "|__STDC__[ \t]*==[ \t]*0"
2237 "|__STDC__[ \t]*!=[ \t]*1"
2238 "|__STDC__[ \t]*-[ \t]*0[ \t]*==[ \t]*0"
2239 ")(.*)";
2240 c_test = stdc_0_in_system_headers;
2242 c_fix = format;
2243 c_fix_arg = "%1 !defined(__STRICT_ANSI__)%3";
2245 test_text = "#if !__STDC__ \n"
2246 "#if __STDC__ == 0\n"
2247 "#if __STDC__ != 1\n"
2248 "#if __STDC__ - 0 == 0"
2249 "/* not std C */\nint foo;\n"
2250 "\n#end-end-end-end-if :-)";
2254 * "__STDC__-0==0"
2255 * is "!defined( __STRICT_ANSI__ )" on continued #if-s
2257 fix = {
2258 hackname = strict_ansi_not_ctd;
2259 files = math.h, limits.h, stdio.h, signal.h, stdlib.h, time.h;
2260 select = "^([ \t]*[|&][|&][ \t(]*)"
2261 "(__STDC__[ \t]*-[ \t]*0[ \t]*==[ \t]*0"
2262 ")(.*)";
2263 c_test = stdc_0_in_system_headers;
2265 c_fix = format;
2266 c_fix_arg = "%1 !defined(__STRICT_ANSI__)%3";
2268 test_text = "#if 1\\\n"
2269 "|| __STDC__ - 0 == 0 /* not std C */\nint foo;\n#endif";
2273 * "__STDC__!=0" or "__STDC__==1" or "__STDC__-0==1"
2274 * is "defined( __STRICT_ANSI__ )"
2276 fix = {
2277 hackname = strict_ansi_only;
2278 select = "^([ \t]*#[ \t]*if.*)"
2279 "(__STDC__[ \t]*!=[ \t]*0"
2280 "|__STDC__[ \t]*==[ \t]*1"
2281 "|__STDC__[ \t]*-[ \t]*0[ \t]*==[ \t]*1"
2282 "|__STDC__[ \t]*-[ \t]*0[ \t]*!=[ \t]*0"
2283 ")(.*)";
2284 c_test = stdc_0_in_system_headers;
2286 c_fix = format;
2287 c_fix_arg = "%1 defined(__STRICT_ANSI__)%3";
2289 test_text = "#if __STDC__ == 1 /* is std C\n */\nint foo;\n#endif";
2294 * IRIX 4.0.5 <rpc/xdr.h> uses struct __file_s
2295 * in prototype without previous definition.
2297 fix = {
2298 hackname = struct_file;
2299 files = rpc/xdr.h;
2300 select = '^.*xdrstdio_create.*struct __file_s';
2301 c_fix = format;
2302 c_fix_arg = "struct __file_s;\n%0";
2303 test_text = "extern void xdrstdio_create( struct __file_s* );";
2308 * IRIX 4.0.5 <rpc/auth.h> uses struct sockaddr
2309 * in prototype without previous definition.
2311 fix = {
2312 hackname = struct_sockaddr;
2313 files = rpc/auth.h;
2314 select = "^.*authdes_create.*struct sockaddr";
2315 bypass = "<sys/socket\.h>";
2316 c_fix = format;
2317 c_fix_arg = "struct sockaddr;\n%0";
2318 test_text = "extern AUTH* authdes_create( struct sockaddr* );";
2323 * Apply fix this to all OSs since this problem seems to effect
2324 * more than just SunOS.
2326 fix = {
2327 hackname = sun_auth_proto;
2328 files = rpc/auth.h;
2329 files = rpc/clnt.h;
2330 files = rpc/svc.h;
2331 files = rpc/xdr.h;
2333 * Select those files containing '(*name)()'.
2335 select = '\(\*[a-z][a-z_]*\)\(\)';
2337 c_fix = format;
2338 c_fix_arg = "#ifdef __cplusplus\n%1(...);%2\n"
2339 "#else\n%1();%2\n#endif";
2340 c_fix_arg = '(.*\(\*[a-z][a-z_]*\))\(\);(.*)';
2342 test_text =
2343 "struct auth_t {\n"
2344 " int (*name)(); /* C++ bad */\n"
2345 "};";
2350 * Fix bogus #ifdef on SunOS 4.1.
2352 fix = {
2353 hackname = sun_bogus_ifdef;
2354 files = "hsfs/hsfs_spec.h";
2355 files = "hsfs/iso_spec.h";
2356 select = '#ifdef(.*\|\|.*)';
2357 c_fix = format;
2358 c_fix_arg = "#if%1";
2360 test_text = "#ifdef __i386__ || __vax__ || __sun4c__";
2365 * Fix the CAT macro in SunOS memvar.h.
2367 fix = {
2368 hackname = sun_catmacro;
2369 files = pixrect/memvar.h;
2370 select = "^#define[ \t]+CAT\\(a,b\\).*";
2371 c_fix = format;
2373 c_fix_arg =
2374 "#ifdef __STDC__\n"
2375 "# define CAT(a,b) a##b\n"
2376 "#else\n%0\n#endif";
2378 test_text =
2379 "#define CAT(a,b)\ta/**/b";
2384 * Fix return type of free and {c,m,re}alloc in <malloc.h> on SunOS 4.1.
2385 * Also fix return type of {m,re}alloc in <malloc.h> on sysV68
2387 fix = {
2388 hackname = sun_malloc;
2389 files = malloc.h;
2391 sed = "s/typedef[ \t]char \\*\tmalloc_t/typedef void \\*\tmalloc_t/g";
2392 sed = "s/int[ \t][ \t]*free/void\tfree/g";
2393 sed = "s/char\\([ \t]*\\*[ \t]*malloc\\)/void\\1/g";
2394 sed = "s/char\\([ \t]*\\*[ \t]*realloc\\)/void\\1/g";
2395 sed = "s/char\\([ \t]*\\*[ \t]*calloc\\)/void\\1/g";
2397 test_text =
2398 "typedef char *\tmalloc_t;\n"
2399 "int \tfree();\n"
2400 "char*\tmalloc();\n"
2401 "char*\tcalloc();\n"
2402 "char*\trealloc();";
2407 * Check for yet more missing ';' in struct (in SunOS 4.0.x)
2409 fix = {
2410 hackname = sun_rusers_semi;
2411 files = rpcsvc/rusers.h;
2412 select = "_cnt$";
2413 sed = "/^struct/,/^};/s/_cnt$/_cnt;/";
2414 test_text = "struct mumble\n int _cnt\n};";
2419 * signal.h on SunOS defines signal using (),
2420 * which causes trouble when compiling with g++ -pedantic.
2422 fix = {
2423 hackname = sun_signal;
2424 files = sys/signal.h;
2425 files = signal.h;
2426 select = "^void\t" '\(\*signal\(\)\)\(\);.*';
2428 c_fix = format;
2429 c_fix_arg =
2430 "#ifdef __cplusplus\n"
2431 "void\t(*signal(...))(...);\n"
2432 "#else\n%0\n#endif";
2434 test_text = "void\t(*signal())();";
2439 * math.h on SunOS 4 puts the declaration of matherr before the definition
2440 * of struct exception, so the prototype (added by fixproto) causes havoc.
2442 fix = {
2443 hackname = sunos_matherr_decl;
2444 files = math.h;
2446 /* If matherr has a prototype already, the header needs no fix. */
2447 bypass = 'matherr.*(struct exception|__MATH_EXCEPTION)';
2448 select = matherr;
2450 c_fix = wrap;
2451 c_fix_arg = "struct exception;\n";
2453 test_text = "extern int matherr();";
2458 * Correct the return type for strlen in strings.h in SunOS 4.
2460 fix = {
2461 hackname = sunos_strlen;
2462 files = strings.h;
2463 select = "int[ \t]*strlen\\(\\);(.*)";
2464 c_fix = format;
2465 c_fix_arg = "__SIZE_TYPE__ strlen();%1";
2466 test_text = " int\tstrlen(); /* string length */";
2471 * Solaris math.h and floatingpoint.h define __P without protection,
2472 * which conflicts with the fixproto definition. The fixproto
2473 * definition and the Solaris definition are used the same way.
2475 fix = {
2476 hackname = svr4__p;
2477 files = math.h;
2478 files = floatingpoint.h;
2479 select = "^#define[ \t]+__P.*";
2480 c_fix = format;
2481 c_fix_arg = "#ifndef __P\n%0\n#endif";
2483 test_text = "#define __P(a) a";
2488 * Disable apparent native compiler optimization cruft in SVR4.2 <string.h>
2489 * that is visible to any ANSI compiler using this include. Simply
2490 * delete the lines that #define some string functions to internal forms.
2492 #ifdef SVR4
2493 fix = {
2494 hackname = svr4_disable_opt;
2495 files = string.h;
2496 select = '#define.*__std_hdr_';
2497 sed = '/#define.*__std_hdr_/d';
2499 #endif
2503 * Conditionalize some of <sys/endian.h> on __GNUC__ and __GNUG__.
2504 * On some systems (UnixWare 2, UnixWare 7), the file is byteorder.h
2505 * but we still "hijack" it and redirect it to the GNU byteorder.h..
2507 #ifdef SVR5
2508 fix = {
2509 hackname = svr4_endian;
2510 files = sys/endian.h;
2511 #ifdef LATER
2513 * since we emit our own sys/byteorder.h,
2514 * this fix can never be applied to that file.
2516 files = sys/byteorder.h;
2517 #endif
2518 bypass = '__GNUC__';
2520 sed = "/#\tifdef\t__STDC__/i\\\n"
2521 "# if !defined (__GNUC__) && !defined (__GNUG__)\n";
2523 sed = "/#\t\tinclude\t<sys\\/byteorder.h>/s/\t\t/ /";
2525 sed = "/# include\t<sys\\/byteorder.h>/i\\\n"
2526 "# endif /* !defined (__GNUC__) && !defined (__GNUG__) */\n";
2528 #endif /* SVR5 */
2532 * Remove useless extern keyword from struct forward declarations
2533 * in <sys/stream.h> and <sys/strsubr.h>
2535 #ifdef SVR4
2536 fix = {
2537 hackname = svr4_extern_struct;
2538 files = sys/stream.h;
2539 files = sys/strsubr.h;
2540 select = 'extern struct [a-z_]*;';
2541 sed = 's/extern struct \([a-z][a-z_]*\)/struct \1/';
2543 #endif
2546 * Fix declarations of `ftw' and `nftw' in <ftw.h>. On some/most SVR4
2547 * systems the file <ftw.h> contains extern declarations of these
2548 * functions followed by explicitly `static' definitions of these
2549 * functions... and that's not allowed according to ANSI C. (Note
2550 * however that on Solaris, this header file glitch has been pre-fixed by
2551 * Sun. In the Solaris version of <ftw.h> there are no static
2552 * definitions of any function so we don't need to do any of this stuff
2553 * when on Solaris.
2555 #ifdef SVR4
2556 #ifndef SOLARIS
2557 fix = {
2558 hackname = svr4_ftw;
2559 files = ftw.h;
2560 select = '^extern int ftw\(const';
2562 sed = '/^extern int ftw(const/i' "\\\n"
2563 "#if !defined(_STYPES)\\\n"
2564 "static\\\n"
2565 "#else\\\n"
2566 "extern\\\n"
2567 "#endif";
2568 sed = 's/extern \(int ftw(const.*\)$/\1/';
2569 sed = "/^extern int nftw/i\\\n"
2570 "#if defined(_STYPES)\\\n"
2571 "static\\\n"
2572 "#else\\\n"
2573 "extern\\\n"
2574 "#endif";
2575 sed = 's/extern \(int nftw.*\)$/\1/';
2576 sed = "/^extern int ftw(),/c\\\n"
2577 "#if !defined(_STYPES)\\\n"
2578 "static\\\n"
2579 "#else\\\n"
2580 "extern\\\n"
2581 "#endif\\\n"
2582 " int ftw();\\\n"
2583 "#if defined(_STYPES)\\\n"
2584 "static\\\n"
2585 "#else\\\n"
2586 "extern\\\n"
2587 "#endif\\\n"
2588 " int nftw();";
2590 #endif
2591 #endif
2595 * Fix broken decl of getcwd present on some svr4 systems.
2597 fix = {
2598 hackname = svr4_getcwd;
2599 files = stdlib.h;
2600 files = unistd.h;
2601 files = prototypes.h;
2602 select = 'getcwd\(char \*, int\)';
2604 c_fix = format;
2605 c_fix_arg = "getcwd(char *, size_t)";
2607 test_text = "extern char* getcwd(char *, int);";
2612 * set ifdef _KERNEL
2614 #ifdef SVR4
2615 fix = {
2616 hackname = svr4_kernel;
2617 files = fs/rfs/rf_cache.h;
2618 files = sys/erec.h;
2619 files = sys/err.h;
2620 files = sys/char.h;
2621 files = sys/getpages.h;
2622 files = sys/map.h;
2623 files = sys/cmn_err.h;
2624 files = sys/kdebugger.h;
2625 bypass = '_KERNEL';
2626 c_fix = wrap;
2628 c_fix_arg = "#ifdef _KERNEL\n";
2629 c_fix_arg = "#endif /* _KERNEL */\n";
2630 test_text = "";
2632 #endif
2635 * Delete any #defines of `__i386' which may be present in <ieeefp.h>. They
2636 * tend to conflict with the compiler's own definition of this symbol. (We
2637 * will use the compiler's definition.)
2638 * Likewise __sparc, for Solaris, and __i860, and a few others
2639 * (guessing it is necessary for all of them).
2641 #ifdef SVR4
2642 fix = {
2643 hackname = svr4_mach_defines;
2644 files = ieeefp.h;
2645 select = "#define[ \t]*__(i386|i860|mips|sparc|m88k|m68k)[ \t]";
2646 sed = "/#define[ \t]*__\\(i386|i860|mips|sparc|m88k|m68k\\)[ \t]/d";
2648 #endif
2652 * Fix declarations of `makedev', `major', and `minor' in <sys/mkdev.h>.
2653 * They are declared as non-static then immediately redeclared as static.
2655 #ifdef SVR5
2656 fix = {
2657 hackname = svr4_mkdev;
2658 files = sys/mkdev.h;
2659 select = '^static';
2661 sed = "/^dev_t makedev(/s/^/static /";
2662 sed = "/^major_t major(/s/^/static /";
2663 sed = "/^minor_t minor(/s/^/static /";
2665 #endif /* SVR5 */
2669 * Fix reference to NC_NPI_RAW in <sys/netcspace.h>.
2670 * Also fix types of array initializers.
2672 #ifdef SVR4
2673 fix = {
2674 hackname = svr4_netcspace;
2675 files = sys/netcspace.h;
2676 select = 'NC_NPI_RAW';
2677 sed = 's/NC_NPI_RAW/NC_TPI_RAW/g';
2678 sed = 's/NC_/(unsigned long) NC_/';
2680 #endif
2683 * Fix reference to NMSZ in <sys/adv.h>.
2685 #ifdef SVR4
2686 fix = {
2687 hackname = svr4_nmsz;
2688 files = sys/adv.h;
2689 select = '\[NMSZ\]';
2690 sed = 's/\[NMSZ\]/\[RFS_NMSZ\]/g';
2692 #endif
2696 * Fix broken decl of profil present on some svr4 systems.
2698 fix = {
2699 hackname = svr4_profil;
2700 files = stdlib.h;
2701 files = unistd.h;
2703 select =
2704 'profil\(unsigned short \*, unsigned int, unsigned int, unsigned int\)';
2705 c_fix = format;
2706 c_fix_arg = 'profil(unsigned short *, size_t, int, unsigned int)';
2708 test_text =
2709 'profil(unsigned short *, unsigned int, unsigned int, unsigned int);';
2714 * Convert functions to prototype form, and fix arg names in <sys/stat.h>.
2716 #ifdef SVR4
2717 fix = {
2718 hackname = svr4_proto_form;
2719 files = sys/stat.h;
2720 select = 'const extern';
2722 sed = "/^stat([ \t]*[^c]/ {\nN\nN\n"
2723 "s/(.*)\\n/( /\n"
2724 "s/;\\n/, /\n"
2725 "s/;$/)/\n" "}";
2727 sed = "/^lstat([ \t]*[^c]/ {\nN\nN\n"
2728 "s/(.*)\\n/( /\n"
2729 "s/;\\n/, /\n"
2730 "s/;$/)/\n" "}";
2732 sed = "/^fstat([ \t]*[^i]/ {\nN\nN\n"
2733 "s/(.*)\\n/( /\n"
2734 "s/;\\n/, /\n"
2735 "s/;$/)/\n" "}";
2737 sed = "/^mknod([ \t]*[^c]/{\nN\nN\nN\n"
2738 "s/(.*)\\n/( /\n"
2739 "s/;\\n/, /g\n"
2740 "s/;$/)/\n" "}";
2742 sed = "1,$s/\\([^A-Za-z]\\)path\\([^A-Za-z]\\)/\\1__path\\2/g";
2743 sed = "1,$s/\\([^A-Za-z]\\)buf\\([^A-Za-z]\\)/\\1__buf\\2/g";
2744 sed = "1,$s/\\([^A-Za-z]\\)fd\\([^A-Za-z]\\)/\\1__fd\\2/g";
2745 sed = "1,$s/ret\\([^u]\\)/__ret\\1/g";
2746 sed = "1,$s/\\([^_]\\)mode\\([^_]\\)/\\1__mode\\2/g";
2747 sed = "1,$s/\\([^_r]\\)dev\\([^_]\\)/\\1__dev\\2/g";
2749 #endif
2752 * Add a prototyped declaration of mmap to <sys/mman.h>.
2754 #ifdef SVR4
2755 fix = {
2756 hackname = svr4_proto_mmap;
2757 files = sys/mman.h;
2758 select = '^extern caddr_t mmap();$';
2759 sed = '/^extern caddr_t mmap();$/c' "\\\n"
2760 "#ifdef __STDC__\\\n"
2761 "extern caddr_t mmap (caddr_t, size_t, int, int, int, off_t);\\\n"
2762 "#else /* !defined(__STDC__) */\\\n"
2763 "extern caddr_t mmap ();\\\n"
2764 "#endif /* !defined(__STDC__) */\\\n";
2766 #endif
2769 * Add a #define of _SIGACTION_ into <sys/signal.h>.
2771 #ifdef SVR4
2772 fix = {
2773 hackname = svr4_sigaction;
2774 files = sys/signal.h;
2775 sed = "/^struct sigaction {/i\\\n"
2776 "#define _SIGACTION_";
2777 sed = 's/(void *(\*)())/(void (*)(int))/';
2779 #endif
2782 * Put storage class at start of decl, to avoid warning.
2784 #ifdef SVR4
2785 fix = {
2786 hackname = svr4_storage_class;
2787 files = rpc/types.h;
2788 select = 'const extern';
2789 sed = 's/const extern/extern const/g';
2791 #endif
2795 * Like svr4_mach_defines, but with newfangled syntax.
2796 * Source lines are of #define __i386 #machine(i386). Delete them.
2798 #ifdef SVR5
2799 fix = {
2800 hackname = svr5_mach_defines;
2801 files = ieeefp.h;
2802 select = "#define[ \t]*__i386.*\(i386\)";
2803 sed = "/#define[ \t]*__i386.*/d";
2805 #endif /* SVR5 */
2809 * Fix return value of mem{ccpy,chr,cpy,set} and str{len,spn,cspn}
2810 * in string.h on sysV68
2811 * Correct the return type for strlen in string.h on Lynx.
2812 * Correct the argument type for ffs in string.h on Alpha OSF/1 V2.0.
2813 * Add missing const for strdup on OSF/1 V3.0.
2814 * On sysV88 layout is slightly different.
2816 fix = {
2817 hackname = sysv68_string;
2818 files = testing.h;
2819 files = string.h;
2821 sed = "s/extern[ \t]*int[ \t]*strlen();/extern unsigned int strlen();/";
2822 sed = "s/extern[ \t]*int[ \t]*ffs[ \t]*(long);/extern int ffs(int);/";
2823 sed = "s/strdup(char \\*s1);/strdup(const char *s1);/";
2825 sed = "/^extern char$/N";
2826 sed = "s/^extern char\\(\\n\t\\*memccpy(),\\)$/extern void\\1/";
2828 sed = "/^extern int$/N";
2829 sed = "s/^extern int\\(\\n\tstrlen(),\\)/extern size_t\\1/";
2831 sed = "/^\tstrncmp(),$/N";
2832 sed = 's/^\(' "\t" 'strncmp()\),\n\(' "\t" 'strlen(),\)$/'
2833 '\1;' "\\\nextern unsigned int\\\n\\2/";
2835 test_text =
2836 "extern int strlen();\n"
2838 "extern int ffs(long);\n"
2840 "extern char\n"
2841 "\t*memccpy(),\n"
2842 "\tmemcpy();\n"
2844 "extern int\n"
2845 "\tstrcmp(),\n"
2846 "\tstrncmp(),\n"
2847 "\tstrlen(),\n"
2848 "\tstrspn();\n"
2850 "extern int\n"
2851 "\tstrlen(), strspn();";
2856 * Fix return type of calloc, malloc, realloc, bsearch and exit
2858 fix = {
2859 hackname = sysz_stdlib_for_sun;
2860 files = stdlib.h;
2862 select = "char[ \t]*\\*[ \t]*(calloc|malloc|realloc|bsearch)[ \t]*\\(";
2863 c_fix = format;
2864 c_fix_arg = "void *\t%1(";
2866 test_text =
2867 "extern char*\tcalloc(size_t);\n"
2868 "extern char*\tmalloc(size_t);\n"
2869 "extern char*\trealloc(void*,size_t);\n"
2870 "extern char*\tbsearch(void*,size_t,size_t);\n";
2875 * if the #if says _cplusplus, not the double underscore __cplusplus
2876 * that it should be
2878 fix = {
2879 hackname = tinfo_cplusplus;
2880 files = tinfo.h;
2881 select = "[ \t]_cplusplus";
2883 c_fix = format;
2884 c_fix_arg = " __cplusplus";
2885 test_text = "#ifdef _cplusplus\nint bogus;\n#endif";
2890 * function parameter to atexit is missing "void" on VAX Ultrix 4.3.
2892 fix = {
2893 hackname = ultrix_atexit_param;
2894 files = stdlib.h;
2895 select = 'atexit\(.*\(\)';
2897 c_fix = format;
2898 c_fix_arg = "atexit( void (*__func)( void )";
2900 test_text = "int atexit( void (*__func)() );\n";
2905 * parameter to atof not const on DECstation Ultrix V4.0 and NEWS-OS 4.2R.
2907 fix = {
2908 hackname = ultrix_atof_param;
2909 files = math.h;
2910 select = "atof\\([ \t]*char";
2912 c_fix = format;
2913 c_fix_arg = "atof(const char";
2915 test_text = "extern double atof( char *__nptr);\n";
2920 * parameters not const on DECstation Ultrix V4.0 and OSF/1.
2922 fix = {
2923 hackname = ultrix_const;
2924 files = stdio.h;
2925 select = 'perror\( char \*';
2927 c_fix = format;
2928 c_fix_arg = "%1 const %3 *__";
2929 c_fix_arg = "([ \t*](perror|fputs|fwrite|scanf|fscanf)\\(.*)"
2930 "[ \t]+(char|void) \\*__";
2932 test_text =
2933 "extern void perror( char *__s );\n"
2934 "extern int fputs( char *__s, FILE *);\n"
2935 "extern size_t fwrite( void *__ptr, size_t, size_t, FILE *);\n"
2936 "extern int fscanf( FILE *__stream, char *__format, ...);\n"
2937 "extern int scanf( char *__format, ...);\n";
2942 * parameters not const on DECstation Ultrix V4.0 and OSF/1.
2944 fix = {
2945 hackname = ultrix_const2;
2946 files = stdio.h;
2948 select = '\*fopen\( char \*';
2949 c_fix = format;
2950 c_fix_arg = "%1( const char *%3, const char *";
2951 c_fix_arg = "([ \t*](fopen|sscanf|popen|tempnam))\\("
2952 "[ \t]*char[ \t]*\\*([^,]*),"
2953 "[ \t]*char[ \t]*\\*[ \t]*";
2955 test_text =
2956 "extern FILE *fopen( char *__filename, char *__type );\n"
2957 "extern int sscanf( char *__s, char *__format, ...);\n"
2958 "extern FILE *popen(char *, char *);\n"
2959 "extern char *tempnam(char*,char*);\n";
2964 * Ultrix V4.[35] puts the declaration of uname before the definition
2965 * of struct utsname, so the prototype (added by fixproto) causes havoc.
2967 fix = {
2968 hackname = ultrix_fix_fixproto;
2969 files = sys/utsname.h;
2970 select = ULTRIX;
2972 c_fix = format;
2973 c_fix_arg = "struct utsname;\n%0";
2974 c_fix_arg = "^[ \t]*extern[ \t]*int[ \t]*uname\\(\\);";
2976 test_text =
2977 "/* ULTRIX's uname */\nextern\tint\tuname();";
2982 * Check for bad #ifdef line (in Ultrix 4.1)
2984 fix = {
2985 hackname = ultrix_ifdef;
2986 select = "^#ifdef KERNEL[ \t]+&&";
2987 files = sys/file.h;
2989 c_fix = format;
2990 c_fix_arg = "#if defined(KERNEL) &&";
2992 test_text =
2993 "#ifdef KERNEL\t&& defined( mumbojumbo )\nint oops;\n#endif";
2998 * Strip "|| CC$gfloat" from Ultrix math headers.
3000 fix = {
3001 hackname = ultrix_math_ifdef;
3002 files = sys/limits.h;
3003 files = float.h;
3004 files = math.h;
3005 select = "^(#if.*)\\|\\|[ \t]+CC\\$[a-z]+";
3006 c_fix = format;
3007 c_fix_arg = "%1";
3009 test_text = '#if defined(__GFLOAT) || CC\$gfloat';
3014 * Avoid nested comments on Ultrix 4.3.
3016 fix = {
3017 hackname = ultrix_nested_ioctl;
3018 files = sys/ioctl.h;
3019 select = "^/\\* #define SIOCSCREEN";
3020 sed = "/^\\/\\* #define SIOCSCREEN/s@/\\* screend@*//* screend@";
3021 test_text =
3022 "/* #define SIOCSCREENON _IOWR('i', 49, int)"
3023 "/* screend, net/gw_screen.h */\n";
3027 fix = {
3028 hackname = ultrix_nested_svc;
3029 files = rpc/svc.h;
3030 select = "^ \\*[ \t]*int protocol; */\\*";
3031 sed = "s@^\\( \\*\tint protocol; \\)/\\*@\\1*/ /*@";
3032 test_text =
3033 " *\tint protocol; /* like TCP or UDP\n";
3038 * Add missing prototype for lstat and define for S_ISLNK
3039 * in Ultrix V4.3 sys/stat.h.
3041 fix = {
3042 hackname = ultrix_stat;
3043 files = sys/stat.h;
3044 select = "@\\(#\\)stat\\.h.*6\\.1.*\\(ULTRIX\\)";
3045 sed = "/^#define[ \t]S_IFPORT[ \t]*S_IFIFO$/a\\\n"
3046 "\\\n"
3047 "/* macro to test for symbolic link */\\\n"
3048 "#define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)\\\n"
3049 "\n";
3050 sed = "/^[ \t]*fstat(),$/a\\\n"
3051 "\tlstat(),\n";
3052 test_text =
3053 "@(#)stat.h 6.1 (ULTRIX)\n"
3054 "#define S_IFPORT S_IFIFO\n"
3055 "\tfstat(),\n";
3060 * Check for superfluous `static' (in Ultrix 4.2)
3061 * On Ultrix 4.3, includes of other files (r3_cpu.h,r4_cpu.h) is broken.
3063 fix = {
3064 hackname = ultrix_static;
3065 files = machine/cpu.h;
3066 select = '#include "r[34]_cpu';
3067 sed = "s/^static struct tlb_pid_state/struct tlb_pid_state/";
3068 sed = 's/^#include "r3_cpu\.h"$/#include <machine\/r3_cpu\.h>/';
3069 sed = 's/^#include "r4_cpu\.h"$/#include <machine\/r4_cpu\.h>/';
3070 test_text =
3071 "static struct tlb_pid_state {\n"
3072 "#include \"r3_cpu.h\"\n";
3077 * Add once-only latch to Ultrix V4.3 strings.h.
3079 fix = {
3080 hackname = ultrix_strings;
3081 files = strings.h;
3082 select = "@\\(#\\)strings\\.h.*6\\.1.*\\(ULTRIX\\)";
3083 c_fix = wrap;
3084 test_text =
3085 "@(#)strings.h 6.1 (ULTRIX)\n";
3090 * Fix multiple defines for NULL. Sometimes, we stumble into \r\n
3091 * terminated lines, so accommodate these. Test both ways.
3093 fix = {
3094 hackname = undefine_null;
3095 select = "^#[ \t]*define[ \t]+NULL[ \t]";
3096 bypass = "#[ \t]*(ifn|un)def[ \t]+NULL($|[ \t\r])";
3098 c_fix = format;
3099 c_fix_arg = "#ifndef NULL%2\n#define NULL%1%2\n#endif%2\n";
3100 c_fix_arg = "^#[ \t]*define[ \t]*[ \t]NULL([^\r\n]+)([\r]*)\n";
3102 test_text = "#define NULL 0UL\r\n#define NULL\t((void*)0)\n";
3107 * If arpa/inet.h prototypes are incompatible with the ones we just
3108 * installed in <sys/byteorder.h>, just remove the protos.
3109 * Because of this close association, this patch must be applied only
3110 * on those systems where the replacement byteorder header is installed.
3112 fix = {
3113 hackname = uw7_byteorder_fix;
3114 files = arpa/inet.h;
3115 select = "in_port_t";
3116 test = "-f sys/byteorder.h";
3117 #ifndef SVR5
3118 mach = "*-*-sysv4*";
3119 mach = "i?86-*-sysv5*";
3120 mach = "i?86-*-udk*";
3121 mach = "i?86-*-solaris2.[0-4]";
3122 mach = "powerpcle-*-solaris2.[0-4]";
3123 mach = "sparc-*-solaris2.[0-4]";
3124 #endif /* SVR5 */
3126 c_fix = format;
3127 c_fix_arg = "";
3128 c_fix_arg = "^extern.*[ \t](htons|ntohs).*\\(in_port_t\\).*;";
3130 test_text = "extern in_port_t\thtons __P((in_port_t));\n"
3131 "extern in_port_t\tntohs __P((in_port_t));"
3132 "`[ ! -d $DESTDIR/sys ] && mkdir $DESTDIR/sys\n"
3133 "echo '/* DUMMY */' >> sys/byteorder.h`";
3138 * Fix definitions of macros used by va-i960.h in VxWorks header file.
3140 fix = {
3141 hackname = va_i960_macro;
3142 files = arch/i960/archI960.h;
3143 select = "__(vsiz|vali|vpad|alignof__)";
3145 c_fix = format;
3146 c_fix_arg = "__vx%1";
3148 test_text =
3149 "extern int __vsiz vsiz;\n"
3150 "extern int __vali vali;\n"
3151 "extern int __vpad vpad;\n"
3152 "#define __alignof__(x) ...";
3157 * AIX headers define NULL to be cast to a void pointer,
3158 * which is illegal in ANSI C++.
3160 fix = {
3161 hackname = void_null;
3162 files = curses.h;
3163 files = dbm.h;
3164 files = locale.h;
3165 files = stdio.h;
3166 files = stdlib.h;
3167 files = string.h;
3168 files = time.h;
3169 files = unistd.h;
3170 files = sys/dir.h;
3171 files = sys/param.h;
3172 files = sys/types.h;
3173 select = "^#[ \t]*define[ \t]+NULL[ \t]+\\(\\(void[ \t]*\\*\\)0\\)";
3174 c_fix = format;
3175 c_fix_arg = "#define NULL 0";
3176 test_text = "# define\tNULL \t((void *)0) /* typed NULL */";
3181 * Make VxWorks header which is almost gcc ready fully gcc ready.
3183 fix = {
3184 hackname = vxworks_gcc_problem;
3185 files = types/vxTypesBase.h;
3186 select = "__GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__";
3188 sed = "s/#ifdef __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__/"
3189 "#if 1/";
3191 sed = "/[ \t]size_t/i\\\n"
3192 "#ifndef _GCC_SIZE_T\\\n"
3193 "#define _GCC_SIZE_T\n";
3195 sed = "/[ \t]size_t/a\\\n"
3196 "#endif\n";
3198 sed = "/[ \t]ptrdiff_t/i\\\n"
3199 "#ifndef _GCC_PTRDIFF_T\\\n"
3200 "#define _GCC_PTRDIFF_T\n";
3202 sed = "/[ \t]ptrdiff_t/a\\\n"
3203 "#endif\n";
3205 sed = "/[ \t]wchar_t/i\\\n"
3206 "#ifndef _GCC_WCHAR_T\\\n"
3207 "#define _GCC_WCHAR_T\n";
3209 sed = "/[ \t]wchar_t/a\\\n"
3210 "#endif\n";
3212 test_text =
3213 "#ifdef __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__\n"
3214 "typedef unsigned int size_t;\n"
3215 "typedef long ptrdiff_t;\n"
3216 "typedef unsigned short wchar_t;\n"
3217 "#endif /* __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__ */\n";
3222 * Fix VxWorks <time.h> to not require including <vxTypes.h>.
3224 fix = {
3225 hackname = vxworks_needs_vxtypes;
3226 files = time.h;
3227 select = "uint_t([ \t]+_clocks_per_sec)";
3228 c_fix = format;
3229 c_fix_arg = "unsigned int%1";
3230 test_text = "uint_t\t_clocks_per_sec;";
3235 * Fix VxWorks <sys/stat.h> to not require including <vxWorks.h>.
3237 fix = {
3238 hackname = vxworks_needs_vxworks;
3239 files = sys/stat.h;
3240 test = " -r types/vxTypesOld.h";
3241 test = " -n \"`egrep '#include' $file`\"";
3242 test = " -n \"`egrep ULONG $file`\"";
3243 select = "#[ \t]define[ \t]+__INCstath";
3245 sed = "/#[ \t]define[ \t][ \t]*__INCstath/a\\\n"
3246 "#include <types/vxTypesOld.h>\n";
3248 test_text = "`touch types/vxTypesOld.h`"
3249 "#include </dev/null> /* ULONG */\n"
3250 "# define\t__INCstath <sys/stat.h>";
3255 * Another bad dependency in VxWorks 5.2 <time.h>.
3257 fix = {
3258 hackname = vxworks_time;
3259 files = time.h;
3260 test = " -r vxWorks.h";
3262 select = "#[ \t]*define[ \t]+VOIDFUNCPTR[ \t].*";
3263 c_fix = format;
3265 c_fix_arg =
3266 "#ifndef __gcc_VOIDFUNCPTR_defined\n"
3267 "#ifdef __cplusplus\n"
3268 "typedef void (*__gcc_VOIDFUNCPTR) (...);\n"
3269 "#else\n"
3270 "typedef void (*__gcc_VOIDFUNCPTR) ();\n"
3271 "#endif\n"
3272 "#define __gcc_VOIDFUNCPTR_defined\n"
3273 "#endif\n"
3274 "#define VOIDFUNCPTR __gcc_VOIDFUNCPTR";
3276 test_text = "`touch vxWorks.h`"
3277 "#define VOIDFUNCPTR (void(*)())";
3282 * There are several name conflicts with C++ reserved words in X11 header
3283 * files. These are fixed in some versions, so don't do the fixes if
3284 * we find __cplusplus in the file. These were found on the RS/6000.
3286 fix = {
3287 hackname = x11_class;
3288 files = X11/ShellP.h;
3289 bypass = __cplusplus;
3290 select = "^([ \t]*char \\*)class;(.*)";
3291 c_fix = format;
3292 c_fix_arg = "#ifdef __cplusplus\n%1c_class;%2\n"
3293 "#else\n%1class;%2\n#endif";
3294 test_text =
3295 "struct {\n"
3296 " char *class;\n"
3297 "} mumble;\n";
3302 * class in Xm/BaseClassI.h
3304 fix = {
3305 hackname = x11_class_usage;
3306 files = Xm/BaseClassI.h;
3307 bypass = "__cplusplus";
3309 select = " class\\)";
3310 c_fix = format;
3311 c_fix_arg = " c_class)";
3313 test_text = "extern mumble (int class);\n";
3318 * new in Xm/Traversal.h
3320 fix = {
3321 hackname = x11_new;
3322 files = Xm/Traversal.h;
3323 bypass = __cplusplus;
3325 sed = "/Widget\told, new;/i\\\n"
3326 "#ifdef __cplusplus\\\n"
3327 "\tWidget\told, c_new;\\\n"
3328 "#else\n";
3330 sed = "/Widget\told, new;/a\\\n"
3331 "#endif\n";
3333 sed = "s/Widget new,/Widget c_new,/g";
3334 test_text =
3335 "struct wedge {\n"
3336 " Widget\told, new; /* fix the new */\n"
3337 "};\nextern Wedged( Widget new, Widget old );";
3342 * Incorrect sprintf declaration in X11/Xmu.h
3344 fix = {
3345 hackname = x11_sprintf;
3346 files = X11/Xmu.h;
3347 files = X11/Xmu/Xmu.h;
3348 select = "^extern char \\*\tsprintf\\(\\);$";
3350 c_fix = format;
3351 c_fix_arg = "#ifndef __STDC__\n%0\n#endif /* !defined __STDC__ */";
3353 test_text = "extern char *\tsprintf();";
3356 /*EOF*/