re PR target/5996 (libstdc++ (FILE related) sparc-sun-solaris2.8 bootstrap failure)
[gcc.git] / gcc / fixinc / inclhack.def
1
2 /* -*- Mode: C -*- */
3
4 autogen definitions fixincl;
5
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.
8
9 This is the sort command:
10
11 blocksort output=XXX \
12 pattern='^/\*$' \
13 start='== REPLACEMENT FIXES ==' \
14 trailer='^/\*EOF\*[/]' \
15 input=inclhack.def \
16 key='hackname[ ]*=[ ]*(.*);'
17
18 Set up a debug test so we can make the templates emit special
19 code while debugging these fixes: */
20
21 #ifdef DEBUG
22 FIXINC_DEBUG = yes;
23 #endif
24
25 /* == REPLACEMENT FIXES == */
26
27 /*
28 * Completely replace <_int_varargs.h> with a file that includes gcc's
29 * stdarg.h or varargs.h files as appropriate on DG/UX
30 */
31 fix = {
32 hackname = AAB_dgux_int_varargs;
33 files = _int_varargs.h;
34 replace = <<- _EOF_
35 #ifndef __INT_VARARGS_H
36 #define __INT_VARARGS_H
37
38 /********************************************************/
39 /* Define the common stuff for varargs/stdarg/stdio. */
40 /********************************************************/
41
42 /*
43 ** This file is a DG internal header. Never include this
44 ** file directly.
45 */
46
47 #ifndef ___int_features_h
48 #include <sys/_int_features.h>
49 #endif
50
51 #if !(defined(_VA_LIST) || defined(_VA_LIST_))
52 #define _VA_LIST
53 #define _VA_LIST_
54
55 #ifdef __LINT__
56
57 #ifdef __STDC__
58 typedef void * va_list;
59 #else
60 typedef char * va_list;
61 #endif
62
63 #else
64 #if _M88K_ANY
65
66 #if defined(__DCC__)
67
68 typedef struct {
69 int next_arg;
70 int *mem_ptr;
71 int *reg_ptr;
72 } va_list;
73
74 #else /* ! defined(__DCC__) */
75
76 typedef struct {
77 int __va_arg; /* argument number */
78 int *__va_stk; /* start of args passed on stack */
79 int *__va_reg; /* start of args passed in regs */
80 } va_list;
81
82 #endif /* ! defined(__DCC__) */
83
84 #elif _IX86_ANY
85
86 #if defined(__GNUC__) || defined(__STDC__)
87 typedef void * va_list;
88 #else
89 typedef char * va_list;
90 #endif
91
92 #endif /* _IX86_ANY */
93
94 #endif /* __LINT__ */
95 #endif /* !(defined(_VA_LIST) || defined(_VA_LIST_)) */
96 #endif /* #ifndef __INT_VARARGS_H */
97 _EOF_;
98 };
99
100
101 /*
102 * This fixes __FD_ZERO bug for linux 2.x.y (x <= 2 && y <= some n)
103 */
104 fix = {
105 hackname = AAB_fd_zero_asm_posix_types_h;
106 files = asm/posix_types.h;
107 mach = 'i[34567]86-*-linux*';
108 bypass = '} while';
109
110 /*
111 * Define _POSIX_TYPES_H_WRAPPER at the end of the wrapper, not
112 * the start, so that if #include_next gets another instance of
113 * the wrapper, this will follow the #include_next chain until
114 * we arrive at the real <asm/posix_types.h>.
115 */
116 replace = <<- _EOF_
117 /* This file fixes a bug in the __FD_ZERO macro
118 for older versions of the Linux kernel. */
119 #ifndef _POSIX_TYPES_H_WRAPPER
120 #include <features.h>
121 #include_next <asm/posix_types.h>
122
123 #if defined(__FD_ZERO) && !defined(__GLIBC__)
124 #undef __FD_ZERO
125 #define __FD_ZERO(fdsetp) \
126 do { \
127 int __d0, __d1; \
128 __asm__ __volatile__("cld ; rep ; stosl" \
129 : "=&c" (__d0), "=&D" (__d1) \
130 : "a" (0), "0" (__FDSET_LONGS), \
131 "1" ((__kernel_fd_set *) (fdsetp)) :"memory"); \
132 } while (0)
133 #endif
134
135 #define _POSIX_TYPES_H_WRAPPER
136 #endif /* _POSIX_TYPES_H_WRAPPER */
137 _EOF_;
138 };
139
140
141 /*
142 * This fixes __FD_ZERO bug for glibc-1.x
143 */
144 fix = {
145 hackname = AAB_fd_zero_gnu_types_h;
146 files = gnu/types.h;
147 mach = 'i[34567]86-*-linux*';
148
149 /*
150 * Define _TYPES_H_WRAPPER at the end of the wrapper, not
151 * the start, so that if #include_next gets another instance of
152 * the wrapper, this will follow the #include_next chain until
153 * we arrive at the real <gnu/types.h>.
154 */
155 replace =
156
157 '/* This file fixes a bug in the __FD_ZERO macro present in glibc 1.x. */
158 \#ifndef _TYPES_H_WRAPPER
159 \#include <features.h>
160 \#include_next <gnu/types.h>
161
162 \#if defined(__FD_ZERO) && !defined(__GLIBC__)
163 \#undef __FD_ZERO
164 \# define __FD_ZERO(fdsetp) \\
165 do { \\
166 int __d0, __d1; \\
167 __asm__ __volatile__("cld ; rep ; stosl" \\
168 : "=&c" (__d0), "=&D" (__d1) \\
169 : "a" (0), "0" (__FDSET_LONGS), \\
170 "1" ((__fd_set *) (fdsetp)) :"memory"); \\
171 } while (0)
172 \#endif
173
174 \#define _TYPES_H_WRAPPER
175 \#endif /* _TYPES_H_WRAPPER */
176 ';
177 };
178
179
180 /*
181 * This fixes __FD_ZERO bug for glibc-2.0.x
182 */
183 fix = {
184 hackname = AAB_fd_zero_selectbits_h;
185 files = selectbits.h;
186 mach = 'i[34567]86-*-linux*';
187
188 /*
189 * Define _SELECTBITS_H_WRAPPER at the end of the wrapper, not
190 * the start, so that if #include_next gets another instance of
191 * the wrapper, this will follow the #include_next chain until
192 * we arrive at the real <selectbits.h>.
193 */
194 replace =
195
196 '/* This file fixes a bug in the __FD_ZERO macro present in glibc 2.0.x. */
197 \#ifndef _SELECTBITS_H_WRAPPER
198 \#include <features.h>
199 \#include_next <selectbits.h>
200
201 \#if defined(__FD_ZERO) && defined(__GLIBC__) \\
202 && defined(__GLIBC_MINOR__) && __GLIBC__ == 2 \\
203 && __GLIBC_MINOR__ == 0
204 \#undef __FD_ZERO
205 \#define __FD_ZERO(fdsetp) \\
206 do { \\
207 int __d0, __d1; \\
208 __asm__ __volatile__ ("cld; rep; stosl" \\
209 : "=&c" (__d0), "=&D" (__d1) \\
210 : "a" (0), "0" (sizeof (__fd_set) \\
211 / sizeof (__fd_mask)), \\
212 "1" ((__fd_mask *) (fdsetp)) \\
213 : "memory"); \\
214 } while (0)
215 \#endif
216
217 \#define _SELECTBITS_H_WRAPPER
218 \#endif /* _SELECTBITS_H_WRAPPER */
219 ';
220 };
221
222
223 /*
224 * Fix non-ANSI memcpy declaration that conflicts with gcc's builtin
225 * declaration on Sun OS 4.x. We must only fix this on Sun OS 4.x, because
226 * many other systems have similar text but correct versions of the file.
227 * To ensure only Sun's is fixed, we grep for a likely unique string.
228 * Fix also on sysV68 R3V7.1 (head/memory.h\t50.1\t )
229 */
230 fix = {
231 hackname = AAB_sun_memcpy;
232 files = memory.h;
233 select = "/\\*\t@\\(#\\)"
234 "(head/memory.h\t50.1\t "
235 "|memory\\.h 1\\.[2-4] 8./../.. SMI; from S5R2 1\\.2\t)\\*/";
236
237 replace =
238 '/* This file was generated by fixincludes */
239 \#ifndef __memory_h__
240 \#define __memory_h__
241
242 \#ifdef __STDC__
243 extern void *memccpy();
244 extern void *memchr();
245 extern void *memcpy();
246 extern void *memset();
247 \#else
248 extern char *memccpy();
249 extern char *memchr();
250 extern char *memcpy();
251 extern char *memset();
252 \#endif /* __STDC__ */
253
254 extern int memcmp();
255
256 \#endif /* __memory_h__ */
257 ';
258
259 };
260
261
262 /*
263 * Completely replace <sys/varargs.h> with a file that includes gcc's
264 * stdarg.h or varargs.h files as appropriate.
265 */
266 #ifdef SVR4
267 fix = {
268 hackname = AAB_svr4_no_varargs;
269 files = sys/varargs.h;
270 replace = "/* This file was generated by fixincludes. */\n"
271 "#ifndef _SYS_VARARGS_H\n"
272 "#define _SYS_VARARGS_H\n\n"
273
274 "#ifdef __STDC__\n"
275 "#include <stdarg.h>\n"
276 "#else\n"
277 "#include <varargs.h>\n"
278 "#endif\n\n"
279
280 "#endif /* _SYS_VARARGS_H */\n";
281 };
282 #endif
283
284
285 /*
286 * Completely replace <sys/byteorder.h>; with a file that implements gcc's
287 * optimized byteswapping. Restricted to "SVR4" machines until either
288 * it is shown to be safe to replace this file always, or we get bolder ;-)
289 */
290 fix = {
291 hackname = AAB_svr4_replace_byteorder;
292 #ifndef SVR5
293 mach = "*-*-sysv4*";
294 mach = "i[34567]86-*-sysv5*";
295 mach = "i[34567]86-*-udk*";
296 mach = "i[34567]86-*-solaris2.[0-4]";
297 mach = "powerpcle-*-solaris2.[0-4]";
298 mach = "sparc-*-solaris2.[0-4]";
299 #endif /* SVR5 */
300 files = sys/byteorder.h;
301 replace = '#ifndef _SYS_BYTEORDER_H
302 \#define _SYS_BYTEORDER_H
303
304 /* Functions to convert `short\' and `long\' quantities from host byte order
305 to (internet) network byte order (i.e. big-endian).
306
307 Written by Ron Guilmette (rfg@ncd.com).
308
309 This isn\'t actually used by GCC. It is installed by fixinc.svr4.
310
311 For big-endian machines these functions are essentially no-ops.
312
313 For little-endian machines, we define the functions using specialized
314 asm sequences in cases where doing so yields better code (e.g. i386). */
315
316 \#if !defined (__GNUC__) && !defined (__GNUG__)
317 \#error You lose! This file is only useful with GNU compilers.
318 \#endif
319
320 \#ifndef __BYTE_ORDER__
321 /* Byte order defines. These are as defined on UnixWare 1.1, but with
322 double underscores added at the front and back. */
323 \#define __LITTLE_ENDIAN__ 1234
324 \#define __BIG_ENDIAN__ 4321
325 \#define __PDP_ENDIAN__ 3412
326 \#endif
327
328 \#ifdef __STDC__
329 static __inline__ unsigned long htonl (unsigned long);
330 static __inline__ unsigned short htons (unsigned int);
331 static __inline__ unsigned long ntohl (unsigned long);
332 static __inline__ unsigned short ntohs (unsigned int);
333 \#endif /* defined (__STDC__) */
334
335 \#if defined (__i386__)
336
337 \#ifndef __BYTE_ORDER__
338 \#define __BYTE_ORDER__ __LITTLE_ENDIAN__
339 \#endif
340
341 /* Convert a host long to a network long. */
342
343 /* We must use a new-style function definition, so that this will also
344 be valid for C++. */
345 static __inline__ unsigned long
346 htonl (unsigned long __arg)
347 {
348 register unsigned long __result;
349
350 __asm__ ("xchg%B0 %b0,%h0
351 ror%L0 $16,%0
352 xchg%B0 %b0,%h0" : "=q" (__result) : "0" (__arg));
353 return __result;
354 }
355
356 /* Convert a host short to a network short. */
357
358 static __inline__ unsigned short
359 htons (unsigned int __arg)
360 {
361 register unsigned short __result;
362
363 __asm__ ("xchg%B0 %b0,%h0" : "=q" (__result) : "0" (__arg));
364 return __result;
365 }
366
367 \#elif ((defined (__i860__) && !defined (__i860_big_endian__)) \\
368 || defined (__ns32k__) || defined (__vax__) \\
369 || defined (__spur__) || defined (__arm__))
370
371 \#ifndef __BYTE_ORDER__
372 \#define __BYTE_ORDER__ __LITTLE_ENDIAN__
373 \#endif
374
375 /* For other little-endian machines, using C code is just as efficient as
376 using assembly code. */
377
378 /* Convert a host long to a network long. */
379
380 static __inline__ unsigned long
381 htonl (unsigned long __arg)
382 {
383 register unsigned long __result;
384
385 __result = (__arg >> 24) & 0x000000ff;
386 __result |= (__arg >> 8) & 0x0000ff00;
387 __result |= (__arg << 8) & 0x00ff0000;
388 __result |= (__arg << 24) & 0xff000000;
389 return __result;
390 }
391
392 /* Convert a host short to a network short. */
393
394 static __inline__ unsigned short
395 htons (unsigned int __arg)
396 {
397 register unsigned short __result;
398
399 __result = (__arg << 8) & 0xff00;
400 __result |= (__arg >> 8) & 0x00ff;
401 return __result;
402 }
403
404 \#else /* must be a big-endian machine */
405
406 \#ifndef __BYTE_ORDER__
407 \#define __BYTE_ORDER__ __BIG_ENDIAN__
408 \#endif
409
410 /* Convert a host long to a network long. */
411
412 static __inline__ unsigned long
413 htonl (unsigned long __arg)
414 {
415 return __arg;
416 }
417
418 /* Convert a host short to a network short. */
419
420 static __inline__ unsigned short
421 htons (unsigned int __arg)
422 {
423 return __arg;
424 }
425
426 \#endif /* big-endian */
427
428 /* Convert a network long to a host long. */
429
430 static __inline__ unsigned long
431 ntohl (unsigned long __arg)
432 {
433 return htonl (__arg);
434 }
435
436 /* Convert a network short to a host short. */
437
438 static __inline__ unsigned short
439 ntohs (unsigned int __arg)
440 {
441 return htons (__arg);
442 }
443 \#endif
444 ';
445 };
446
447
448 /*
449 * Cancel out ansi_compat.h on Ultrix. Replace it with an empty file.
450 */
451 fix = {
452 hackname = AAB_ultrix_ansi_compat;
453 files = ansi_compat.h;
454 select = ULTRIX;
455 replace = "/* This file intentionally left blank. */\n";
456 };
457
458
459 /*
460 * The Ultrix 4.3 file limits.h is a symbolic link to sys/limits.h.
461 * Replace limits.h with a file that includes sys/limits.h.
462 */
463 fix = {
464 hackname = AAB_ultrix_limits;
465 files = limits.h;
466 mach = "*-*-ultrix4.3";
467 replace =
468 '#ifndef _LIMITS_INCLUDED
469 \#define _LIMITS_INCLUDED
470 \#include <sys/limits.h>
471 \#endif /* _LIMITS_INCLUDED */
472 ';
473 };
474
475
476 /*
477 * The ULTRIX 4.3 version of memory.h duplicates definitions
478 * present in strings.h. Replace memory.h with a file that includes
479 * strings.h to prevent problems from multiple inclusion.
480 */
481 fix = {
482 hackname = AAB_ultrix_memory;
483 files = memory.h;
484 mach = "*-*-ultrix4.3";
485 replace =
486 '#ifndef _MEMORY_INCLUDED
487 \#define _MEMORY_INCLUDED
488 \#include <strings.h>
489 \#endif /* _MEMORY_INCLUDED */
490 ';
491 };
492
493
494 /*
495 * The Ultrix 4.3 file string.h is a symbolic link to strings.h.
496 * Replace string.h link with a file that includes strings.h to prevent
497 * problems from multiple inclusion.
498 */
499 fix = {
500 hackname = AAB_ultrix_string;
501 files = string.h;
502 mach = "*-*-ultrix4.3";
503 replace =
504 '#ifndef _STRING_INCLUDED
505 \#define _STRING_INCLUDED
506 \#include <strings.h>
507 \#endif /* _STRING_INCLUDED */
508 ';
509 };
510
511
512 /*
513 * pthread.h on AIX 4.3.3 tries to define a macro without whitspace
514 * which violates a requirement of ISO C.
515 */
516 fix = {
517 hackname = aix_pthread;
518 files = "pthread.h";
519 select = "(#define [A-Za-z_0-9]+)(\\\\\n[^A-Za-z_0-9 \t\n(])";
520 c_fix = format;
521 c_fix_arg = "%1 %2";
522 test_text = "#define PTHREAD_MUTEX_INITIALIZER\\\\\n"
523 "{...init stuff...}";
524 };
525
526
527 /*
528 * sys/machine.h on AIX 4.3.3 puts whitespace between a \ and a newline
529 * in an otherwise harmless (and #ifed out) macro definition
530 */
531 fix = {
532 hackname = aix_sysmachine;
533 files = sys/machine.h;
534 select = "\\\\ +\n";
535 c_fix = format;
536 c_fix_arg = "\\\n";
537 test_text = "#define FOO \\\n"
538 " bar \\ \n baz \\ \n bat";
539 };
540
541
542 /*
543 * sys/wait.h on AIX 3.2.5 puts the declaration of wait3 before the
544 * definition of struct rusage, so the prototype added by fixproto fails.
545 */
546 fix = {
547 hackname = aix_syswait;
548 files = sys/wait.h;
549 select = "^extern pid_t wait3\\(\\);\n";
550 select = "bos325,";
551 c_fix = format;
552 c_fix_arg = "struct rusage;\n%0";
553 test_text = "/* bos325, */\n"
554 "extern pid_t wait3();\n"
555 "\t/* pid_t wait3(int *, int, struct rusage *); */";
556 };
557
558
559 /*
560 * sys/signal.h on some versions of AIX uses volatile in the typedef of
561 * sig_atomic_t, which causes gcc to generate a warning about duplicate
562 * volatile when a sig_atomic_t variable is declared volatile, as
563 * required by ANSI C.
564 */
565 fix = {
566 hackname = aix_volatile;
567 files = sys/signal.h;
568 select = "typedef volatile int sig_atomic_t";
569 c_fix = format;
570 c_fix_arg = "typedef int sig_atomic_t";
571 test_text = "typedef volatile int sig_atomic_t;";
572 };
573
574
575 /*
576 * Fix __assert declaration in assert.h on Alpha OSF/1.
577 */
578 fix = {
579 hackname = alpha___assert;
580 files = "assert.h";
581 select = '__assert\(char \*, char \*, int\)';
582 c_fix = format;
583 c_fix_arg = "__assert(const char *, const char *, int)";
584 test_text = 'extern void __assert(char *, char *, int);';
585 };
586
587
588 /*
589 * Fix assert macro in assert.h on Alpha OSF/1.
590 * The superfluous int cast breaks C++.
591 */
592 fix = {
593 hackname = alpha_assert;
594 files = "assert.h";
595 select = '(#define assert\(EX\).*)\(\(int\) \(EX\)\)';
596 c_fix = format;
597 c_fix_arg = "%1(EX)";
598 test_text = '#define assert(EX) (((int) (EX)) ? (void)0 : __assert(#EX, __FILE__, __LINE__))';
599 };
600
601
602 /*
603 * Fix getopt declarations in stdio.h and stdlib.h on Alpha OSF/1 and AIX.
604 */
605 fix = {
606 hackname = alpha_getopt;
607 files = "stdio.h";
608 files = "stdlib.h";
609 select = 'getopt\(int, char \*\[\], *char \*\)';
610 c_fix = format;
611 c_fix_arg = "getopt(int, char *const[], const char *)";
612 test_text = 'extern int getopt(int, char *[], char *);';
613 };
614
615
616 /*
617 * Remove erroneous parentheses in sym.h on Alpha OSF/1.
618 */
619 fix = {
620 hackname = alpha_parens;
621 files = sym.h;
622 select = '#ifndef\(__mips64\)';
623 c_fix = format;
624 c_fix_arg = "#ifndef __mips64";
625 test_text = "#ifndef(__mips64) /* bogus */\nextern int foo;\n#endif";
626 };
627
628
629 /*
630 * Fix return value of sbrk in unistd.h on Alpha OSF/1 V2.0
631 */
632 fix = {
633 hackname = alpha_sbrk;
634 files = unistd.h;
635 select = "char[ \t]*\\*[\t ]*sbrk[ \t]*\\(";
636 c_fix = format;
637 c_fix_arg = "void *sbrk(";
638 test_text = "extern char* sbrk(ptrdiff_t increment);";
639 };
640
641
642 /*
643 * Fix this ARM/RISCiX file where ___type is a Compiler
644 * hint that is specific to the Norcroft compiler.
645 */
646 fix = {
647 hackname = arm_norcroft_hint;
648 select = "___type p_type";
649 files = "X11/Intrinsic.h";
650 c_fix = format;
651 c_fix_arg = "p_type";
652 test_text = "___type p_type mumble;";
653 };
654
655
656 /*
657 * Fix this ARM/RISCiX file to avoid interfering
658 * with the use of __wchar_t in cc1plus.
659 */
660 fix = {
661 hackname = arm_wchar;
662 files = stdlib.h;
663 select = "#[ \t]*define[ \t]*__wchar_t";
664
665 c_fix = format;
666 c_fix_arg = "%1_GCC_WCHAR_T";
667 c_fix_arg = "(#[ \t]*(ifndef|define)[ \t]+)__wchar_t";
668
669 test_text =
670 "# ifndef \t __wchar_t /* we don't have wchar_t yet, ... */\n"
671 "# define __wchar_t short\n"
672 "# endif /* __wchar_t */";
673 };
674
675
676 /*
677 * This file in A/UX 3.0.x/3.1.x contains an __asm directive for c89;
678 * gcc doesn't understand it.
679 */
680 fix = {
681 hackname = aux_asm;
682 files = sys/param.h;
683 select = "#ifndef NOINLINE";
684
685 c_fix = format;
686 c_fix_arg = "#if !defined(NOINLINE) && !defined(__GNUC__)";
687
688 test_text =
689 "#ifndef NOINLINE /* ain't got no inline, so we got it */\n"
690 "#endif /* NOINLINE */";
691 };
692
693
694 /*
695 * For C++, avoid any typedef or macro definition of bool,
696 * and use the built in type instead.
697 * HP/UX 10.20 also has it in curses_colr/curses.h.
698 */
699 fix = {
700 hackname = avoid_bool_define;
701 files = curses.h;
702 files = curses_colr/curses.h;
703 files = term.h;
704 files = tinfo.h;
705
706 select = "#[ \t]*define[ \t]+bool[ \t]";
707 bypass = "we must use the C\\+\\+ compiler's type";
708
709 c_fix = format;
710 c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
711 c_fix_arg = "^[ \t]*#[ \t]*define[ \t]+bool[ \t].*";
712
713 test_text = "# define bool\t char \n";
714 };
715
716 fix = {
717 hackname = avoid_bool_type;
718 files = curses.h;
719 files = curses_colr/curses.h;
720 files = term.h;
721 files = tinfo.h;
722
723 select = "^[ \t]*typedef[ \t].*[ \t]bool[ \t]*;";
724 bypass = "we must use the C\\+\\+ compiler's type";
725
726 c_fix = format;
727 c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
728
729 test_text = "typedef unsigned int\tbool \t; /* bool\n type */";
730 };
731
732 /*
733 * For C++, avoid any typedef definition of wchar_t,
734 * and use the built in type instead.
735 */
736
737 fix = {
738 hackname = avoid_wchar_t_type;
739
740 select = "^[ \t]*typedef[ \t].*[ \t]wchar_t[ \t]*;";
741
742 c_fix = format;
743 c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
744
745 test_text = "typedef unsigned short\twchar_t \t; /* wchar_t\n type */";
746 };
747
748 /*
749 * Fix #defines under Alpha OSF/1:
750 * The following files contain '#pragma extern_prefix "_FOO"' followed by
751 * a '#define something(x,y,z) _FOOsomething(x,y,z)'. The intent of these
752 * statements is to reduce namespace pollution. While these macros work
753 * properly in most cases, they don't allow you to take a pointer to the
754 * "something" being modified. To get around this limitation, change these
755 * statements to be of the form '#define something _FOOsomething'.
756 *
757 * sed ain't egrep, lesson 2463: sed can use self-referential
758 * regular expressions. In the substitute expression below,
759 * "\\1" and "\\2" refer to subexpressions found earlier in the
760 * same match. So, we continue to use sed. "extern_prefix" will
761 * be a rare match anyway...
762 */
763 fix = {
764 hackname = bad_lval;
765
766 select = "^[ \t]*#[ \t]*pragma[ \t]+extern_prefix";
767
768 files = libgen.h;
769 files = dirent.h;
770 files = ftw.h;
771 files = grp.h;
772 files = ndbm.h;
773 files = pthread.h;
774 files = pwd.h;
775 files = signal.h;
776 files = standards.h;
777 files = stdlib.h;
778 files = string.h;
779 files = stropts.h;
780 files = time.h;
781 files = unistd.h;
782
783 sed =
784 "s/^[ \t]*#[ \t]*define[ \t][ \t]*\\([^(]*\\)\\(([^)]*)\\)[ \t]*"
785 "\\(_.*\\)\\1\\2[ \t]*$/#define \\1 \\3\\1/";
786
787 test_text = '#pragma extern_prefix "_FOO"'"\n"
788 "#define something(x,y,z) _FOOsomething(x,y,z)\n"
789 "#define mumble _FOOmumble";
790 };
791
792
793 /*
794 * Fix `typedef struct term;' on hppa1.1-hp-hpux9.
795 */
796 fix = {
797 hackname = bad_struct_term;
798 files = curses.h;
799 select = "^[ \t]*typedef[ \t]+struct[ \t]+term[ \t]*;";
800 c_fix = format;
801 c_fix_arg = "struct term;";
802
803 test_text = 'typedef struct term;';
804 };
805
806
807 /*
808 * Fix one other error in this file:
809 * a mismatched quote not inside a C comment.
810 */
811 fix = {
812 hackname = badquote;
813 files = sundev/vuid_event.h;
814 select = "doesn't";
815 c_fix = format;
816 c_fix_arg = "does not";
817
818 test_text = "/* doesn't have matched single quotes */";
819 };
820
821
822 /*
823 * check for broken assert.h that needs stdio.h
824 */
825 fix = {
826 hackname = broken_assert_stdio;
827 files = assert.h;
828 select = stderr;
829 bypass = "include.*stdio\\.h";
830 c_fix = wrap;
831 c_fix_arg = "#include <stdio.h>\n";
832 test_text = "extern FILE* stderr;";
833 };
834
835
836 /*
837 * check for broken assert.h that needs stdlib.h
838 */
839 fix = {
840 hackname = broken_assert_stdlib;
841 files = assert.h;
842 select = 'exit *\(|abort *\(';
843 bypass = "include.*stdlib\\.h";
844 c_fix = wrap;
845 c_fix_arg = "#ifdef __cplusplus\n"
846 "#include <stdlib.h>\n"
847 "#endif\n";
848 test_text = "extern void exit ( int );";
849 };
850
851
852 /*
853 * Remove `extern double cabs' declarations from math.h.
854 * This conflicts with C99. Discovered on AIX.
855 * SunOS4 has its cabs() declaration followed by a comment which
856 * terminates on the following line.
857 */
858 fix = {
859 hackname = broken_cabs;
860 files = "math.h";
861 select = '^extern[ \t]+double[ \t]+cabs';
862
863 c_fix = format;
864 c_fix_arg = "";
865 c_fix_arg = "^extern[ \t]+double[ \t]+cabs\\((struct dbl_hypot|)\\);";
866
867 test_text = "#ifdef __STDC__\n"
868 "extern double cabs(struct dbl_hypot);\n"
869 "#else\n"
870 "extern double cabs();\n"
871 "#endif\n"
872 "extern double cabs(); /* This is a comment\n"
873 " and it ends here. */";
874 };
875
876
877 /*
878 * Fix various macros used to define ioctl numbers.
879 * The traditional syntax was:
880 *
881 * #define _CTRL(n, x) (('n'<<8)+x)
882 * #define TCTRLCFOO _CTRL(T, 1)
883 *
884 * but this does not work with the C standard, which disallows macro
885 * expansion inside strings. We have to rewrite it thus:
886 *
887 * #define _CTRL(n, x) ((n<<8)+x)
888 * #define TCTRLCFOO _CTRL('T', 1)
889 *
890 * The select expressions match too much, but the c_fix code is cautious.
891 *
892 * CTRL might be: CTRL _CTRL ISCTRL BSD43_CTRL ...
893 */
894 fix = {
895 hackname = ctrl_quotes_def;
896 select = "define[ \t]+[A-Z0-9_]+CTRL\\([a-zA-Z][,)]";
897 c_fix = char_macro_def;
898 c_fix_arg = "CTRL";
899
900 /*
901 * This is two tests in order to ensure that the "CTRL(c)" can
902 * be selected in isolation from the multi-arg format
903 */
904 test_text = "#define BSD43_CTRL(n, x) (('n'<<8)+x)\n";
905 test_text = "#define _CTRL(c) ('c'&037)";
906 };
907
908 fix = {
909 hackname = ctrl_quotes_use;
910 select = "define[ \t]+[A-Z0-9_]+[ \t]+[A-Z0-9_]+CTRL[ \t]*\\( *[^,']";
911 c_fix = char_macro_use;
912 c_fix_arg = "CTRL";
913 test_text = "#define TCTRLFOO BSD43_CTRL(T, 1)";
914 };
915
916
917 /*
918 * sys/mman.h on HP/UX is not C++ ready,
919 * even though NO_IMPLICIT_EXTERN_C is defined on HP/UX.
920 *
921 * rpc/types.h on OSF1/2.0 is not C++ ready,
922 * even though NO_IMPLICIT_EXTERN_C is defined for the alpha.
923 *
924 * The problem is the declaration of malloc.
925 */
926 fix = {
927 hackname = cxx_unready;
928 files = sys/mman.h;
929 files = rpc/types.h;
930 select = '[^#]+malloc.*;'; /* Catch any form of declaration
931 not within a macro. */
932 bypass = '"C"|__BEGIN_DECLS';
933
934 c_fix = wrap;
935 c_fix_arg = "#ifdef __cplusplus\n"
936 "extern \"C\" {\n"
937 "#endif\n";
938 c_fix_arg = "#ifdef __cplusplus\n"
939 "}\n"
940 "#endif\n";
941 test_text = "extern void* malloc( size_t );";
942 };
943
944
945 /*
946 * Fix <c_asm.h> on Digital UNIX V4.0:
947 * It contains a prototype for a DEC C internal asm() function,
948 * clashing with gcc's asm keyword. So protect this with __DECC.
949 */
950 fix = {
951 hackname = dec_intern_asm;
952 files = c_asm.h;
953 sed = "/^[ \t]*float[ \t]*fasm/i\\\n#ifdef __DECC\n";
954 sed = "/^[ \t]*#[ \t]*pragma[ \t]*intrinsic([ \t]*dasm/a\\\n"
955 "#endif\n";
956 test_text =
957 "float fasm {\n"
958 " ... asm stuff ...\n"
959 "};\n#pragma intrinsic( dasm )\n/* END ASM TEST*/";
960 };
961
962
963 /*
964 * Fix typo in <wchar.h> on DJGPP 2.03.
965 */
966 fix = {
967 hackname = djgpp_wchar_h;
968 file = wchar.h;
969 select = "__DJ_wint_t";
970 bypass = "sys/djtypes.h";
971 c_fix = format;
972 c_fix_arg = "%0\n#include <sys/djtypes.h>";
973 c_fix_arg = "#include <stddef.h>";
974 test_text = "#include <stddef.h>\n"
975 "extern __DJ_wint_t x;\n";
976 };
977
978 /*
979 * Fix these Sun OS files to avoid an invalid identifier in an #ifdef.
980 */
981 fix = {
982 hackname = ecd_cursor;
983 files = "sunwindow/win_lock.h";
984 files = "sunwindow/win_cursor.h";
985 select = 'ecd\.cursor';
986 c_fix = format;
987 c_fix_arg = 'ecd_cursor';
988
989 test_text = "#ifdef ecd.cursor\n#error bogus\n#endif /* ecd+cursor */";
990 };
991
992
993 /*
994 * fix-header doesn't fix fabs' prototype, and I have no idea why.
995 */
996 fix = {
997 hackname = fix_header_breakage;
998 mach = "m88k-motorola-sysv3*";
999 files = "math.h";
1000
1001 select = 'extern double floor\(\), ceil\(\), fmod\(\), fabs\(\);';
1002 c_fix = format;
1003 c_fix_arg =
1004 'extern double floor(), ceil(), fmod(), fabs _PARAMS((double));';
1005 test_text = 'extern double floor(), ceil(), fmod(), fabs();';
1006 };
1007
1008
1009 /*
1010 * Between 8/24/1998 and 2/17/2001, FreeBSD system headers presume
1011 * neither the existence of GCC 3 nor its exact feature set yet break
1012 * (by design?) when __GNUC__ is set beyond 2.
1013 */
1014 fix = {
1015 hackname = freebsd_gcc3_breakage;
1016 mach = *-*-freebsd*;
1017 files = sys/cdefs.h;
1018 select = '^#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7$';
1019 bypass = '__GNUC__[ \t]*([>=]=[ \t]*[3-9]|>[ \t]*2)';
1020 c_fix = format;
1021 c_fix_arg = '%0 || __GNUC__ >= 3';
1022 test_text = '#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7';
1023 };
1024
1025
1026 /*
1027 * Fix these files to use the same types that we think they should.
1028 */
1029 fix = {
1030 hackname = gnu_types;
1031 files = "sys/types.h";
1032 files = "stdlib.h";
1033 files = "sys/stdtypes.h";
1034 files = "stddef.h";
1035 files = "memory.h";
1036 files = "unistd.h";
1037 bypass = '_GCC_(PTRDIFF|SIZE|WCHAR)_T';
1038 select = "^[ \t]*typedef[ \t]+.*[ \t](ptrdiff|size|wchar)_t;";
1039 c_fix = gnu_type;
1040
1041 test_text = "typedef long int ptrdiff_t; /* long int */\n"
1042 "typedef uint_t size_t; /* uint_t */\n"
1043 "typedef ushort_t wchar_t; /* ushort_t */";
1044 };
1045
1046
1047 /*
1048 * Fix HP & Sony's use of "../machine/xxx.h"
1049 * to refer to: <machine/xxx.h>
1050 */
1051 fix = {
1052 hackname = hp_inline;
1053 files = sys/spinlock.h;
1054 files = machine/machparam.h;
1055 select = "[ \t]*#[ \t]*include[ \t]+" '"\.\./machine/';
1056
1057 c_fix = format;
1058 c_fix_arg = "%1<machine/%2.h>";
1059
1060 c_fix_arg = "([ \t]*#[ \t]*include[ \t]+)" '"\.\./machine/'
1061 '([a-z]+)\.h"';
1062
1063 test_text = ' # include "../machine/mumble.h"';
1064 };
1065
1066
1067 /*
1068 * Check for (...) in C++ code in HP/UX sys/file.h.
1069 */
1070 fix = {
1071 hackname = hp_sysfile;
1072 files = sys/file.h;
1073 select = "HPUX_SOURCE";
1074
1075 c_fix = format;
1076 c_fix_arg = "(struct file *, ...)";
1077 c_fix_arg = '\(\.\.\.\)';
1078
1079 test_text = "extern void foo(...); /* HPUX_SOURCE - bad varargs */";
1080 };
1081
1082
1083 /*
1084 * Delete C++ double pow (double, int) inline function from HP-UX 10 & 11
1085 * math.h to prevent clash with define in c_std/bits/std_cmath.h.
1086 */
1087 fix = {
1088 hackname = hpux10_cpp_pow_inline;
1089 files = fixinc-test-limits.h, math.h;
1090 select = <<- END_POW_INLINE
1091 ^# +ifdef +__cplusplus
1092 +}
1093 +inline +double +pow\(double +__d,int +__expon\) +{
1094 [ ]+return +pow\(__d,\(double\)__expon\);
1095 +}
1096 +extern +"C" +{
1097 #else
1098 # +endif
1099 END_POW_INLINE;
1100
1101 c_fix = format;
1102 c_fix_arg = "";
1103
1104 test_text =
1105 "# ifdef __cplusplus\n"
1106 " }\n"
1107 " inline double pow(double __d,int __expon) {\n"
1108 "\t return pow(__d,(double)__expon);\n"
1109 " }\n"
1110 ' extern "C"' " {\n"
1111 "#else\n"
1112 "# endif";
1113 };
1114
1115 fix = {
1116 hackname = hpux11_cpp_pow_inline;
1117 files = math.h;
1118 select = " +inline double pow\\(double d,int expon\\) {\n"
1119 " +return pow\\(d, \\(double\\)expon\\);\n"
1120 " +}\n";
1121 c_fix = format;
1122 c_fix_arg = "";
1123
1124 test_text =
1125 " inline double pow(double d,int expon) {\n"
1126 " return pow(d, (double)expon);\n"
1127 " }\n";
1128 };
1129
1130
1131 /*
1132 * Keep HP-UX 11 from stomping on C++ math namespace
1133 * with defines for fabsf.
1134 */
1135 fix = {
1136 hackname = hpux11_fabsf;
1137 files = math.h;
1138 select = "^[ \t]*#[ \t]*define[ \t]+fabsf\\(.*";
1139 bypass = "__cplusplus";
1140
1141 c_fix = format;
1142 c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
1143
1144 test_text =
1145 "#ifdef _PA_RISC\n"
1146 "# define fabsf(x) ((float)fabs((double)(float)(x)))\n"
1147 "#endif";
1148 };
1149
1150
1151 /*
1152 * Prevent HP-UX 11 from defining __size_t and preventing size_t from
1153 * being defined by having it define _hpux_size_t instead.
1154 */
1155 fix = {
1156 hackname = hpux11_size_t;
1157 mach = "*-hp-hpux11*";
1158 select = "__size_t";
1159
1160 c_fix = format;
1161 c_fix_arg = "_hpux_size_t";
1162
1163 test_text =
1164 "#define __size_t size_t\n"
1165 " extern int getpwuid_r( char *, __size_t, struct passwd **);\n";
1166 };
1167
1168
1169 /*
1170 * In inttypes.h on HPUX 11, the use of __CONCAT__ in the definition
1171 * of UINT32_C has undefined behavior according to ISO/ANSI:
1172 * the arguments to __CONCAT__ are not macro expanded before the
1173 * concatination happens so the trailing ')' in the first argument
1174 * is concatinated with the 'l' in the second argument creating an
1175 * invalid pp token. The behavior of invalid pp tokens is undefined.
1176 * GCC does not handle these invalid tokens the way the HP compiler does.
1177 * This problem will potentially occur anytime macros are used in the
1178 * arguments to __CONCAT__. A general solution to this problem would be to
1179 * insert another layer of macro between __CONCAT__ and its use
1180 * in UINT32_C. An example of this solution can be found in the C standard.
1181 * A more specific solution, the one used here, is to change the UINT32_C
1182 * macro to not used macros in the arguments to __CONCAT__.
1183 */
1184 fix = {
1185 hackname = hpux11_uint32_c;
1186 files = inttypes.h;
1187 select = "^#define UINT32_C\\(__c\\)[ \t]*"
1188 "__CONCAT__\\(__CONCAT_U__\\(__c\\),l\\)";
1189 c_fix = format;
1190 c_fix_arg = '#define UINT32_C(__c) __CONCAT__(__c,ul)';
1191 test_text =
1192 "#define CONCAT_U__(__c)\t__CONCAT__(__c,u)\n"
1193 "#define UINT32_C(__c)\t__CONCAT__(__CONCAT_U__(__c),l)";
1194 };
1195
1196
1197 /*
1198 * Fix hpux 11.00 broken vsnprintf declaration
1199 */
1200 fix = {
1201 hackname = hpux11_vsnprintf;
1202 files = stdio.h;
1203 select = '(extern int vsnprintf\(char \*, _[hpux]*_size_t, '
1204 'const char \*,) __va__list\);';
1205 c_fix = format;
1206 c_fix_arg = "%1 __va_list);";
1207
1208 test_text = 'extern int vsnprintf(char *, _hpux_size_t, const char *,'
1209 ' __va__list);';
1210 };
1211
1212
1213 /*
1214 * get rid of bogus inline definitions in HP-UX 8.0
1215 */
1216 fix = {
1217 hackname = hpux8_bogus_inlines;
1218 files = math.h;
1219 select = inline;
1220 sed = "s@inline int abs(int [a-z][a-z]*) {.*}"
1221 "@extern \"C\" int abs(int);@";
1222 sed = "s@inline double abs(double [a-z][a-z]*) {.*}@@";
1223 sed = "s@inline int sqr(int [a-z][a-z]*) {.*}@@";
1224 sed = "s@inline double sqr(double [a-z][a-z]*) {.*}@@";
1225 test_text = "inline int abs(int v) { return (v>=0)?v:-v; }\n"
1226 "inline double sqr(double v) { return v**0.5; }";
1227 };
1228
1229
1230 /*
1231 * HPUX 10.x sys/param.h defines MAXINT which clashes with values.h
1232 */
1233 fix = {
1234 hackname = hpux_maxint;
1235 files = sys/param.h;
1236 files = values.h;
1237 select = "^#[ \t]*define[ \t]+MAXINT[ \t]";
1238 bypass = "^#[ \t]*ifndef[ \t]+MAXINT";
1239 test =
1240 "-n \"`egrep '#[ \t]*define[ \t]+MAXINT[ \t]' sys/param.h`\"";
1241
1242 c_fix = format;
1243 c_fix_arg = "#ifndef MAXINT\n%0\n#endif";
1244 c_fix_arg = "^#[ \t]*define[ \t]+MAXINT[ \t].*";
1245
1246 test_text = '#define MAXINT 0x7FFFFFFF';
1247 };
1248
1249
1250 /*
1251 * Fix hpux10.20 <sys/time.h> to avoid invalid forward decl
1252 */
1253 fix = {
1254 hackname = hpux_systime;
1255 files = sys/time.h;
1256 select = "^extern struct sigevent;";
1257
1258 c_fix = format;
1259 c_fix_arg = "struct sigevent;";
1260
1261 test_text = 'extern struct sigevent;';
1262 };
1263
1264
1265 /*
1266 * Fix return type of abort and free
1267 */
1268 fix = {
1269 hackname = int_abort_free_and_exit;
1270 files = stdlib.h;
1271 select = "int[ \t]+(abort|free|exit)[ \t]*\\(";
1272
1273 c_fix = format;
1274 c_fix_arg = "void\t%1(";
1275
1276 test_text = "extern int abort(int);\n"
1277 "extern int free(void*);\n"
1278 "extern int exit(void*);";
1279 };
1280
1281
1282 /*
1283 * Fix various macros used to define ioctl numbers.
1284 * The traditional syntax was:
1285 *
1286 * #define _IO(n, x) (('n'<<8)+x)
1287 * #define TIOCFOO _IO(T, 1)
1288 *
1289 * but this does not work with the C standard, which disallows macro
1290 * expansion inside strings. We have to rewrite it thus:
1291 *
1292 * #define _IO(n, x) ((n<<8)+x)
1293 * #define TIOCFOO _IO('T', 1)
1294 *
1295 * The select expressions match too much, but the c_fix code is cautious.
1296 *
1297 * _IO might be: _IO DESIO BSD43__IO with W, R, WR, C, ... suffixes.
1298 */
1299 fix = {
1300 hackname = io_quotes_def;
1301 select = "define[ \t]+[A-Z0-9_]+IO[A-Z]*\\([a-zA-Z][,)]";
1302 c_fix = char_macro_def;
1303 c_fix_arg = "IO";
1304 test_text =
1305 "#define BSD43__IOWR(n, x) (('n'<<8)+x)\n"
1306 "#define _IOWN(x,y,t) (_IOC_IN|(((t)&_IOCPARM_MASK)<<16)|('x'<<8)|y)\n"
1307 "#define _IO(x,y) ('x'<<8|y)";
1308 test_text =
1309 "#define XX_IO(x) ('x'<<8|256)";
1310 };
1311
1312 fix = {
1313 hackname = io_quotes_use;
1314 select = "define[ \t]+[A-Z0-9_]+[ \t]+[A-Z0-9_]+IO[A-Z]*[ \t]*"
1315 "\\( *[^,']";
1316 c_fix = char_macro_use;
1317 c_fix_arg = "IO";
1318 test_text = "#define TIOCFOO BSD43__IOWR(T, 1)\n"
1319 "#define TIOCFOO \\\\\n"
1320 "BSD43__IOWR(T, 1) /* Some are multi-line */";
1321 };
1322
1323
1324 /*
1325 * Check for missing ';' in struct
1326 */
1327 fix = {
1328 hackname = ip_missing_semi;
1329 files = netinet/ip.h;
1330 select = "}$";
1331 sed = "/^struct/,/^};/s/}$/};/";
1332 test_text=
1333 "struct mumble {\n"
1334 " union {\n"
1335 " int x;\n"
1336 " }\n"
1337 "}; /* mumbled struct */\n";
1338 };
1339
1340
1341 /*
1342 * IRIX 5.2's <sys/asm.h> contains an asm comment with a contraction
1343 * that causes the assembly preprocessor to complain about an
1344 * unterminated character constant.
1345 */
1346 fix = {
1347 hackname = irix_asm_apostrophe;
1348 files = sys/asm.h;
1349
1350 select = "^[ \t]*#.*[Ww]e're";
1351 c_fix = format;
1352 c_fix_arg = "%1 are";
1353 c_fix_arg = "^([ \t]*#.*[Ww]e)'re";
1354 test_text = "\t# and we're on vacation";
1355 };
1356
1357
1358 /*
1359 * Non-traditional "const" declaration in Irix's limits.h.
1360 */
1361 fix = {
1362 hackname = irix_limits_const;
1363 files = fixinc-test-limits.h, limits.h;
1364 select = "^extern const ";
1365 c_fix = format;
1366 c_fix_arg = "extern __const ";
1367 test_text = "extern const char limit; /* test limits */";
1368 };
1369
1370
1371 /*
1372 * IRIX 5.x's stdio.h declares some functions that take a va_list as
1373 * taking char *. However, GCC uses void * for va_list, so
1374 * calling vfprintf with a va_list fails in C++. */
1375 fix = {
1376 hackname = irix_stdio_va_list;
1377 files = stdio.h;
1378
1379 select = '(printf\(.*), /\* va_list \*/ char \*';
1380 c_fix = format;
1381 c_fix_arg = "%1, __gnuc_va_list";
1382 test_text =
1383 "extern int printf( const char *, /* va_list */ char * );";
1384 };
1385
1386
1387 /*
1388 * Fixing ISC fmod declaration
1389 */
1390 fix = {
1391 hackname = isc_fmod;
1392 files = math.h;
1393 select = 'fmod\(double\)';
1394 c_fix = format;
1395 c_fix_arg = "fmod(double, double)";
1396 test_text = "extern double fmod(double);";
1397 };
1398
1399
1400 /*
1401 * On Interactive Unix 2.2, certain traditional Unix definitions
1402 * (notably getc and putc in stdio.h) are omitted if __STDC__ is
1403 * defined, not just if _POSIX_SOURCE is defined. This makes it
1404 * impossible to compile any nontrivial program except with -posix.
1405 */
1406 fix = {
1407 hackname = isc_omits_with_stdc;
1408
1409 files = "stdio.h";
1410 files = "math.h";
1411 files = "ctype.h";
1412 files = "sys/limits.h";
1413 files = "sys/fcntl.h";
1414 files = "sys/dirent.h";
1415
1416 select = '!defined\(__STDC__\) && !defined\(_POSIX_SOURCE\)';
1417 c_fix = format;
1418 c_fix_arg = '!defined(_POSIX_SOURCE)';
1419 test_text = "#if !defined(__STDC__) && !defined(_POSIX_SOURCE) /* ? ! */"
1420 "\nint foo;\n#endif";
1421 };
1422
1423
1424 /*
1425 * These files in Sun OS 4.x and ARM/RISCiX and BSD4.3
1426 * use / * * / to concatenate tokens.
1427 */
1428 fix = {
1429 hackname = kandr_concat;
1430 files = "sparc/asm_linkage.h";
1431 files = "sun3/asm_linkage.h";
1432 files = "sun3x/asm_linkage.h";
1433 files = "sun4/asm_linkage.h";
1434 files = "sun4c/asm_linkage.h";
1435 files = "sun4m/asm_linkage.h";
1436 files = "sun4c/debug/asm_linkage.h";
1437 files = "sun4m/debug/asm_linkage.h";
1438 files = "arm/as_support.h";
1439 files = "arm/mc_type.h";
1440 files = "arm/xcb.h";
1441 files = "dev/chardefmac.h";
1442 files = "dev/ps_irq.h";
1443 files = "dev/screen.h";
1444 files = "dev/scsi.h";
1445 files = "sys/tty.h";
1446 files = "Xm.acorn/XmP.h";
1447 files = bsd43/bsd43_.h;
1448 select = '/\*\*/';
1449 c_fix = format;
1450 c_fix_arg = '##';
1451 test_text = "#define __CONCAT__(a,b) a/**/b";
1452 };
1453
1454
1455 /*
1456 * GNU libc1 string.h does not prototype memcpy and memcmp for gcc
1457 * versions > 1. This fix will open up the declaration for all
1458 * versions of GCC and for g++.
1459 */
1460 fix = {
1461 hackname = libc1_ifdefd_memx;
1462
1463 /* The string.h result is overwritten by AAB_ultrix_string when doing
1464 "make check" and will fail. Therefore, we add the following kludgery
1465 to insert the test_text into the special testing header. :-} */
1466 files = testing.h;
1467 files = string.h;
1468
1469 c_fix = format;
1470 select = "' is a built-in function for gcc 2\\.x\\. \\*/";
1471 bypass = __cplusplus;
1472 c_fix_arg = "%1";
1473 c_fix_arg =
1474 '/\* `mem...\' is a built-in function for gcc 2\.x\. \*/' "\n"
1475 '#if defined\(__STDC__\) && __GNUC__ < 2' "\n"
1476 "(/\\* .* \\*/\n"
1477 "extern [a-z_]+ mem.*(\n[^#].*)*;)\n"
1478 "#endif";
1479
1480 test_text =
1481 "/* \\`memcpy' is a built-in function for gcc 2.x. */\n"
1482 "#if defined(__STDC__) && __GNUC__ < 2\n"
1483 "/* Copy N bytes of SRC to DEST. */\n"
1484 "extern __ptr_t memcpy __P ((__ptr_t __dest, __const __ptr_t __src,\n"
1485 " size_t __n));\n"
1486 "#endif";
1487 };
1488
1489
1490 /*
1491 * In limits.h, put #ifndefs around things that are supposed to be defined
1492 * in float.h to avoid redefinition errors if float.h is included first.
1493 * On HP/UX this patch does not work, because on HP/UX limits.h uses
1494 * multi line comments and the inserted #endif winds up inside the
1495 * comment. Fortunately, HP/UX already uses #ifndefs in limits.h; if
1496 * we find a #ifndef FLT_MIN we assume that all the required #ifndefs
1497 * are there, and we do not add them ourselves.
1498 */
1499 fix = {
1500 hackname = limits_ifndefs;
1501 files = "sys/limits.h";
1502 files = "limits.h";
1503 bypass = "ifndef[ \t]+FLT_MIN";
1504
1505 c_fix = format;
1506 c_fix_arg = "#ifndef %1\n%0\n#endif";
1507 c_fix_arg = "^[ \t]*#[ \t]*define[ \t]+"
1508 "((FLT|DBL)_(MIN|MAX|DIG))[ \t].*";
1509 test_text = " #\tdefine\tDBL_DIG \t 0 /* somthin' */";
1510 };
1511
1512
1513 /*
1514 * Delete the '#define void int' line from curses.h on Lynx
1515 */
1516 fix = {
1517 hackname = lynx_void_int;
1518 files = curses.h;
1519 select = "#[ \t]*define[ \t]+void[ \t]+int[ \t]*";
1520 c_fix = format;
1521 c_fix_arg = "";
1522 test_text = "# define\tvoid\tint \t/* curses foiled again */";
1523 };
1524
1525
1526 /*
1527 * Fix fcntl prototype in fcntl.h on LynxOS.
1528 */
1529 fix = {
1530 hackname = lynxos_fcntl_proto;
1531 files = fcntl.h;
1532 select = "fcntl[ \t]*" '\(int, int, int\)';
1533 c_fix = format;
1534 c_fix_arg = '%1...)';
1535 c_fix_arg = "(fcntl[ \t]*" '\(int, int, )int\)';
1536 test_text = "extern int fcntl(int, int, int);";
1537 };
1538
1539
1540 /*
1541 * libm.a on m88k-motorola-sysv3 contains a stupid optimization for
1542 * function hypot(), which returns the second argument without even
1543 * looking at its value, if the other is 0.0.
1544 */
1545 fix = {
1546 hackname = m88k_bad_hypot_opt;
1547 mach = "m88k-motorola-sysv3*";
1548 files = "math.h";
1549 select = "^extern double hypot\\(\\);\n";
1550 c_fix = format;
1551 c_fix_arg = "%0"
1552 "/* Workaround a stupid Motorola optimization if one\n"
1553 " of x or y is 0.0 and the other is negative! */\n"
1554 "#ifdef __STDC__\n"
1555 "static __inline__ double fake_hypot (double x, double y)\n"
1556 "#else\n"
1557 "static __inline__ double fake_hypot (x, y)\n"
1558 "\tdouble x, y;\n"
1559 "#endif\n"
1560 "{\n"
1561 "\treturn fabs (hypot (x, y));\n"
1562 "}\n"
1563 "#define hypot\tfake_hypot\n";
1564 test_text = "extern double hypot();";
1565 };
1566
1567
1568 /*
1569 * Fix incorrect S_IF* definitions on m88k-sysv3.
1570 */
1571 fix = {
1572 hackname = m88k_bad_s_if;
1573 mach = "m88k-*-sysv3*";
1574 files = sys/stat.h;
1575 select = "#define[ \t]+S_IS[A-Z]+\\(m\\)[ \t]+\\(m[ \t]*&";
1576
1577 c_fix = format;
1578 c_fix_arg = '#define %1(m) (((m) & S_IFMT) == %2)';
1579 c_fix_arg = "#define[ \t]+(S_IS[A-Z]+)\\(m\\)[ \t]+"
1580 "\\(m[ \t]*&[ \t]*"
1581 "(S_IF[A-Z][A-Z][A-Z]+|0[0-9]+)"
1582 "[ \t]*\\)";
1583 test_text = '#define S_ISREG(m) (m & S_IFREG) /* is regular? */';
1584 };
1585
1586
1587 /*
1588 * Put cpp wrappers around these include files to avoid redeclaration
1589 * errors during multiple inclusion on m88k-tektronix-sysv3.
1590 */
1591 fix = {
1592 hackname = m88k_multi_incl;
1593 mach = "m88k-tektronix-sysv3*";
1594 files = "time.h";
1595 bypass = "#ifndef";
1596 c_fix = wrap;
1597 test_text = "";
1598 };
1599
1600
1601 /*
1602 * Fix BSD machine/ansi.h to use __builtin_va_list to define _BSD_VA_LIST_.
1603 *
1604 * On NetBSD, machine is a symbolic link to an architecture specific
1605 * directory name, so we can't match a specific file name here.
1606 */
1607 fix = {
1608 hackname = machine_ansi_h_va_list;
1609 select = "define[ \t]+_BSD_VA_LIST_[ \t]";
1610 bypass = '__builtin_va_list';
1611
1612 c_fix = format;
1613 c_fix_arg = "%1__builtin_va_list";
1614 c_fix_arg = "(define[ \t]+_BSD_VA_LIST_[ \t]+).*";
1615
1616 test_text = " # define _BSD_VA_LIST_\tchar**";
1617 };
1618
1619
1620 /*
1621 * Fix non-ansi machine name defines
1622 */
1623 fix = {
1624 hackname = machine_name;
1625 c_test = machine_name;
1626 c_fix = machine_name;
1627
1628 test_text = "/* MACH_DIFF: */\n"
1629 "#if defined( i386 ) || defined( sparc ) || defined( vax )"
1630 "\n/* no uniform test, so be careful :-) */";
1631 };
1632
1633
1634 /*
1635 * Some math.h files define struct exception, which conflicts with
1636 * the class exception defined in the C++ file std/stdexcept.h. We
1637 * redefine it to __math_exception. This is not a great fix, but I
1638 * haven't been able to think of anything better.
1639 * Note that we have to put the #ifdef/#endif blocks at beginning
1640 * and end of file, because fixproto runs after us and may insert
1641 * additional references to struct exception.
1642 */
1643 fix = {
1644 hackname = math_exception;
1645 files = math.h;
1646 select = "struct exception";
1647 bypass = 'We have a problem when using C\+\+';
1648 c_fix = wrap;
1649
1650 c_fix_arg = "#ifdef __cplusplus\n"
1651 "#define exception __math_exception\n"
1652 "#endif\n";
1653
1654 c_fix_arg = "#ifdef __cplusplus\n"
1655 "#undef exception\n"
1656 "#endif\n";
1657
1658 test_text = "typedef struct exception t_math_exception;";
1659 };
1660
1661
1662 /*
1663 * This looks pretty broken to me. ``dbl_max_def'' will contain
1664 * "define DBL_MAX " at the start, when what we really want is just
1665 * the value portion. Can't figure out how to write a test case
1666 * for this either :-(
1667 */
1668 fix = {
1669 hackname = math_huge_val_from_dbl_max;
1670 files = math.h;
1671
1672 /*
1673 * IF HUGE_VAL is defined to be DBL_MAX *and* DBL_MAX is _not_ defined
1674 * in math.h, this fix applies.
1675 */
1676 select = "define[ \t]+HUGE_VAL[ \t]+DBL_MAX";
1677 bypass = "define[ \t]+DBL_MAX";
1678
1679 shell =
1680 /*
1681 * See if we have a definition for DBL_MAX in float.h.
1682 * If we do, we will replace the one in math.h with that one.
1683 */
1684
1685 "\tdbl_max_def=`egrep 'define[ \t]+DBL_MAX[ \t]+.*' float.h "
1686 "| sed 's/.*DBL_MAX[ \t]*//' 2>/dev/null`\n\n"
1687
1688 "\tif ( test -n \"${dbl_max_def}\" ) > /dev/null 2>&1\n"
1689 "\tthen sed -e '/define[ \t]*HUGE_VAL[ \t]*DBL_MAX/"
1690 "s@DBL_MAX@'\"$dbl_max_def@\"\n"
1691 "\telse cat\n"
1692 "\tfi";
1693
1694 test_text =
1695 "`echo '#define DBL_MAX\t3.1415e+9 /* really big */' >> float.h`\n"
1696 "#define HUGE_VAL DBL_MAX";
1697 };
1698
1699
1700 /*
1701 * In any case, put #ifndef .. #endif around #define HUGE_VAL in math.h.
1702 */
1703 fix = {
1704 hackname = math_huge_val_ifndef;
1705 files = math.h;
1706 files = math/math.h;
1707 select = "define[ \t]+HUGE_VAL";
1708
1709 c_fix = format;
1710 c_fix_arg = "#ifndef HUGE_VAL\n%0\n#endif";
1711 c_fix_arg = "^[ \t]*#[ \t]*define[ \t]+HUGE_VAL[ \t].*";
1712
1713 test_text = "# define\tHUGE_VAL 3.4e+40";
1714 };
1715
1716
1717 /*
1718 * nested comment
1719 */
1720 fix = {
1721 hackname = nested_auth_des;
1722 files = rpc/rpc.h;
1723 select = '(/\*.*rpc/auth_des\.h>.*)/\*';
1724 c_fix = format;
1725 c_fix_arg = "%1*/ /*";
1726 test_text = "/*#include <rpc/auth_des.h> /* skip this */";
1727 };
1728
1729
1730 /*
1731 * Fix nested comments in Motorola's <limits.h> and <sys/limits.h>
1732 */
1733 fix = {
1734 hackname = nested_motorola;
1735 mach = "m68k-motorola-sysv*";
1736 files = sys/limits.h;
1737 files = limits.h;
1738 select = "max # bytes atomic in write|error value returned by Math lib";
1739
1740 sed = "s@^\\(#undef[ \t][ \t]*PIPE_BUF[ \t]*"
1741 "/\\* max # bytes atomic in write to a\\)$@\\1 */@";
1742 sed = "s@\\(/\\*#define\tHUGE_VAL\t3.[0-9e+]* \\)"
1743 "\\(/\\*error value returned by Math lib\\*/\\)$@\\1*/ \\2@";
1744
1745 test_text =
1746 "#undef PIPE_BUF /* max # bytes atomic in write to a\n"
1747 "\t\t/* PIPE */\n"
1748 "/*#define\tHUGE_VAL\t3.9e+9 /*error value returned by Math lib*/";
1749 };
1750
1751
1752 /*
1753 * Fixing nested comments in ISC <sys/limits.h>
1754 */
1755 fix = {
1756 hackname = nested_sys_limits;
1757 files = sys/limits.h;
1758 select = CHILD_MAX;
1759 sed = "/CHILD_MAX/s,/\\* Max, Max,";
1760 sed = "/OPEN_MAX/s,/\\* Max, Max,";
1761 test_text = "/*\n#define CHILD_MAX 20 /* Max, Max, ... */ /*\n"
1762 "#define OPEN_MAX 20 /* Max, Max, ... */\n";
1763 };
1764
1765 /*
1766 * fix bogus recursive stdlib.h in NEWS-OS 4.0C
1767 */
1768 fix = {
1769 hackname = news_os_recursion;
1770 files = stdlib.h;
1771 select = "[ \t]*#include <stdlib\\.h>.*";
1772
1773 c_fix = format;
1774 c_fix_arg = "#ifdef BOGUS_RECURSION\n%0\n#endif";
1775 test_text = "#include <stdlib.h>";
1776 };
1777
1778
1779 /*
1780 * NeXT 3.2 adds const prefix to some math functions.
1781 * These conflict with the built-in functions.
1782 */
1783 fix = {
1784 hackname = next_math_prefix;
1785 files = ansi/math.h;
1786 select = "^extern[ \t]+double[ \t]+__const__[ \t]";
1787
1788 c_fix = format;
1789 c_fix_arg = "extern double %1(";
1790 c_fix_arg = "^extern[ \t]+double[ \t]+__const__[ \t]+([a-z]+)\\(";
1791
1792 test_text = "extern\tdouble\t__const__\tmumble();";
1793 };
1794
1795
1796 /*
1797 * NeXT 3.2 uses the word "template" as a parameter for some
1798 * functions. GCC reports an invalid use of a reserved key word
1799 * with the built-in functions.
1800 */
1801 fix = {
1802 hackname = next_template;
1803 files = bsd/libc.h;
1804 select = "[ \t]template\\)";
1805
1806 c_fix = format;
1807 c_fix_arg = "(%1)";
1808 c_fix_arg = "\\(([^)]*)[ \t]template\\)";
1809 test_text = "extern mumble( char * template); /* fix */";
1810 };
1811
1812
1813 /*
1814 * NeXT 3.2 includes the keyword volatile in the abort() and exit()
1815 * function prototypes. That conflicts with the built-in functions.
1816 */
1817 fix = {
1818 hackname = next_volitile;
1819 files = ansi/stdlib.h;
1820 select = "^extern[ \t]+volatile[ \t]+void[ \t]";
1821
1822 c_fix = format;
1823 c_fix_arg = "extern void %1(";
1824 c_fix_arg = "^extern[ \t]+volatile[ \t]+void[ \t]+(exit|abort)\\(";
1825
1826 test_text = "extern\tvolatile\tvoid\tabort();";
1827 };
1828
1829
1830 /*
1831 * NeXT 2.0 defines 'int wait(union wait*)', which conflicts with Posix.1.
1832 * Note that version 3 of the NeXT system has wait.h in a different directory,
1833 * so that this code won't do anything. But wait.h in version 3 has a
1834 * conditional, so it doesn't need this fix. So everything is okay.
1835 */
1836 fix = {
1837 hackname = next_wait_union;
1838 files = sys/wait.h;
1839
1840 select = 'wait\(union wait';
1841 c_fix = format;
1842 c_fix_arg = "wait(void";
1843 test_text = "extern pid_d wait(union wait*);";
1844 };
1845
1846
1847 /*
1848 * a missing semi-colon at the end of the nodeent structure definition.
1849 */
1850 fix = {
1851 hackname = nodeent_syntax;
1852 files = netdnet/dnetdb.h;
1853 select = "char[ \t]*\\*na_addr[ \t]*$";
1854 c_fix = format;
1855 c_fix_arg = "%0;";
1856 test_text = "char *na_addr\t";
1857 };
1858
1859
1860 /*
1861 * sys/lc_core.h on some versions of OSF1/4.x pollutes the namespace by
1862 * defining regex.h related types. This causes libg++ build and usage
1863 * failures. Fixing this correctly requires checking and modifying 3 files.
1864 */
1865 fix = {
1866 hackname = osf_namespace_a;
1867 files = reg_types.h;
1868 files = sys/lc_core.h;
1869 test = " -r reg_types.h";
1870 test = " -r sys/lc_core.h";
1871 test = " -n \"`grep '} regex_t;' reg_types.h`\"";
1872 test = " -z \"`grep __regex_t regex.h`\"";
1873
1874 c_fix = format;
1875 c_fix_arg = "__%0";
1876 c_fix_arg = "reg(ex|off|match)_t";
1877
1878 test_text = "`touch sys/lc_core.h`"
1879 "typedef struct {\n int stuff, mo_suff;\n} regex_t;\n"
1880 "extern regex_t re;\n"
1881 "extern regoff_t ro;\n"
1882 "extern regmatch_t rm;\n";
1883 };
1884
1885 fix = {
1886 hackname = osf_namespace_c;
1887 files = regex.h;
1888 test = " -r reg_types.h";
1889 test = " -r sys/lc_core.h";
1890 test = " -n \"`grep '} regex_t;' reg_types.h`\"";
1891 test = " -z \"`grep __regex_t regex.h`\"";
1892
1893 select = "#include <reg_types\.h>.*";
1894 c_fix = format;
1895 c_fix_arg = "%0\n"
1896 "typedef __regex_t\tregex_t;\n"
1897 "typedef __regoff_t\tregoff_t;\n"
1898 "typedef __regmatch_t\tregmatch_t;";
1899
1900 test_text = "#include <reg_types.h>";
1901 };
1902
1903
1904 /*
1905 * Fix __page_size* declarations in pthread.h AIX 4.1.[34].
1906 * The original ones fail if uninitialized externs are not common.
1907 * This is the default for all ANSI standard C++ compilers.
1908 */
1909 fix = {
1910 hackname = pthread_page_size;
1911 files = pthread.h;
1912 select = "^int __page_size";
1913 c_fix = format;
1914 c_fix_arg = "extern %0";
1915 test_text = "int __page_size;";
1916 };
1917
1918
1919 /*
1920 * Fix return type of fread and fwrite on sysV68
1921 */
1922 fix = {
1923 hackname = read_ret_type;
1924 files = stdio.h;
1925 select = "extern int\t.*, fread\\(\\), fwrite\\(\\)";
1926 c_fix = format;
1927 c_fix_arg = "extern unsigned int fread(), fwrite();\n%1%2";
1928 c_fix_arg = "(extern int\t.*), fread\\(\\), fwrite\\(\\)(.*)";
1929
1930 test_text = "extern int\tfclose(), fflush(), fread(), fwrite(), foo();";
1931 };
1932
1933
1934 /*
1935 * function class(double x) conflicts with C++ keyword on rs/6000
1936 */
1937 fix = {
1938 hackname = rs6000_double;
1939 files = math.h;
1940 select = '[^a-zA-Z_]class\(';
1941
1942 c_fix = format;
1943 c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
1944 c_fix_arg = '^.*[^a-zA-Z_]class\(.*';
1945
1946 test_text = "extern int class();";
1947 };
1948
1949
1950 /*
1951 * Wrong fchmod prototype on RS/6000.
1952 */
1953 fix = {
1954 hackname = rs6000_fchmod;
1955 files = sys/stat.h;
1956 select = 'fchmod\(char \*';
1957 c_fix = format;
1958 c_fix_arg = "fchmod(int";
1959 test_text = "extern int fchmod(char *, mode_t);";
1960 };
1961
1962
1963 /*
1964 * parameters conflict with C++ new on rs/6000
1965 */
1966 fix = {
1967 hackname = rs6000_param;
1968 files = "stdio.h";
1969 files = "unistd.h";
1970
1971 select = 'rename\(const char \*old, const char \*new\)';
1972 c_fix = format;
1973 c_fix_arg = 'rename(const char *_old, const char *_new)';
1974
1975 test_text = 'extern int rename(const char *old, const char *new);';
1976 };
1977
1978
1979 /*
1980 * The static functions lstat() and fchmod() in <sys/stat.h>
1981 * cause G++ grief since they're not wrapped in "if __cplusplus".
1982 *
1983 * On SCO OpenServer 5.0.0 through (at least) 5.0.5 <sys/stat.h> contains
1984 * tiny static wrappers that aren't C++ safe.
1985 */
1986 fix = {
1987 hackname = sco_static_func;
1988 files = sys/stat.h;
1989 mach = "i?86-*-sco3.2*";
1990 select = "^static int";
1991
1992 sed = "/^static int/i\\\n"
1993 "#if __cplusplus\\\n"
1994 "extern \"C\" {\\\n"
1995 "#endif /* __cplusplus */";
1996
1997 sed = "/^}$/a\\\n"
1998 "#if __cplusplus\\\n"
1999 " }\\\n"
2000 "#endif /* __cplusplus */";
2001
2002 test_text =
2003 "#ifdef __STDC__\n"
2004 "static int\tstat(const char *__f, struct stat *__p) {\n"
2005 "\treturn __stat32(__f, __p);\n"
2006 "}\n\n# else /* !__STDC__ */\n"
2007
2008 "static int\tstat(__f, __p)\n"
2009 "\tchar *__f;\n"
2010 "\tstruct stat *__p;\n"
2011 "{\n"
2012 "\treturn __stat32(__f, __p);\n"
2013 "}\n"
2014 "#endif";
2015 };
2016
2017
2018 /*
2019 * Fix prototype declaration of utime in sys/times.h.
2020 * In 3.2v4.0 the const is missing.
2021 */
2022 fix = {
2023 hackname = sco_utime;
2024 files = sys/times.h;
2025 mach = "i?86-*-sco3.2v4*";
2026
2027 select = '\(const char \*, struct utimbuf \*\);';
2028 c_fix = format;
2029 c_fix_arg = '(const char *, const struct utimbuf *);';
2030
2031 test_text = "extern int utime(const char *, struct utimbuf *);";
2032 };
2033
2034
2035 /*
2036 * Sun Solaris defines PTHREAD_MUTEX_INITIALIZER with a trailing
2037 * "0" for the last field of the pthread_mutex_t structure, which is
2038 * of type upad64_t, which itself is typedef'd to int64_t, but with
2039 * __STDC__ defined (e.g. by -ansi) it is a union. So change the
2040 * initializer to "{0}" instead
2041 */
2042 fix = {
2043 hackname = solaris_mutex_init;
2044 select = '@\(#\)pthread.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
2045 files = pthread.h;
2046 c_fix = format;
2047 c_fix_arg = "#if __STDC__ - 0 == 0 && !defined(_NO_LONGLONG)\n"
2048 "%0\n"
2049 "#else\n"
2050 "%1, {0}}%3\n"
2051 "#endif";
2052 c_fix_arg = "(^#define[ \t]+PTHREAD_(MUTEX|COND)_INITIALIZER[ \t]+{.*)"
2053 ",[ \t]*0}" "(|[ \t].*)$";
2054 test_text =
2055 '#ident "@(#)pthread.h 1.26 98/04/12 SMI"'"\n"
2056 "#define PTHREAD_MUTEX_INITIALIZER\t{{{0},0}, {{{0}}}, 0}\n"
2057 "#define PTHREAD_COND_INITIALIZER\t{{{0}, 0}, 0}\t/* DEFAULTCV */\n"
2058 "#define PTHREAD_RWLOCK_INITIALIZER\t"
2059 "{0, 0, 0, {0, 0, 0}, {0, 0}, {0, 0}}";
2060 };
2061
2062
2063 /*
2064 * Solaris 2.8 has what appears to be some gross workaround for
2065 * some old version of their c++ compiler. G++ doesn't want it
2066 * either, but doesn't want to be tied to SunPRO version numbers.
2067 */
2068 fix = {
2069 hackname = solaris_stdio_tag;
2070 files = stdio_tag.h;
2071
2072 select = '__cplusplus < 54321L';
2073 sed = 's/defined(__cplusplus) && (__cplusplus < 54321L)/0/';
2074
2075 test_text = '#if\tdefined(__cplusplus) && (__cplusplus < 54321L)';
2076 };
2077
2078
2079 /*
2080 * Sony NEWSOS 5.0 does not support the complete ANSI C standard.
2081 */
2082 #ifdef SONY
2083 fix = {
2084 hackname = sony_ctype;
2085 files = ctype.h;
2086 test = " -x /bin/sony";
2087 test = " ! -z \"`if /bin/sony ; then echo true ; fi`\"";
2088 sed = "s/__ctype/_ctype/g";
2089 };
2090 #endif
2091
2092
2093 /*
2094 * Sony NEWSOS 5.0 does not support the complete ANSI C standard.
2095 */
2096 #ifdef SONY
2097 fix = {
2098 hackname = sony_stdio;
2099 files = stdio.h;
2100 test = " -x /bin/sony";
2101 test = " ! -z \"`if /bin/sony ; then echo true ; fi`\"";
2102 sed = "s/__filbuf/_filbuf/g\n"
2103 "s/__flsbuf/_flsbuf/g\n"
2104 "s/__iob/_iob/g";
2105 };
2106 #endif
2107
2108
2109 /*
2110 * Add a `static' declaration of `getrnge' into <regexp.h>.
2111 *
2112 * Don't do this if there is already a `static void getrnge' declaration
2113 * present, since this would cause a redeclaration error. Solaris 2.x has
2114 * such a declaration.
2115 */
2116 #ifdef SVR4
2117 fix = {
2118 hackname = static_getrnge;
2119 files = regexp.h;
2120 bypass = "static void getrnge";
2121 sed = "/^static int[ \t]*size;/c\\\n"
2122 "static int size ;\\\n\\\n"
2123 "static int getrnge ();";
2124 };
2125 #endif
2126
2127
2128 /*
2129 * a missing semi-colon at the end of the statsswtch structure definition.
2130 */
2131 fix = {
2132 hackname = statsswtch;
2133 files = rpcsvc/rstat.h;
2134 select = "boottime$";
2135 c_fix = format;
2136 c_fix_arg = "boottime;";
2137 test_text = "struct statswtch {\n int boottime\n};";
2138 };
2139
2140
2141 /*
2142 * Arrange for stdio.h to use stdarg.h to define __gnuc_va_list.
2143 * On 4BSD-derived systems, stdio.h defers to machine/ansi.h; that's
2144 * OK too.
2145 */
2146 fix = {
2147 hackname = stdio_stdarg_h;
2148 files = stdio.h;
2149 bypass = "include.*(stdarg\.h|machine/ansi\.h)";
2150
2151 c_fix = wrap;
2152
2153 c_fix_arg = "#define __need___va_list\n#include <stdarg.h>\n";
2154
2155 test_text = "";
2156 };
2157
2158
2159 /*
2160 * Don't use or define the name va_list in stdio.h.
2161 * This is for ANSI and also to interoperate properly with gcc's varargs.h.
2162 * Note _BSD_VA_LIST_ is dealt with elsewhere.
2163 */
2164 fix = {
2165 hackname = stdio_va_list;
2166 files = stdio.h;
2167 bypass = '__gnuc_va_list|_BSD_VA_LIST_|__DJ_va_list';
2168
2169 /*
2170 * Use __gnuc_va_list in arg types in place of va_list.
2171 * On 386BSD use __gnuc_va_list instead of _VA_LIST_. On Tru64 UNIX V5.1A
2172 * use __gnuc_va_list instead of __VA_LIST__. We're hoping the
2173 * trailing parentheses and semicolon save all other systems from this.
2174 * Define __not_va_list__ (something harmless and unused)
2175 * instead of va_list.
2176 * Don't claim to have defined va_list.
2177 */
2178 sed = "s@ va_list @ __gnuc_va_list @\n"
2179 "s@ va_list)@ __gnuc_va_list)@\n"
2180 "s@ _VA_LIST_));@ __gnuc_va_list));@\n"
2181 "s@ __VA_LIST__));@ __gnuc_va_list));@\n"
2182 "s@ va_list@ __not_va_list__@\n"
2183 "s@\\*va_list@*__not_va_list__@\n"
2184 "s@ __va_list)@ __gnuc_va_list)@\n"
2185 "s@typedef[ \t]\\(.*\\)[ \t]va_list[ \t]*;"
2186 "@typedef \\1 __not_va_list__;@\n"
2187 "s@GNUC_VA_LIST@GNUC_Va_LIST@\n"
2188 "s@_NEED___VA_LIST@_NEED___Va_LIST@\n"
2189 "s@VA_LIST@DUMMY_VA_LIST@\n"
2190 "s@_Va_LIST@_VA_LIST@";
2191 test_text = "extern void mumble( va_list);";
2192 };
2193
2194
2195 /*
2196 * "!__STDC__" or "__STDC__==0" or "__STDC__!=1" or "__STDC__-0==0"
2197 * is "!defined( __STRICT_ANSI__ )"
2198 */
2199 fix = {
2200 hackname = strict_ansi_not;
2201 select = "^([ \t]*#[ \t]*if.*)"
2202 "(!__STDC__"
2203 "|__STDC__[ \t]*==[ \t]*0"
2204 "|__STDC__[ \t]*!=[ \t]*1"
2205 "|__STDC__[ \t]*-[ \t]*0[ \t]*==[ \t]*0)";
2206 /* Tru64 UNIX V4.0F/V5.1 <standards.h> supports GCC usage of __STDC__. */
2207 bypass = 'GNU and MIPS C compilers define __STDC__ differently';
2208 c_test = stdc_0_in_system_headers;
2209
2210 c_fix = format;
2211 c_fix_arg = "%1 !defined(__STRICT_ANSI__)";
2212
2213 test_text = "#if !__STDC__ \n"
2214 "#if __STDC__ == 0\n"
2215 "#if __STDC__ != 1\n"
2216 "#if __STDC__ - 0 == 0"
2217 "/* not std C */\nint foo;\n"
2218 "\n#end-end-end-end-if :-)";
2219 };
2220
2221 /*
2222 * "__STDC__-0==0"
2223 * is "!defined( __STRICT_ANSI__ )" on continued #if-s
2224 */
2225 fix = {
2226 hackname = strict_ansi_not_ctd;
2227 files = math.h, limits.h, stdio.h, signal.h,
2228 stdlib.h, sys/signal.h, time.h;
2229 /*
2230 * Starting at the beginning of a line, skip white space and
2231 * a leading "(" or "&&" or "||". One of those must be found.
2232 * Then, zero, one or more copies of a "defined(_FOO_BAR_) &&"
2233 * expression. If these are nested, then they must accumulate
2234 * because we won't match any closing parentheses. Finally,
2235 * after skipping over all that, we must then match our suspect
2236 * phrase: "__STDC__-0==0" with or without white space.
2237 */
2238 select = "^([ \t]*" '(\(|&&|\|\|)'
2239 "([ \t(]*!*[ \t]*defined\\([a-zA-Z_0-9]+\\)[ \t]*[|&][|&])*"
2240 "[ \t(]*)"
2241 "(__STDC__[ \t]*(|-[ \t]*0[ \t]*)==[ \t]*0)";
2242 c_test = stdc_0_in_system_headers;
2243
2244 c_fix = format;
2245 c_fix_arg = "%1 !defined(__STRICT_ANSI__)";
2246
2247 test_text = "#if 1 && \\\\\n"
2248 "&& defined(mumbling) |& (__STDC__ - 0 == 0) \\\\\n"
2249 "( __STDC__ == 0 && !defined(_XOPEN_SOURCE) \\\\\n"
2250 "|| __STDC__ - 0 == 0 ) /* not std C */\n"
2251 "int foo;\n#endif";
2252 };
2253
2254
2255 /*
2256 * "__STDC__!=0" or "__STDC__==1" or "__STDC__-0==1"
2257 * is "defined( __STRICT_ANSI__ )"
2258 */
2259 fix = {
2260 hackname = strict_ansi_only;
2261 select = "^([ \t]*#[ \t]*if.*)"
2262 "(__STDC__[ \t]*!=[ \t]*0"
2263 "|__STDC__[ \t]*==[ \t]*1"
2264 "|__STDC__[ \t]*-[ \t]*0[ \t]*==[ \t]*1"
2265 "|__STDC__[ \t]*-[ \t]*0[ \t]*!=[ \t]*0)";
2266 c_test = stdc_0_in_system_headers;
2267
2268 c_fix = format;
2269 c_fix_arg = "%1 defined(__STRICT_ANSI__)";
2270
2271 test_text = "#if __STDC__ == 1 /* is std C\n */\nint foo;\n#endif";
2272 };
2273
2274
2275 /*
2276 * IRIX 4.0.5 <rpc/xdr.h> uses struct __file_s
2277 * in prototype without previous definition.
2278 */
2279 fix = {
2280 hackname = struct_file;
2281 files = rpc/xdr.h;
2282 select = '^.*xdrstdio_create.*struct __file_s';
2283 c_fix = format;
2284 c_fix_arg = "struct __file_s;\n%0";
2285 test_text = "extern void xdrstdio_create( struct __file_s* );";
2286 };
2287
2288
2289 /*
2290 * IRIX 4.0.5 <rpc/auth.h> uses struct sockaddr
2291 * in prototype without previous definition.
2292 */
2293 fix = {
2294 hackname = struct_sockaddr;
2295 files = rpc/auth.h;
2296 select = "^.*authdes_create.*struct sockaddr";
2297 bypass = "<sys/socket\.h>";
2298 c_fix = format;
2299 c_fix_arg = "struct sockaddr;\n%0";
2300 test_text = "extern AUTH* authdes_create( struct sockaddr* );";
2301 };
2302
2303
2304 /*
2305 * Apply fix this to all OSs since this problem seems to effect
2306 * more than just SunOS.
2307 */
2308 fix = {
2309 hackname = sun_auth_proto;
2310 files = rpc/auth.h;
2311 files = rpc/clnt.h;
2312 files = rpc/svc.h;
2313 files = rpc/xdr.h;
2314 /*
2315 * Select those files containing '(*name)()'.
2316 */
2317 select = '\(\*[a-z][a-z_]*\)\(\)';
2318
2319 c_fix = format;
2320 c_fix_arg = "#ifdef __cplusplus\n%1(...);%2\n"
2321 "#else\n%1();%2\n#endif";
2322 c_fix_arg = '(.*\(\*[a-z][a-z_]*\))\(\);(.*)';
2323
2324 test_text =
2325 "struct auth_t {\n"
2326 " int (*name)(); /* C++ bad */\n"
2327 "};";
2328 };
2329
2330
2331 /*
2332 * Fix bogus #ifdef on SunOS 4.1.
2333 */
2334 fix = {
2335 hackname = sun_bogus_ifdef;
2336 files = "hsfs/hsfs_spec.h";
2337 files = "hsfs/iso_spec.h";
2338 select = '#ifdef(.*\|\|.*)';
2339 c_fix = format;
2340 c_fix_arg = "#if%1";
2341
2342 test_text = "#ifdef __i386__ || __vax__ || __sun4c__";
2343 };
2344
2345
2346 /*
2347 * Fix the CAT macro in SunOS memvar.h.
2348 */
2349 fix = {
2350 hackname = sun_catmacro;
2351 files = pixrect/memvar.h;
2352 select = "^#define[ \t]+CAT\\(a,b\\).*";
2353 c_fix = format;
2354
2355 c_fix_arg =
2356 "#ifdef __STDC__\n"
2357 "# define CAT(a,b) a##b\n"
2358 "#else\n%0\n#endif";
2359
2360 test_text =
2361 "#define CAT(a,b)\ta/**/b";
2362 };
2363
2364
2365 /*
2366 * Fix return type of free and {c,m,re}alloc in <malloc.h> on SunOS 4.1.
2367 * Also fix return type of {m,re}alloc in <malloc.h> on sysV68
2368 */
2369 fix = {
2370 hackname = sun_malloc;
2371 files = malloc.h;
2372
2373 sed = "s/typedef[ \t]char \\*\tmalloc_t/typedef void \\*\tmalloc_t/g";
2374 sed = "s/int[ \t][ \t]*free/void\tfree/g";
2375 sed = "s/char\\([ \t]*\\*[ \t]*malloc\\)/void\\1/g";
2376 sed = "s/char\\([ \t]*\\*[ \t]*realloc\\)/void\\1/g";
2377 sed = "s/char\\([ \t]*\\*[ \t]*calloc\\)/void\\1/g";
2378
2379 test_text =
2380 "typedef char *\tmalloc_t;\n"
2381 "int \tfree();\n"
2382 "char*\tmalloc();\n"
2383 "char*\tcalloc();\n"
2384 "char*\trealloc();";
2385 };
2386
2387
2388 /*
2389 * Check for yet more missing ';' in struct (in SunOS 4.0.x)
2390 */
2391 fix = {
2392 hackname = sun_rusers_semi;
2393 files = rpcsvc/rusers.h;
2394 select = "_cnt$";
2395 sed = "/^struct/,/^};/s/_cnt$/_cnt;/";
2396 test_text = "struct mumble\n int _cnt\n};";
2397 };
2398
2399
2400 /*
2401 * signal.h on SunOS defines signal using (),
2402 * which causes trouble when compiling with g++ -pedantic.
2403 */
2404 fix = {
2405 hackname = sun_signal;
2406 files = sys/signal.h;
2407 files = signal.h;
2408 select = "^void\t" '\(\*signal\(\)\)\(\);.*';
2409
2410 c_fix = format;
2411 c_fix_arg =
2412 "#ifdef __cplusplus\n"
2413 "void\t(*signal(...))(...);\n"
2414 "#else\n%0\n#endif";
2415
2416 test_text = "void\t(*signal())();";
2417 };
2418
2419
2420 /*
2421 * math.h on SunOS 4 puts the declaration of matherr before the definition
2422 * of struct exception, so the prototype (added by fixproto) causes havoc.
2423 */
2424 fix = {
2425 hackname = sunos_matherr_decl;
2426 files = math.h;
2427
2428 /* If matherr has a prototype already, the header needs no fix. */
2429 bypass = 'matherr.*(struct exception|__MATH_EXCEPTION)';
2430 select = matherr;
2431
2432 c_fix = wrap;
2433 c_fix_arg = "struct exception;\n";
2434
2435 test_text = "extern int matherr();";
2436 };
2437
2438
2439 /*
2440 * Correct the return type for strlen in strings.h in SunOS 4.
2441 */
2442 fix = {
2443 hackname = sunos_strlen;
2444 files = strings.h;
2445 select = "int[ \t]*strlen\\(\\);(.*)";
2446 c_fix = format;
2447 c_fix_arg = "__SIZE_TYPE__ strlen();%1";
2448 test_text = " int\tstrlen(); /* string length */";
2449 };
2450
2451
2452 /*
2453 * Solaris math.h and floatingpoint.h define __P without protection,
2454 * which conflicts with the fixproto definition. The fixproto
2455 * definition and the Solaris definition are used the same way.
2456 */
2457 fix = {
2458 hackname = svr4__p;
2459 files = math.h;
2460 files = floatingpoint.h;
2461 select = "^#define[ \t]+__P.*";
2462 c_fix = format;
2463 c_fix_arg = "#ifndef __P\n%0\n#endif";
2464
2465 test_text = "#define __P(a) a";
2466 };
2467
2468
2469 /*
2470 * Disable apparent native compiler optimization cruft in SVR4.2 <string.h>
2471 * that is visible to any ANSI compiler using this include. Simply
2472 * delete the lines that #define some string functions to internal forms.
2473 */
2474 #ifdef SVR4
2475 fix = {
2476 hackname = svr4_disable_opt;
2477 files = string.h;
2478 select = '#define.*__std_hdr_';
2479 sed = '/#define.*__std_hdr_/d';
2480 };
2481 #endif
2482
2483
2484 /*
2485 * Conditionalize some of <sys/endian.h> on __GNUC__ and __GNUG__.
2486 * On some systems (UnixWare 2, UnixWare 7), the file is byteorder.h
2487 * but we still "hijack" it and redirect it to the GNU byteorder.h..
2488 */
2489 #ifdef SVR5
2490 fix = {
2491 hackname = svr4_endian;
2492 files = sys/endian.h;
2493 #ifdef LATER
2494 /*
2495 * since we emit our own sys/byteorder.h,
2496 * this fix can never be applied to that file.
2497 */
2498 files = sys/byteorder.h;
2499 #endif
2500 bypass = '__GNUC__';
2501
2502 sed = "/#\tifdef\t__STDC__/i\\\n"
2503 "# if !defined (__GNUC__) && !defined (__GNUG__)\n";
2504
2505 sed = "/#\t\tinclude\t<sys\\/byteorder.h>/s/\t\t/ /";
2506
2507 sed = "/# include\t<sys\\/byteorder.h>/i\\\n"
2508 "# endif /* !defined (__GNUC__) && !defined (__GNUG__) */\n";
2509 };
2510 #endif /* SVR5 */
2511
2512
2513 /*
2514 * Remove useless extern keyword from struct forward declarations
2515 * in <sys/stream.h> and <sys/strsubr.h>
2516 */
2517 #ifdef SVR4
2518 fix = {
2519 hackname = svr4_extern_struct;
2520 files = sys/stream.h;
2521 files = sys/strsubr.h;
2522 select = 'extern struct [a-z_]*;';
2523 sed = 's/extern struct \([a-z][a-z_]*\)/struct \1/';
2524 };
2525 #endif
2526
2527 /*
2528 * Fix declarations of `ftw' and `nftw' in <ftw.h>. On some/most SVR4
2529 * systems the file <ftw.h> contains extern declarations of these
2530 * functions followed by explicitly `static' definitions of these
2531 * functions... and that's not allowed according to ANSI C. (Note
2532 * however that on Solaris, this header file glitch has been pre-fixed by
2533 * Sun. In the Solaris version of <ftw.h> there are no static
2534 * definitions of any function so we don't need to do any of this stuff
2535 * when on Solaris.
2536 */
2537 #ifdef SVR4
2538 #ifndef SOLARIS
2539 fix = {
2540 hackname = svr4_ftw;
2541 files = ftw.h;
2542 select = '^extern int ftw\(const';
2543
2544 sed = '/^extern int ftw(const/i' "\\\n"
2545 "#if !defined(_STYPES)\\\n"
2546 "static\\\n"
2547 "#else\\\n"
2548 "extern\\\n"
2549 "#endif";
2550 sed = 's/extern \(int ftw(const.*\)$/\1/';
2551 sed = "/^extern int nftw/i\\\n"
2552 "#if defined(_STYPES)\\\n"
2553 "static\\\n"
2554 "#else\\\n"
2555 "extern\\\n"
2556 "#endif";
2557 sed = 's/extern \(int nftw.*\)$/\1/';
2558 sed = "/^extern int ftw(),/c\\\n"
2559 "#if !defined(_STYPES)\\\n"
2560 "static\\\n"
2561 "#else\\\n"
2562 "extern\\\n"
2563 "#endif\\\n"
2564 " int ftw();\\\n"
2565 "#if defined(_STYPES)\\\n"
2566 "static\\\n"
2567 "#else\\\n"
2568 "extern\\\n"
2569 "#endif\\\n"
2570 " int nftw();";
2571 };
2572 #endif
2573 #endif
2574
2575
2576 /*
2577 * Fix broken decl of getcwd present on some svr4 systems.
2578 */
2579 fix = {
2580 hackname = svr4_getcwd;
2581 files = stdlib.h;
2582 files = unistd.h;
2583 files = prototypes.h;
2584 select = 'getcwd\(char \*, int\)';
2585
2586 c_fix = format;
2587 c_fix_arg = "getcwd(char *, size_t)";
2588
2589 test_text = "extern char* getcwd(char *, int);";
2590 };
2591
2592
2593 /*
2594 * set ifdef _KERNEL
2595 */
2596 #ifdef SVR4
2597 fix = {
2598 hackname = svr4_kernel;
2599 files = fs/rfs/rf_cache.h;
2600 files = sys/erec.h;
2601 files = sys/err.h;
2602 files = sys/char.h;
2603 files = sys/getpages.h;
2604 files = sys/map.h;
2605 files = sys/cmn_err.h;
2606 files = sys/kdebugger.h;
2607 bypass = '_KERNEL';
2608 c_fix = wrap;
2609
2610 c_fix_arg = "#ifdef _KERNEL\n";
2611 c_fix_arg = "#endif /* _KERNEL */\n";
2612 test_text = "";
2613 };
2614 #endif
2615
2616 /*
2617 * Delete any #defines of `__i386' which may be present in <ieeefp.h>. They
2618 * tend to conflict with the compiler's own definition of this symbol. (We
2619 * will use the compiler's definition.)
2620 * Likewise __sparc, for Solaris, and __i860, and a few others
2621 * (guessing it is necessary for all of them).
2622 */
2623 #ifdef SVR4
2624 fix = {
2625 hackname = svr4_mach_defines;
2626 files = ieeefp.h;
2627 select = "#define[ \t]*__(i386|i860|mips|sparc|m88k|m68k)[ \t]";
2628 sed = "/#define[ \t]*__\\(i386|i860|mips|sparc|m88k|m68k\\)[ \t]/d";
2629 };
2630 #endif
2631
2632
2633 /*
2634 * Fix declarations of `makedev', `major', and `minor' in <sys/mkdev.h>.
2635 * They are declared as non-static then immediately redeclared as static.
2636 */
2637 #ifdef SVR5
2638 fix = {
2639 hackname = svr4_mkdev;
2640 files = sys/mkdev.h;
2641 select = '^static';
2642
2643 sed = "/^dev_t makedev(/s/^/static /";
2644 sed = "/^major_t major(/s/^/static /";
2645 sed = "/^minor_t minor(/s/^/static /";
2646 };
2647 #endif /* SVR5 */
2648
2649
2650 /*
2651 * Fix reference to NC_NPI_RAW in <sys/netcspace.h>.
2652 * Also fix types of array initializers.
2653 */
2654 #ifdef SVR4
2655 fix = {
2656 hackname = svr4_netcspace;
2657 files = sys/netcspace.h;
2658 select = 'NC_NPI_RAW';
2659 sed = 's/NC_NPI_RAW/NC_TPI_RAW/g';
2660 sed = 's/NC_/(unsigned long) NC_/';
2661 };
2662 #endif
2663
2664 /*
2665 * Fix reference to NMSZ in <sys/adv.h>.
2666 */
2667 #ifdef SVR4
2668 fix = {
2669 hackname = svr4_nmsz;
2670 files = sys/adv.h;
2671 select = '\[NMSZ\]';
2672 sed = 's/\[NMSZ\]/\[RFS_NMSZ\]/g';
2673 };
2674 #endif
2675
2676
2677 /*
2678 * Fix broken decl of profil present on some svr4 systems.
2679 */
2680 fix = {
2681 hackname = svr4_profil;
2682 files = stdlib.h;
2683 files = unistd.h;
2684
2685 select =
2686 'profil\(unsigned short \*, unsigned int, unsigned int, unsigned int\)';
2687 c_fix = format;
2688 c_fix_arg = 'profil(unsigned short *, size_t, int, unsigned int)';
2689
2690 test_text =
2691 'profil(unsigned short *, unsigned int, unsigned int, unsigned int);';
2692 };
2693
2694
2695 /*
2696 * Convert functions to prototype form, and fix arg names in <sys/stat.h>.
2697 */
2698 #ifdef SVR4
2699 fix = {
2700 hackname = svr4_proto_form;
2701 files = sys/stat.h;
2702 select = 'const extern';
2703
2704 sed = "/^stat([ \t]*[^c]/ {\nN\nN\n"
2705 "s/(.*)\\n/( /\n"
2706 "s/;\\n/, /\n"
2707 "s/;$/)/\n" "}";
2708
2709 sed = "/^lstat([ \t]*[^c]/ {\nN\nN\n"
2710 "s/(.*)\\n/( /\n"
2711 "s/;\\n/, /\n"
2712 "s/;$/)/\n" "}";
2713
2714 sed = "/^fstat([ \t]*[^i]/ {\nN\nN\n"
2715 "s/(.*)\\n/( /\n"
2716 "s/;\\n/, /\n"
2717 "s/;$/)/\n" "}";
2718
2719 sed = "/^mknod([ \t]*[^c]/{\nN\nN\nN\n"
2720 "s/(.*)\\n/( /\n"
2721 "s/;\\n/, /g\n"
2722 "s/;$/)/\n" "}";
2723
2724 sed = "1,$s/\\([^A-Za-z]\\)path\\([^A-Za-z]\\)/\\1__path\\2/g";
2725 sed = "1,$s/\\([^A-Za-z]\\)buf\\([^A-Za-z]\\)/\\1__buf\\2/g";
2726 sed = "1,$s/\\([^A-Za-z]\\)fd\\([^A-Za-z]\\)/\\1__fd\\2/g";
2727 sed = "1,$s/ret\\([^u]\\)/__ret\\1/g";
2728 sed = "1,$s/\\([^_]\\)mode\\([^_]\\)/\\1__mode\\2/g";
2729 sed = "1,$s/\\([^_r]\\)dev\\([^_]\\)/\\1__dev\\2/g";
2730 };
2731 #endif
2732
2733 /*
2734 * Add a prototyped declaration of mmap to <sys/mman.h>.
2735 */
2736 #ifdef SVR4
2737 fix = {
2738 hackname = svr4_proto_mmap;
2739 files = sys/mman.h;
2740 select = '^extern caddr_t mmap();$';
2741 sed = '/^extern caddr_t mmap();$/c' "\\\n"
2742 "#ifdef __STDC__\\\n"
2743 "extern caddr_t mmap (caddr_t, size_t, int, int, int, off_t);\\\n"
2744 "#else /* !defined(__STDC__) */\\\n"
2745 "extern caddr_t mmap ();\\\n"
2746 "#endif /* !defined(__STDC__) */\\\n";
2747 };
2748 #endif
2749
2750 /*
2751 * Add a #define of _SIGACTION_ into <sys/signal.h>.
2752 */
2753 #ifdef SVR4
2754 fix = {
2755 hackname = svr4_sigaction;
2756 files = sys/signal.h;
2757 sed = "/^struct sigaction {/i\\\n"
2758 "#define _SIGACTION_";
2759 sed = 's/(void *(\*)())/(void (*)(int))/';
2760 };
2761 #endif
2762
2763 /*
2764 * Put storage class at start of decl, to avoid warning.
2765 */
2766 #ifdef SVR4
2767 fix = {
2768 hackname = svr4_storage_class;
2769 files = rpc/types.h;
2770 select = 'const extern';
2771 sed = 's/const extern/extern const/g';
2772 };
2773 #endif
2774
2775
2776 /*
2777 * Like svr4_mach_defines, but with newfangled syntax.
2778 * Source lines are of #define __i386 #machine(i386). Delete them.
2779 */
2780 #ifdef SVR5
2781 fix = {
2782 hackname = svr5_mach_defines;
2783 files = ieeefp.h;
2784 select = "#define[ \t]*__i386.*\(i386\)";
2785 sed = "/#define[ \t]*__i386.*/d";
2786 };
2787 #endif /* SVR5 */
2788
2789
2790 /*
2791 * Fix return value of mem{ccpy,chr,cpy,set} and str{len,spn,cspn}
2792 * in string.h on sysV68
2793 * Correct the return type for strlen in string.h on Lynx.
2794 * Correct the argument type for ffs in string.h on Alpha OSF/1 V2.0.
2795 * Add missing const for strdup on OSF/1 V3.0.
2796 * On sysV88 layout is slightly different.
2797 */
2798 fix = {
2799 hackname = sysv68_string;
2800 files = testing.h;
2801 files = string.h;
2802
2803 sed = "s/extern[ \t]*int[ \t]*strlen();/extern unsigned int strlen();/";
2804 sed = "s/extern[ \t]*int[ \t]*ffs[ \t]*(long);/extern int ffs(int);/";
2805 sed = "s/strdup(char \\*s1);/strdup(const char *s1);/";
2806
2807 sed = "/^extern char$/N";
2808 sed = "s/^extern char\\(\\n\t\\*memccpy(),\\)$/extern void\\1/";
2809
2810 sed = "/^extern int$/N";
2811 sed = "s/^extern int\\(\\n\tstrlen(),\\)/extern size_t\\1/";
2812
2813 sed = "/^\tstrncmp(),$/N";
2814 sed = 's/^\(' "\t" 'strncmp()\),\n\(' "\t" 'strlen(),\)$/'
2815 '\1;' "\\\nextern unsigned int\\\n\\2/";
2816
2817 test_text =
2818 "extern int strlen();\n"
2819
2820 "extern int ffs(long);\n"
2821
2822 "extern char\n"
2823 "\t*memccpy(),\n"
2824 "\tmemcpy();\n"
2825
2826 "extern int\n"
2827 "\tstrcmp(),\n"
2828 "\tstrncmp(),\n"
2829 "\tstrlen(),\n"
2830 "\tstrspn();\n"
2831
2832 "extern int\n"
2833 "\tstrlen(), strspn();";
2834 };
2835
2836
2837 /*
2838 * Fix return type of calloc, malloc, realloc, bsearch and exit
2839 */
2840 fix = {
2841 hackname = sysz_stdlib_for_sun;
2842 files = stdlib.h;
2843
2844 select = "char[ \t]*\\*[ \t]*(calloc|malloc|realloc|bsearch)[ \t]*\\(";
2845 c_fix = format;
2846 c_fix_arg = "void *\t%1(";
2847
2848 test_text =
2849 "extern char*\tcalloc(size_t);\n"
2850 "extern char*\tmalloc(size_t);\n"
2851 "extern char*\trealloc(void*,size_t);\n"
2852 "extern char*\tbsearch(void*,size_t,size_t);\n";
2853 };
2854
2855
2856 /*
2857 * if the #if says _cplusplus, not the double underscore __cplusplus
2858 * that it should be
2859 */
2860 fix = {
2861 hackname = tinfo_cplusplus;
2862 files = tinfo.h;
2863 select = "[ \t]_cplusplus";
2864
2865 c_fix = format;
2866 c_fix_arg = " __cplusplus";
2867 test_text = "#ifdef _cplusplus\nint bogus;\n#endif";
2868 };
2869
2870
2871 /*
2872 * function parameter to atexit is missing "void" on VAX Ultrix 4.3.
2873 */
2874 fix = {
2875 hackname = ultrix_atexit_param;
2876 files = stdlib.h;
2877 select = 'atexit\(.*\(\)';
2878
2879 c_fix = format;
2880 c_fix_arg = "atexit( void (*__func)( void )";
2881
2882 test_text = "int atexit( void (*__func)() );\n";
2883 };
2884
2885
2886 /*
2887 * parameter to atof not const on DECstation Ultrix V4.0 and NEWS-OS 4.2R.
2888 */
2889 fix = {
2890 hackname = ultrix_atof_param;
2891 files = math.h;
2892 select = "atof\\([ \t]*char";
2893
2894 c_fix = format;
2895 c_fix_arg = "atof(const char";
2896
2897 test_text = "extern double atof( char *__nptr);\n";
2898 };
2899
2900
2901 /*
2902 * parameters not const on DECstation Ultrix V4.0 and OSF/1.
2903 */
2904 fix = {
2905 hackname = ultrix_const;
2906 files = stdio.h;
2907 select = 'perror\( char \*';
2908
2909 c_fix = format;
2910 c_fix_arg = "%1 const %3 *__";
2911 c_fix_arg = "([ \t*](perror|fputs|fwrite|scanf|fscanf)\\(.*)"
2912 "[ \t]+(char|void) \\*__";
2913
2914 test_text =
2915 "extern void perror( char *__s );\n"
2916 "extern int fputs( char *__s, FILE *);\n"
2917 "extern size_t fwrite( void *__ptr, size_t, size_t, FILE *);\n"
2918 "extern int fscanf( FILE *__stream, char *__format, ...);\n"
2919 "extern int scanf( char *__format, ...);\n";
2920 };
2921
2922
2923 /*
2924 * parameters not const on DECstation Ultrix V4.0 and OSF/1.
2925 */
2926 fix = {
2927 hackname = ultrix_const2;
2928 files = stdio.h;
2929
2930 select = '\*fopen\( char \*';
2931 c_fix = format;
2932 c_fix_arg = "%1( const char *%3, const char *";
2933 c_fix_arg = "([ \t*](fopen|sscanf|popen|tempnam))\\("
2934 "[ \t]*char[ \t]*\\*([^,]*),"
2935 "[ \t]*char[ \t]*\\*[ \t]*";
2936
2937 test_text =
2938 "extern FILE *fopen( char *__filename, char *__type );\n"
2939 "extern int sscanf( char *__s, char *__format, ...);\n"
2940 "extern FILE *popen(char *, char *);\n"
2941 "extern char *tempnam(char*,char*);\n";
2942 };
2943
2944
2945 /*
2946 * Ultrix V4.[35] puts the declaration of uname before the definition
2947 * of struct utsname, so the prototype (added by fixproto) causes havoc.
2948 */
2949 fix = {
2950 hackname = ultrix_fix_fixproto;
2951 files = sys/utsname.h;
2952 select = ULTRIX;
2953
2954 c_fix = format;
2955 c_fix_arg = "struct utsname;\n%0";
2956 c_fix_arg = "^[ \t]*extern[ \t]*int[ \t]*uname\\(\\);";
2957
2958 test_text =
2959 "/* ULTRIX's uname */\nextern\tint\tuname();";
2960 };
2961
2962
2963 /*
2964 * Check for bad #ifdef line (in Ultrix 4.1)
2965 */
2966 fix = {
2967 hackname = ultrix_ifdef;
2968 select = "^#ifdef KERNEL[ \t]+&&";
2969 files = sys/file.h;
2970
2971 c_fix = format;
2972 c_fix_arg = "#if defined(KERNEL) &&";
2973
2974 test_text =
2975 "#ifdef KERNEL\t&& defined( mumbojumbo )\nint oops;\n#endif";
2976 };
2977
2978
2979 /*
2980 * Strip "|| CC$gfloat" from Ultrix math headers.
2981 */
2982 fix = {
2983 hackname = ultrix_math_ifdef;
2984 files = sys/limits.h;
2985 files = float.h;
2986 files = math.h;
2987 select = "^(#if.*)\\|\\|[ \t]+CC\\$[a-z]+";
2988 c_fix = format;
2989 c_fix_arg = "%1";
2990
2991 test_text = '#if defined(__GFLOAT) || CC\$gfloat';
2992 };
2993
2994
2995 /*
2996 * Avoid nested comments on Ultrix 4.3.
2997 */
2998 fix = {
2999 hackname = ultrix_nested_ioctl;
3000 files = sys/ioctl.h;
3001 select = "^/\\* #define SIOCSCREEN";
3002 sed = "/^\\/\\* #define SIOCSCREEN/s@/\\* screend@*//* screend@";
3003 test_text =
3004 "/* #define SIOCSCREENON _IOWR('i', 49, int)"
3005 "/* screend, net/gw_screen.h */\n";
3006 };
3007
3008
3009 fix = {
3010 hackname = ultrix_nested_svc;
3011 files = rpc/svc.h;
3012 select = "^ \\*[ \t]*int protocol; */\\*";
3013 sed = "s@^\\( \\*\tint protocol; \\)/\\*@\\1*/ /*@";
3014 test_text =
3015 " *\tint protocol; /* like TCP or UDP\n";
3016 };
3017
3018
3019 /*
3020 * Add missing prototype for lstat and define for S_ISLNK
3021 * in Ultrix V4.3 sys/stat.h.
3022 */
3023 fix = {
3024 hackname = ultrix_stat;
3025 files = sys/stat.h;
3026 select = "@\\(#\\)stat\\.h.*6\\.1.*\\(ULTRIX\\)";
3027 sed = "/^#define[ \t]S_IFPORT[ \t]*S_IFIFO$/a\\\n"
3028 "\\\n"
3029 "/* macro to test for symbolic link */\\\n"
3030 "#define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)\\\n"
3031 "\n";
3032 sed = "/^[ \t]*fstat(),$/a\\\n"
3033 "\tlstat(),\n";
3034 test_text =
3035 "@(#)stat.h 6.1 (ULTRIX)\n"
3036 "#define S_IFPORT S_IFIFO\n"
3037 "\tfstat(),\n";
3038 };
3039
3040
3041 /*
3042 * Check for superfluous `static' (in Ultrix 4.2)
3043 * On Ultrix 4.3, includes of other files (r3_cpu.h,r4_cpu.h) is broken.
3044 */
3045 fix = {
3046 hackname = ultrix_static;
3047 files = machine/cpu.h;
3048 select = '#include "r[34]_cpu';
3049 sed = "s/^static struct tlb_pid_state/struct tlb_pid_state/";
3050 sed = 's/^#include "r3_cpu\.h"$/#include <machine\/r3_cpu\.h>/';
3051 sed = 's/^#include "r4_cpu\.h"$/#include <machine\/r4_cpu\.h>/';
3052 test_text =
3053 "static struct tlb_pid_state {\n"
3054 "#include \"r3_cpu.h\"\n";
3055 };
3056
3057
3058 /*
3059 * Add once-only latch to Ultrix V4.3 strings.h.
3060 */
3061 fix = {
3062 hackname = ultrix_strings;
3063 files = strings.h;
3064 select = "@\\(#\\)strings\\.h.*6\\.1.*\\(ULTRIX\\)";
3065 c_fix = wrap;
3066 test_text =
3067 "@(#)strings.h 6.1 (ULTRIX)\n";
3068 };
3069
3070
3071 /*
3072 * Fix multiple defines for NULL. Sometimes, we stumble into \r\n
3073 * terminated lines, so accommodate these. Test both ways.
3074 */
3075 fix = {
3076 hackname = undefine_null;
3077 select = "^#[ \t]*define[ \t]+NULL[ \t]";
3078 bypass = "#[ \t]*(ifn|un)def[ \t]+NULL($|[ \t\r])";
3079
3080 c_fix = format;
3081 c_fix_arg = "#ifndef NULL%2\n#define NULL%1%2\n#endif%2\n";
3082 c_fix_arg = "^#[ \t]*define[ \t]*[ \t]NULL([^\r\n]+)([\r]*)\n";
3083
3084 test_text = "#define NULL 0UL\r\n#define NULL\t((void*)0)\n";
3085 };
3086
3087 /*
3088 * On Cray Unicos/Mk some standard headers use the C99 keyword "restrict"
3089 * which must be replaced by __restrict__ for GCC.
3090 */
3091 fix = {
3092 hackname = unicosmk_restrict;
3093 files = stdio.h;
3094 files = stdlib.h;
3095 files = wchar.h;
3096 mach = "*-*-unicosmk*";
3097 select = "(\\*[ \t]*)restrict([ \t]+)";
3098
3099 c_fix = format;
3100 c_fix_arg = "%1__restrict__%2";
3101
3102 test_text = "void f (char * restrict x);";
3103 };
3104
3105 /*
3106 * If arpa/inet.h prototypes are incompatible with the ones we just
3107 * installed in <sys/byteorder.h>, just remove the protos.
3108 * Because of this close association, this patch must be applied only
3109 * on those systems where the replacement byteorder header is installed.
3110 */
3111 fix = {
3112 hackname = uw7_byteorder_fix;
3113 files = arpa/inet.h;
3114 select = "in_port_t";
3115 test = "-f sys/byteorder.h";
3116 #ifndef SVR5
3117 mach = "*-*-sysv4*";
3118 mach = "i?86-*-sysv5*";
3119 mach = "i?86-*-udk*";
3120 mach = "i?86-*-solaris2.[0-4]";
3121 mach = "powerpcle-*-solaris2.[0-4]";
3122 mach = "sparc-*-solaris2.[0-4]";
3123 #endif /* SVR5 */
3124
3125 c_fix = format;
3126 c_fix_arg = "";
3127 c_fix_arg = "^extern.*[ \t](htons|ntohs).*\\(in_port_t\\).*;";
3128
3129 test_text = "extern in_port_t\thtons __P((in_port_t));\n"
3130 "extern in_port_t\tntohs __P((in_port_t));"
3131 "`[ ! -d $DESTDIR/sys ] && mkdir $DESTDIR/sys\n"
3132 "echo '/* DUMMY */' >> sys/byteorder.h`";
3133 };
3134
3135
3136 /*
3137 * Fix definitions of macros used by va-i960.h in VxWorks header file.
3138 */
3139 fix = {
3140 hackname = va_i960_macro;
3141 files = arch/i960/archI960.h;
3142 select = "__(vsiz|vali|vpad|alignof__)";
3143
3144 c_fix = format;
3145 c_fix_arg = "__vx%1";
3146
3147 test_text =
3148 "extern int __vsiz vsiz;\n"
3149 "extern int __vali vali;\n"
3150 "extern int __vpad vpad;\n"
3151 "#define __alignof__(x) ...";
3152 };
3153
3154
3155 /*
3156 * AIX headers define NULL to be cast to a void pointer,
3157 * which is illegal in ANSI C++.
3158 */
3159 fix = {
3160 hackname = void_null;
3161 files = curses.h;
3162 files = dbm.h;
3163 files = locale.h;
3164 files = stdio.h;
3165 files = stdlib.h;
3166 files = string.h;
3167 files = time.h;
3168 files = unistd.h;
3169 files = sys/dir.h;
3170 files = sys/param.h;
3171 files = sys/types.h;
3172 select = "^#[ \t]*define[ \t]+NULL[ \t]+\\(\\(void[ \t]*\\*\\)0\\)";
3173 c_fix = format;
3174 c_fix_arg = "#define NULL 0";
3175 test_text = "# define\tNULL \t((void *)0) /* typed NULL */";
3176 };
3177
3178
3179 /*
3180 * Make VxWorks header which is almost gcc ready fully gcc ready.
3181 */
3182 fix = {
3183 hackname = vxworks_gcc_problem;
3184 files = types/vxTypesBase.h;
3185 select = "__GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__";
3186
3187 sed = "s/#ifdef __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__/"
3188 "#if 1/";
3189
3190 sed = "/[ \t]size_t/i\\\n"
3191 "#ifndef _GCC_SIZE_T\\\n"
3192 "#define _GCC_SIZE_T\n";
3193
3194 sed = "/[ \t]size_t/a\\\n"
3195 "#endif\n";
3196
3197 sed = "/[ \t]ptrdiff_t/i\\\n"
3198 "#ifndef _GCC_PTRDIFF_T\\\n"
3199 "#define _GCC_PTRDIFF_T\n";
3200
3201 sed = "/[ \t]ptrdiff_t/a\\\n"
3202 "#endif\n";
3203
3204 sed = "/[ \t]wchar_t/i\\\n"
3205 "#ifndef _GCC_WCHAR_T\\\n"
3206 "#define _GCC_WCHAR_T\n";
3207
3208 sed = "/[ \t]wchar_t/a\\\n"
3209 "#endif\n";
3210
3211 test_text =
3212 "#ifdef __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__\n"
3213 "typedef unsigned int size_t;\n"
3214 "typedef long ptrdiff_t;\n"
3215 "typedef unsigned short wchar_t;\n"
3216 "#endif /* __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__ */\n";
3217 };
3218
3219
3220 /*
3221 * Fix VxWorks <time.h> to not require including <vxTypes.h>.
3222 */
3223 fix = {
3224 hackname = vxworks_needs_vxtypes;
3225 files = time.h;
3226 select = "uint_t([ \t]+_clocks_per_sec)";
3227 c_fix = format;
3228 c_fix_arg = "unsigned int%1";
3229 test_text = "uint_t\t_clocks_per_sec;";
3230 };
3231
3232
3233 /*
3234 * Fix VxWorks <sys/stat.h> to not require including <vxWorks.h>.
3235 */
3236 fix = {
3237 hackname = vxworks_needs_vxworks;
3238 files = sys/stat.h;
3239 test = " -r types/vxTypesOld.h";
3240 test = " -n \"`egrep '#include' $file`\"";
3241 test = " -n \"`egrep ULONG $file`\"";
3242 select = "#[ \t]define[ \t]+__INCstath";
3243
3244 sed = "/#[ \t]define[ \t][ \t]*__INCstath/a\\\n"
3245 "#include <types/vxTypesOld.h>\n";
3246
3247 test_text = "`touch types/vxTypesOld.h`"
3248 "#include </dev/null> /* ULONG */\n"
3249 "# define\t__INCstath <sys/stat.h>";
3250 };
3251
3252
3253 /*
3254 * Another bad dependency in VxWorks 5.2 <time.h>.
3255 */
3256 fix = {
3257 hackname = vxworks_time;
3258 files = time.h;
3259 test = " -r vxWorks.h";
3260
3261 select = "#[ \t]*define[ \t]+VOIDFUNCPTR[ \t].*";
3262 c_fix = format;
3263
3264 c_fix_arg =
3265 "#ifndef __gcc_VOIDFUNCPTR_defined\n"
3266 "#ifdef __cplusplus\n"
3267 "typedef void (*__gcc_VOIDFUNCPTR) (...);\n"
3268 "#else\n"
3269 "typedef void (*__gcc_VOIDFUNCPTR) ();\n"
3270 "#endif\n"
3271 "#define __gcc_VOIDFUNCPTR_defined\n"
3272 "#endif\n"
3273 "#define VOIDFUNCPTR __gcc_VOIDFUNCPTR";
3274
3275 test_text = "`touch vxWorks.h`"
3276 "#define VOIDFUNCPTR (void(*)())";
3277 };
3278
3279
3280 /*
3281 * There are several name conflicts with C++ reserved words in X11 header
3282 * files. These are fixed in some versions, so don't do the fixes if
3283 * we find __cplusplus in the file. These were found on the RS/6000.
3284 */
3285 fix = {
3286 hackname = x11_class;
3287 files = X11/ShellP.h;
3288 bypass = __cplusplus;
3289 select = "^([ \t]*char \\*)class;(.*)";
3290 c_fix = format;
3291 c_fix_arg = "#ifdef __cplusplus\n%1c_class;%2\n"
3292 "#else\n%1class;%2\n#endif";
3293 test_text =
3294 "struct {\n"
3295 " char *class;\n"
3296 "} mumble;\n";
3297 };
3298
3299
3300 /*
3301 * class in Xm/BaseClassI.h
3302 */
3303 fix = {
3304 hackname = x11_class_usage;
3305 files = Xm/BaseClassI.h;
3306 bypass = "__cplusplus";
3307
3308 select = " class\\)";
3309 c_fix = format;
3310 c_fix_arg = " c_class)";
3311
3312 test_text = "extern mumble (int class);\n";
3313 };
3314
3315
3316 /*
3317 * new in Xm/Traversal.h
3318 */
3319 fix = {
3320 hackname = x11_new;
3321 files = Xm/Traversal.h;
3322 bypass = __cplusplus;
3323
3324 sed = "/Widget\told, new;/i\\\n"
3325 "#ifdef __cplusplus\\\n"
3326 "\tWidget\told, c_new;\\\n"
3327 "#else\n";
3328
3329 sed = "/Widget\told, new;/a\\\n"
3330 "#endif\n";
3331
3332 sed = "s/Widget new,/Widget c_new,/g";
3333 test_text =
3334 "struct wedge {\n"
3335 " Widget\told, new; /* fix the new */\n"
3336 "};\nextern Wedged( Widget new, Widget old );";
3337 };
3338
3339
3340 /*
3341 * Incorrect sprintf declaration in X11/Xmu.h
3342 */
3343 fix = {
3344 hackname = x11_sprintf;
3345 files = X11/Xmu.h;
3346 files = X11/Xmu/Xmu.h;
3347 select = "^extern char \\*\tsprintf\\(\\);$";
3348
3349 c_fix = format;
3350 c_fix_arg = "#ifndef __STDC__\n%0\n#endif /* !defined __STDC__ */";
3351
3352 test_text = "extern char *\tsprintf();";
3353 };
3354
3355 /*EOF*/