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