OSDN Git Service

Fixed the test for aix_pthread
[pf3gnuchains/gcc-fork.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     c_fix_arg = "^[ \t]*typedef[ \t].*[ \t]bool[ \t]*;.*";
768
769     test_text = "typedef unsigned int\tbool \t; /* bool type */";
770 };
771
772
773 /*
774  *  Fix #defines under Alpha OSF/1:
775  *  The following files contain '#pragma extern_prefix "_FOO"' followed by
776  *  a '#define something(x,y,z) _FOOsomething(x,y,z)'.  The intent of these
777  *  statements is to reduce namespace pollution.  While these macros work
778  *  properly in most cases, they don't allow you to take a pointer to the
779  *  "something" being modified.  To get around this limitation, change these
780  *  statements to be of the form '#define something _FOOsomething'.
781  *
782  *  sed ain't egrep, lesson 2463:  sed can use self-referential
783  *  regular expressions.  In the substitute expression below,
784  *  "\\1" and "\\2" refer to subexpressions found earlier in the
785  *  same match.  So, we continue to use sed.  "extern_prefix" will
786  *  be a rare match anyway...
787  */
788 fix = {
789     hackname = bad_lval;
790
791     select   = "^[ \t]*#[ \t]*pragma[ \t]+extern_prefix";
792
793     files    = libgen.h;
794     files    = dirent.h;
795     files    = ftw.h;
796     files    = grp.h;
797     files    = ndbm.h;
798     files    = pthread.h;
799     files    = pwd.h;
800     files    = signal.h;
801     files    = standards.h;
802     files    = stdlib.h;
803     files    = string.h;
804     files    = stropts.h;
805     files    = time.h;
806     files    = unistd.h;
807
808     sed      =
809         "s/^[ \t]*#[ \t]*define[ \t][ \t]*\\([^(]*\\)\\(([^)]*)\\)[ \t]*"
810                "\\(_.*\\)\\1\\2[ \t]*$/#define \\1 \\3\\1/";
811
812     test_text = '#pragma extern_prefix "_FOO"'"\n"
813                 "#define something(x,y,z) _FOOsomething(x,y,z)\n"
814                 "#define mumble _FOOmumble";
815 };
816
817
818 /*
819  *  Fix `typedef struct term;' on hppa1.1-hp-hpux9.
820  */
821 fix = {
822     hackname  = bad_struct_term;
823     files     = curses.h;
824     select    = "^[ \t]*typedef[ \t]+struct[ \t]+term[ \t]*;";
825     c_fix     = format;
826     c_fix_arg = "struct term;";
827
828     test_text = 'typedef struct term;';
829 };
830
831
832 /*
833  *  Fix one other error in this file:
834  *  a mismatched quote not inside a C comment.
835  */
836 fix = {
837     hackname  = badquote;
838     files     = sundev/vuid_event.h;
839     select    = "doesn't";
840     c_fix     = format;
841     c_fix_arg = "does not";
842
843     test_text = "/* doesn't have matched single quotes */";
844 };
845
846
847 /*
848  *  check for broken assert.h that needs stdio.h
849  */
850 fix = {
851     hackname  = broken_assert_stdio;
852     files     = assert.h;
853     select    = stderr;
854     bypass    = "include.*stdio\\.h";
855     c_fix     = wrap;
856     c_fix_arg = "#include <stdio.h>\n";
857     test_text = "extern FILE* stderr;";
858 };
859
860
861 /*
862  *  check for broken assert.h that needs stdlib.h
863  */
864 fix = {
865     hackname  = broken_assert_stdlib;
866     files     = assert.h;
867     select    = 'exit *\(|abort *\(';
868     bypass    = "include.*stdlib\\.h";
869     c_fix     = wrap;
870     c_fix_arg = "#ifdef __cplusplus\n"
871                 "#include <stdlib.h>\n"
872                 "#endif\n";
873     test_text = "extern void exit ( int );";
874 };
875
876
877 /*
878  *  Remove `extern double cabs' declarations from math.h.
879  *  This conflicts with C9x.  Discovered on AIX.
880  *  SunOS4 has its cabs() declaration followed by a comment which
881  *  terminates on the following line.
882  */
883 fix = {
884     hackname = broken_cabs;
885     files  = "math.h";
886     select = '^extern double cabs';
887
888     c_fix     = format;
889     c_fix_arg = "";
890     c_fix_arg = "^extern double cabs\\((struct dbl_hypot|)\\);";
891
892     test_text = "#ifdef __STDC__\n"
893                 "extern double cabs(struct dbl_hypot);\n"
894                 "#else\n"
895                 "extern double cabs();\n"
896                 "#endif\n"
897                 "extern double cabs(); /* This is a comment\n"
898                 "                         and it ends here. */";
899 };
900
901
902 /*
903  *  Fix various macros used to define ioctl numbers.
904  *  The traditional syntax was:
905  *
906  *    #define _CTRL(n, x) (('n'<<8)+x)
907  *    #define TCTRLCFOO _CTRL(T, 1)
908  *
909  *  but this does not work with the C standard, which disallows macro
910  *  expansion inside strings.  We have to rewrite it thus:
911  *
912  *    #define _CTRL(n, x) ((n<<8)+x)
913  *    #define TCTRLCFOO  _CTRL('T', 1)
914  *
915  *  The select expressions match too much, but the c_fix code is cautious.
916  *
917  *  CTRL might be: CTRL _CTRL ISCTRL BSD43_CTRL ...
918  */
919 fix = {
920     hackname  = ctrl_quotes_def;
921     select    = "define[ \t]+[A-Z0-9_]+CTRL\\([a-zA-Z][,)]";
922     c_fix     = char_macro_def;
923     c_fix_arg = "CTRL";
924
925     /*
926      *  This is two tests in order to ensure that the "CTRL(c)" can
927      *  be selected in isolation from the multi-arg format
928      */
929     test_text = "#define BSD43_CTRL(n, x) (('n'<<8)+x)\n";
930     test_text = "#define _CTRL(c) ('c'&037)";
931 };
932
933 fix = {
934     hackname  = ctrl_quotes_use;
935     select    = "define[ \t]+[A-Z0-9_]+[ \t]+[A-Z0-9_]+CTRL[ \t]*\\( *[^,']";
936     c_fix     = char_macro_use;
937     c_fix_arg = "CTRL";
938     test_text = "#define TCTRLFOO BSD43_CTRL(T, 1)";
939 };
940
941
942 /*
943  *  sys/mman.h on HP/UX is not C++ ready,
944  *  even though NO_IMPLICIT_EXTERN_C is defined on HP/UX.
945  *
946  *  rpc/types.h on OSF1/2.0 is not C++ ready,
947  *  even though NO_IMPLICIT_EXTERN_C is defined for the alpha.
948  *
949  *  The problem is the declaration of malloc.
950  */
951 fix = {
952     hackname = cxx_unready;
953     files    = sys/mman.h;
954     files    = rpc/types.h;
955     select   = '[^#]+malloc.*;';  /* Catch any form of declaration
956                                      not within a macro.  */
957     bypass   = '"C"|__BEGIN_DECLS';
958
959     c_fix     = wrap;
960     c_fix_arg = "#ifdef __cplusplus\n"
961                 "extern \"C\" {\n"
962                 "#endif\n";
963     c_fix_arg = "#ifdef __cplusplus\n"
964                 "}\n"
965                 "#endif\n";
966     test_text = "extern void* malloc( size_t );";
967 };
968
969
970 /*
971  *  Fix <c_asm.h> on Digital UNIX V4.0:
972  *  It contains a prototype for a DEC C internal asm() function,
973  *  clashing with gcc's asm keyword.  So protect this with __DECC.
974  */
975 fix = {
976     hackname = dec_intern_asm;
977     files    = c_asm.h;
978     sed = "/^[ \t]*float[ \t]*fasm/i\\\n#ifdef __DECC\n";
979     sed = "/^[ \t]*#[ \t]*pragma[ \t]*intrinsic([ \t]*dasm/a\\\n"
980           "#endif\n";
981     test_text =
982     "float fasm {\n"
983     "    ... asm stuff ...\n"
984     "};\n#pragma intrinsic( dasm )\n/* END ASM TEST*/";
985 };
986
987
988 /*
989  * Fix these Sun OS files to avoid an invalid identifier in an #ifdef.
990  */
991 fix = {
992     hackname  = ecd_cursor;
993     files     = "sunwindow/win_lock.h";
994     files     = "sunwindow/win_cursor.h";
995     select    = 'ecd\.cursor';
996     c_fix     = format;
997     c_fix_arg = 'ecd_cursor';
998
999     test_text = "#ifdef ecd.cursor\n#error bogus\n#endif /* ecd+cursor */";
1000 };
1001
1002
1003 /*
1004  *  fix-header doesn't fix fabs' prototype, and I have no idea why.
1005  */
1006 fix = {
1007     hackname  = fix_header_breakage;
1008     mach      = "m88k-motorola-sysv3*";
1009     files     = "math.h";
1010
1011     select    = 'extern double floor\(\), ceil\(\), fmod\(\), fabs\(\);';
1012     c_fix     = format;
1013     c_fix_arg =
1014     'extern double floor(), ceil(), fmod(), fabs _PARAMS((double));';
1015     test_text = 'extern double floor(), ceil(), fmod(), fabs();';
1016 };
1017
1018
1019 /*
1020  *  Fix HP & Sony's use of "../machine/xxx.h"
1021  *  to refer to:  <machine/xxx.h>
1022  */
1023 fix = {
1024     hackname  = hp_inline;
1025     files     = sys/spinlock.h;
1026     files     = machine/machparam.h;
1027     select    = "[ \t]*#[ \t]*include[ \t]+"  '"\.\./machine/';
1028
1029     c_fix     = format;
1030     c_fix_arg = "%1<machine/%2.h>";
1031
1032     c_fix_arg = "([ \t]*#[ \t]*include[ \t]+)"  '"\.\./machine/'
1033                 '([a-z]+)\.h"';
1034
1035     test_text = ' # include "../machine/mumble.h"';
1036 };
1037
1038
1039 /*
1040  *  Check for (...) in C++ code in HP/UX sys/file.h.
1041  */
1042 fix = {
1043     hackname  = hp_sysfile;
1044     files     = sys/file.h;
1045     select    = "HPUX_SOURCE";
1046
1047     c_fix     = format;
1048     c_fix_arg = "(struct file *, ...)";
1049     c_fix_arg = '\(\.\.\.\)';
1050
1051     test_text = "extern void foo(...); /* HPUX_SOURCE - bad varargs */";
1052 };
1053
1054
1055 /*
1056  *  Keep HP-UX 11 from stomping on C++ math namespace
1057  *  with defines for fabsf.
1058  */
1059 fix = {
1060     hackname  = hpux11_fabsf;
1061     files     = math.h;
1062     select    = "^[ \t]*#[ \t]*define[ \t]+fabsf\\(.*";
1063     bypass    = "__cplusplus";
1064
1065     c_fix     = format;
1066     c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
1067
1068     test_text =
1069     "#ifdef _PA_RISC\n"
1070     "#  define fabsf(x) ((float)fabs((double)(float)(x)))\n"
1071     "#endif";
1072 };
1073
1074
1075 /*
1076  * In inttypes.h on HPUX 11, the use of __CONCAT__ in the definition 
1077  * of UINT32_C has undefined behavior according to ISO/ANSI:
1078  * the arguments to __CONCAT__ are not macro expanded before the
1079  * concatination happens so the trailing ')' in the first argument
1080  * is concatinated with the 'l' in the second argument creating an
1081  * invalid pp token.  The behavior of invalid pp tokens is undefined.
1082  * GCC does not handle these invalid tokens the way the HP compiler does.
1083  * This problem will potentially occur anytime macros are used in the
1084  * arguments to __CONCAT__.  A general solution to this problem would be to 
1085  * insert another layer of macro between __CONCAT__ and its use
1086  * in UINT32_C.  An example of this solution can be found in the C standard.
1087  * A more specific solution, the one used here, is to change the UINT32_C
1088  * macro to not used macros in the arguments to __CONCAT__.
1089  */
1090 fix = {
1091     hackname = hpux11_uint32_c;
1092     files    = inttypes.h;
1093     select   = "^#define UINT32_C\\(__c\\)[ \t]*"
1094                          "__CONCAT__\\(__CONCAT_U__\\(__c\\),l\\)";
1095     c_fix    = format;
1096     c_fix_arg = '#define UINT32_C(__c) __CONCAT__(__c,ul)';
1097     test_text =
1098     "#define CONCAT_U__(__c)\t__CONCAT__(__c,u)\n"
1099     "#define UINT32_C(__c)\t__CONCAT__(__CONCAT_U__(__c),l)";
1100 };
1101
1102
1103 /*
1104  *  get rid of bogus inline definitions in HP-UX 8.0
1105  */
1106 fix = {
1107     hackname = hpux8_bogus_inlines;
1108     files    = math.h;
1109     select   = inline;
1110     sed = "s@inline int abs(int [a-z][a-z]*) {.*}"
1111            "@extern \"C\" int abs(int);@";
1112     sed = "s@inline double abs(double [a-z][a-z]*) {.*}@@";
1113     sed = "s@inline int sqr(int [a-z][a-z]*) {.*}@@";
1114     sed = "s@inline double sqr(double [a-z][a-z]*) {.*}@@";
1115     test_text = "inline int abs(int v) { return (v>=0)?v:-v; }\n"
1116                 "inline double sqr(double v) { return v**0.5; }";
1117 };
1118
1119
1120 /*
1121  *  Fix return type of abort and free
1122  */
1123 fix = {
1124     hackname  = int_abort_free_and_exit;
1125     files     = stdlib.h;
1126     select    = "int[ \t]+(abort|free|exit)[ \t]*\\(";
1127
1128     c_fix     = format;
1129     c_fix_arg = "void\t%1(";
1130
1131     test_text = "extern int abort(int);\n"
1132                 "extern int free(void*);\n"
1133                 "extern int exit(void*);";
1134 };
1135
1136
1137 /*
1138  *  On Interactive Unix 2.2, certain traditional Unix definitions
1139  *  (notably getc and putc in stdio.h) are omitted if __STDC__ is
1140  *  defined, not just if _POSIX_SOURCE is defined.  This makes it
1141  *  impossible to compile any nontrivial program except with -posix.
1142  */
1143 fix = {
1144     hackname = isc_omits_with_stdc;
1145
1146     files     = "stdio.h";
1147     files     = "math.h";
1148     files     = "ctype.h";
1149     files     = "sys/limits.h";
1150     files     = "sys/fcntl.h";
1151     files     = "sys/dirent.h";
1152
1153     select    = '!defined\(__STDC__\) && !defined\(_POSIX_SOURCE\)';
1154     c_fix     = format;
1155     c_fix_arg = '!defined(_POSIX_SOURCE)';
1156     test_text = "#if !defined(__STDC__) && !defined(_POSIX_SOURCE) /* ? ! */"
1157                 "\nint foo;\n#endif";
1158 };
1159
1160
1161 /*
1162  *  Fix various macros used to define ioctl numbers.
1163  *  The traditional syntax was:
1164  *
1165  *    #define _IO(n, x) (('n'<<8)+x)
1166  *    #define TIOCFOO _IO(T, 1)
1167  *
1168  *  but this does not work with the C standard, which disallows macro
1169  *  expansion inside strings.  We have to rewrite it thus:
1170  *
1171  *    #define _IO(n, x) ((n<<8)+x)
1172  *    #define TIOCFOO  _IO('T', 1)
1173  *
1174  *  The select expressions match too much, but the c_fix code is cautious.
1175  *
1176  *  _IO might be: _IO DESIO BSD43__IO with W, R, WR, C, ... suffixes.
1177  */
1178 fix = {
1179     hackname  = io_quotes_def;
1180     select    = "define[ \t]+[A-Z0-9_]+IO[A-Z]*\\([a-zA-Z][,)]";
1181     c_fix     = char_macro_def;
1182     c_fix_arg = "IO";
1183     test_text =
1184     "#define BSD43__IOWR(n, x) (('n'<<8)+x)\n"
1185     "#define _IOWN(x,y,t)  (_IOC_IN|(((t)&_IOCPARM_MASK)<<16)|('x'<<8)|y)\n"
1186     "#define _IO(x,y)      ('x'<<8|y)";
1187     test_text =
1188     "#define XX_IO(x)        ('x'<<8|256)";
1189 };
1190
1191 fix = {
1192     hackname  = io_quotes_use;
1193     select    = "define[ \t]+[A-Z0-9_]+[ \t]+[A-Z0-9_]+IO[A-Z]*[ \t]*"
1194                 "\\( *[^,']";
1195     c_fix     = char_macro_use;
1196     c_fix_arg = "IO";
1197     test_text = "#define TIOCFOO BSD43__IOWR(T, 1)\n"
1198                 "#define TIOCFOO \\\\\n"
1199                 "BSD43__IOWR(T, 1) /* Some are multi-line */";
1200 };
1201
1202
1203 /*
1204  *  HPUX 10.x sys/param.h defines MAXINT which clashes with values.h
1205  */
1206 fix = {
1207     hackname  = hpux_maxint;
1208     files     = sys/param.h;
1209     select    = "^#[ \t]*define[ \t]*MAXINT[ \t]";
1210
1211     c_fix     = format;
1212     c_fix_arg = "#ifndef MAXINT\n%0\n#endif";
1213     c_fix_arg = "^#[ \t]*define[ \t]*MAXINT[ \t].*";
1214
1215     test_text = '#define MAXINT 0x7FFFFFFF';
1216 };
1217
1218
1219 /*
1220  *  Fix hpux10.20 <sys/time.h> to avoid invalid forward decl
1221  */
1222 fix = {
1223     hackname = hpux_systime;
1224     files    = sys/time.h;
1225     select   = "^extern struct sigevent;";
1226
1227     c_fix     = format;
1228     c_fix_arg = "struct sigevent;";
1229
1230     test_text = 'extern struct sigevent;';
1231 };
1232
1233
1234 /*
1235  *  Check for missing ';' in struct
1236  */
1237 fix = {
1238     hackname = ip_missing_semi;
1239     files    = netinet/ip.h;
1240     select   = "}$";
1241     sed      = "/^struct/,/^};/s/}$/};/";
1242     test_text=
1243     "struct mumble {\n"
1244     "  union {\n"
1245     "    int x;\n"
1246     "  }\n"
1247     "}; /* mumbled struct */\n";
1248 };
1249
1250
1251 /*
1252  *  IRIX 5.2's <sys/asm.h> contains an asm comment with a contraction
1253  *  that causes the assembly preprocessor to complain about an
1254  *  unterminated character constant.
1255  */
1256 fix = {
1257     hackname  = irix_asm_apostrophe;
1258     files     = sys/asm.h;
1259
1260     select    = "^[ \t]*#.*[Ww]e're";
1261     c_fix     = format;
1262     c_fix_arg = "%1 are";
1263     c_fix_arg = "^([ \t]*#.*[Ww]e)'re";
1264     test_text = "\t# and we're on vacation";
1265 };
1266
1267
1268 /*
1269  * Fixing ISC fmod declaration
1270  */
1271 fix = {
1272     hackname  = isc_fmod;
1273     files     = math.h;
1274     select    = 'fmod\(double\)';
1275     c_fix     = format;
1276     c_fix_arg = "fmod(double, double)";
1277     test_text = "extern double  fmod(double);";
1278 };
1279
1280
1281 /*
1282  * These files in Sun OS 4.x and ARM/RISCiX and BSD4.3
1283  * use / * * / to concatenate tokens.
1284  */
1285 fix = {
1286     hackname = kandr_concat;
1287     files  = "sparc/asm_linkage.h";
1288     files  = "sun3/asm_linkage.h";
1289     files  = "sun3x/asm_linkage.h";
1290     files  = "sun4/asm_linkage.h";
1291     files  = "sun4c/asm_linkage.h";
1292     files  = "sun4m/asm_linkage.h";
1293     files  = "sun4c/debug/asm_linkage.h";
1294     files  = "sun4m/debug/asm_linkage.h";
1295     files  = "arm/as_support.h";
1296     files  = "arm/mc_type.h";
1297     files  = "arm/xcb.h";
1298     files  = "dev/chardefmac.h";
1299     files  = "dev/ps_irq.h";
1300     files  = "dev/screen.h";
1301     files  = "dev/scsi.h";
1302     files  = "sys/tty.h";
1303     files  = "Xm.acorn/XmP.h";
1304     files  = bsd43/bsd43_.h;
1305     select = '/\*\*/';
1306     c_fix     = format;
1307     c_fix_arg = '##';
1308     test_text = "#define __CONCAT__(a,b) a/**/b";
1309 };
1310
1311
1312 /*
1313  *  GNU libc1 string.h does not prototype memcpy and memcmp for gcc
1314  *  versions > 1.  This fix will open up the declaration for all
1315  *  versions of GCC and for g++.
1316  */
1317 fix = {
1318     hackname  = libc1_ifdefd_memx;
1319
1320     /* The string.h result is overwritten by AAB_ultrix_string when doing
1321        "make check" and will fail.  Therefore, we add the following kludgery
1322        to insert the test_text into the special testing header.  :-}  */
1323     files     = testing.h;
1324     files     = string.h;
1325
1326     c_fix     = format;
1327     select    = "' is a built-in function for gcc 2\\.x\\. \\*/";
1328     bypass    = __cplusplus;
1329     c_fix_arg = "%1";
1330     c_fix_arg =
1331        '/\* `mem...\' is a built-in function for gcc 2\.x\. \*/' "\n"
1332        '#if defined\(__STDC__\) && __GNUC__ < 2'                 "\n"
1333        "(/\\* .* \\*/\n"
1334        "extern [a-z_]+ mem.*(\n[^#].*)*;)\n"
1335        "#endif";
1336
1337     test_text =
1338     "/* \\`memcpy' is a built-in function for gcc 2.x. */\n"
1339     "#if defined(__STDC__) && __GNUC__ < 2\n"
1340     "/* Copy N bytes of SRC to DEST.  */\n"
1341     "extern __ptr_t memcpy __P ((__ptr_t __dest, __const __ptr_t __src,\n"
1342     "                         size_t __n));\n"
1343     "#endif";
1344 };
1345
1346
1347 /*
1348  *  In limits.h, put #ifndefs around things that are supposed to be defined
1349  *  in float.h to avoid redefinition errors if float.h is included first.
1350  *  On HP/UX this patch does not work, because on HP/UX limits.h uses
1351  *  multi line comments and the inserted #endif winds up inside the
1352  *  comment.  Fortunately, HP/UX already uses #ifndefs in limits.h; if
1353  *  we find a #ifndef FLT_MIN we assume that all the required #ifndefs
1354  *  are there, and we do not add them ourselves.
1355  */
1356 fix = {
1357     hackname = limits_ifndefs;
1358     files  = "sys/limits.h";
1359     files  = "limits.h";
1360     bypass = "ifndef[ \t]+FLT_MIN";
1361
1362     c_fix     = format;
1363     c_fix_arg = "#ifndef %1\n%0\n#endif";
1364     c_fix_arg = "^[ \t]*#[ \t]*define[ \t]+"
1365                 "((FLT|DBL)_(MIN|MAX|DIG))[ \t].*";
1366     test_text = " #\tdefine\tDBL_DIG \t 0  /* somthin' */";
1367 };
1368
1369
1370 /*
1371  *  Delete the '#define void int' line from curses.h on Lynx
1372  */
1373 fix = {
1374     hackname  = lynx_void_int;
1375     files     = curses.h;
1376     select    = "#[ \t]*define[ \t]+void[ \t]+int[ \t]*";
1377     c_fix     = format;
1378     c_fix_arg = "";
1379     test_text = "# define\tvoid\tint \t/* curses foiled again */";
1380 };
1381
1382
1383 /*
1384  *  Fix fcntl prototype in fcntl.h on LynxOS.
1385  */
1386 fix = {
1387     hackname  = lynxos_fcntl_proto;
1388     files     = fcntl.h;
1389     select    = "fcntl[ \t]*" '\(int, int, int\)';
1390     c_fix     = format;
1391     c_fix_arg = '%1...)';
1392     c_fix_arg = "(fcntl[ \t]*" '\(int, int, )int\)';
1393     test_text = "extern int fcntl(int, int, int);";
1394 };
1395
1396
1397 /*
1398  *  libm.a on m88k-motorola-sysv3 contains a stupid optimization for
1399  *  function hypot(), which returns the second argument without even
1400  *  looking at its value, if the other is 0.0.
1401  */
1402 fix = {
1403     hackname  = m88k_bad_hypot_opt;
1404     mach      = "m88k-motorola-sysv3*";
1405     files     = "math.h";
1406     select    = "^extern double hypot\\(\\);\n";
1407     c_fix     = format;
1408     c_fix_arg = "%0"
1409           "/* Workaround a stupid Motorola optimization if one\n"
1410           "   of x or y is 0.0 and the other is negative!  */\n"
1411           "#ifdef __STDC__\n"
1412           "static __inline__ double fake_hypot (double x, double y)\n"
1413           "#else\n"
1414           "static __inline__ double fake_hypot (x, y)\n"
1415           "\tdouble x, y;\n"
1416           "#endif\n"
1417           "{\n"
1418           "\treturn fabs (hypot (x, y));\n"
1419           "}\n"
1420           "#define hypot\tfake_hypot\n";
1421     test_text = "extern double hypot();";
1422 };
1423
1424
1425 /*
1426  *  Fix incorrect S_IF* definitions on m88k-sysv3.
1427  */
1428 fix = {
1429     hackname = m88k_bad_s_if;
1430     mach     = "m88k-*-sysv3*";
1431     files    = sys/stat.h;
1432     select   = "#define[ \t]+S_IS[A-Z]+\\(m\\)[ \t]+\\(m[ \t]*&";
1433
1434     c_fix     = format;
1435     c_fix_arg = '#define %1(m) (((m) & S_IFMT) == %2)';
1436     c_fix_arg = "#define[ \t]+(S_IS[A-Z]+)\\(m\\)[ \t]+"
1437                   "\\(m[ \t]*&[ \t]*"
1438                     "(S_IF[A-Z][A-Z][A-Z]+|0[0-9]+)"
1439                   "[ \t]*\\)";
1440     test_text = '#define S_ISREG(m) (m & S_IFREG) /* is regular? */';
1441 };
1442
1443
1444 /*
1445  * Put cpp wrappers around these include files to avoid redeclaration
1446  * errors during multiple inclusion on m88k-tektronix-sysv3.
1447  */
1448 fix = {
1449     hackname = m88k_multi_incl;
1450     mach     = "m88k-tektronix-sysv3*";
1451     files    = "time.h";
1452     bypass   = "#ifndef";
1453     c_fix    = wrap;
1454     test_text = "";
1455 };
1456
1457
1458 /*
1459  * Fix BSD machine/ansi.h to use __builtin_va_list to define _BSD_VA_LIST_.
1460  */
1461 fix = {
1462     hackname = machine_ansi_h_va_list;
1463     files    = machine/ansi.h;
1464     select   = "define[ \t]+_BSD_VA_LIST_[ \t]";
1465     bypass   = '__builtin_va_list';
1466
1467     c_fix     = format;
1468     c_fix_arg = "%1__builtin_va_list";
1469     c_fix_arg = "(define[ \t]+_BSD_VA_LIST_[ \t]+).*";
1470
1471     test_text = " # define _BSD_VA_LIST_\tchar**";
1472 };
1473
1474
1475 /*
1476  *  Fix non-ansi machine name defines
1477  */
1478 fix = {
1479     hackname  = machine_name;
1480     c_test    = machine_name;
1481     c_fix     = machine_name;
1482
1483     test_text = "/* MACH_DIFF: */\n"
1484     "#if defined( i386 ) || defined( sparc ) || defined( vax )"
1485     "\n/* no uniform test, so be careful  :-) */";
1486 };
1487
1488
1489 /*
1490  *  Some math.h files define struct exception, which conflicts with
1491  *  the class exception defined in the C++ file std/stdexcept.h.  We
1492  *  redefine it to __math_exception.  This is not a great fix, but I
1493  *  haven't been able to think of anything better.
1494  *  Note that we have to put the #ifdef/#endif blocks at beginning
1495  *  and end of file, because fixproto runs after us and may insert
1496  *  additional references to struct exception.
1497  */
1498 fix = {
1499     hackname  = math_exception;
1500     files     = math.h;
1501     select    = "struct exception";
1502     bypass    = 'We have a problem when using C\+\+';
1503     c_fix     = wrap;
1504
1505     c_fix_arg = "#ifdef __cplusplus\n"
1506                 "#define exception __math_exception\n"
1507                 "#endif\n";
1508
1509     c_fix_arg = "#ifdef __cplusplus\n"
1510                 "#undef exception\n"
1511                 "#endif\n";
1512
1513     test_text = "typedef struct exception t_math_exception;";
1514 };
1515
1516
1517 /*
1518  *  This looks pretty broken to me.  ``dbl_max_def'' will contain
1519  *  "define DBL_MAX " at the start, when what we really want is just
1520  *  the value portion.  Can't figure out how to write a test case
1521  *  for this either  :-(
1522  */
1523 fix = {
1524     hackname = math_huge_val_from_dbl_max;
1525     files    = math.h;
1526
1527     /*
1528      * IF HUGE_VAL is defined to be DBL_MAX *and* DBL_MAX is _not_ defined
1529      * in math.h, this fix applies.
1530      */
1531     select   = "define[ \t]+HUGE_VAL[ \t]+DBL_MAX";
1532     bypass   = "define[ \t]+DBL_MAX";
1533
1534     shell    =
1535     /*
1536      *  See if we have a definition for DBL_MAX in float.h.
1537      *  If we do, we will replace the one in math.h with that one.
1538      */
1539
1540     "\tdbl_max_def=`egrep 'define[ \t]+DBL_MAX[ \t]+.*' float.h "
1541                    "| sed 's/.*DBL_MAX[ \t]*//' 2>/dev/null`\n\n"
1542
1543     "\tif ( test -n \"${dbl_max_def}\" ) > /dev/null 2>&1\n"
1544     "\tthen sed -e '/define[ \t]*HUGE_VAL[ \t]*DBL_MAX/"
1545                         "s@DBL_MAX@'\"$dbl_max_def@\"\n"
1546     "\telse cat\n"
1547     "\tfi";
1548
1549     test_text =
1550     "`echo '#define DBL_MAX\t3.1415e+9 /* really big */' >> float.h`\n"
1551     "#define HUGE_VAL DBL_MAX";
1552 };
1553
1554
1555 /*
1556  * In any case, put #ifndef .. #endif around #define HUGE_VAL in math.h.
1557  */
1558 fix = {
1559     hackname = math_huge_val_ifndef;
1560     files    = math.h;
1561     files    = math/math.h;
1562     select   = "define[ \t]+HUGE_VAL";
1563
1564     c_fix     = format;
1565     c_fix_arg = "#ifndef HUGE_VAL\n%0\n#endif";
1566     c_fix_arg = "^[ \t]*#[ \t]*define[ \t]+HUGE_VAL[ \t].*";
1567
1568     test_text = "# define\tHUGE_VAL 3.4e+40";
1569 };
1570
1571
1572 /*
1573  * Fix nested comments in Motorola's <limits.h> and <sys/limits.h>
1574  */
1575 fix = {
1576     hackname = nested_motorola;
1577     mach     = "m68k-motorola-sysv*";
1578     files    = sys/limits.h;
1579     files    = limits.h;
1580     select   = "max # bytes atomic in write|error value returned by Math lib";
1581
1582     sed = "s@^\\(#undef[ \t][ \t]*PIPE_BUF[ \t]*"
1583                    "/\\* max # bytes atomic in write to a\\)$@\\1 */@";
1584     sed = "s@\\(/\\*#define\tHUGE_VAL\t3.[0-9e+]* \\)"
1585           "\\(/\\*error value returned by Math lib\\*/\\)$@\\1*/ \\2@";
1586
1587     test_text =
1588     "#undef PIPE_BUF /* max # bytes atomic in write to a\n"
1589     "\t\t/* PIPE */\n"
1590     "/*#define\tHUGE_VAL\t3.9e+9 /*error value returned by Math lib*/";
1591 };
1592
1593
1594 /*
1595  * Fixing nested comments in ISC <sys/limits.h>
1596  */
1597 fix = {
1598     hackname = nested_sys_limits;
1599     files  = sys/limits.h;
1600     select = CHILD_MAX;
1601     sed    = "/CHILD_MAX/s,/\\* Max, Max,";
1602     sed    = "/OPEN_MAX/s,/\\* Max, Max,";
1603     test_text = "/*\n#define CHILD_MAX 20 /* Max, Max, ... */ /*\n"
1604                 "#define OPEN_MAX  20 /* Max, Max, ... */\n";
1605 };
1606
1607 /*
1608  *  nested comment
1609  */
1610 fix = {
1611     hackname  = nested_auth_des;
1612     files     = rpc/rpc.h;
1613     select    = '(/\*.*rpc/auth_des\.h>.*)/\*';
1614     c_fix     = format;
1615     c_fix_arg = "%1*/ /*";
1616     test_text = "/*#include <rpc/auth_des.h> /* skip this */";
1617 };
1618
1619
1620 /*
1621  *  fix bogus recursive stdlib.h in NEWS-OS 4.0C
1622  */
1623 fix = {
1624     hackname = news_os_recursion;
1625     files    = stdlib.h;
1626     select   = "[ \t]*#include <stdlib\\.h>.*";
1627
1628     c_fix     = format;
1629     c_fix_arg = "#ifdef BOGUS_RECURSION\n%0\n#endif";
1630     test_text = "#include <stdlib.h>";
1631 };
1632
1633
1634 /*
1635  *  NeXT 3.2 adds const prefix to some math functions.
1636  *  These conflict with the built-in functions.
1637  */
1638 fix = {
1639     hackname  = next_math_prefix;
1640     files     = ansi/math.h;
1641     select    = "^extern[ \t]+double[ \t]+__const__[ \t]";
1642
1643     c_fix     = format;
1644     c_fix_arg = "extern double %1(";
1645     c_fix_arg = "^extern[ \t]+double[ \t]+__const__[ \t]+([a-z]+)\\(";
1646
1647     test_text = "extern\tdouble\t__const__\tmumble();";
1648 };
1649
1650
1651 /*
1652  *  NeXT 3.2 uses the word "template" as a parameter for some
1653  *  functions. GCC reports an invalid use of a reserved key word
1654  *  with the built-in functions.
1655  */
1656 fix = {
1657     hackname = next_template;
1658     files    = bsd/libc.h;
1659     select   = "[ \t]template\\)";
1660
1661     c_fix     = format;
1662     c_fix_arg = "(%1)";
1663     c_fix_arg = "\\(([^)]*)[ \t]template\\)";
1664     test_text = "extern mumble( char * template); /* fix */";
1665 };
1666
1667
1668 /*
1669  *  NeXT 3.2 includes the keyword volatile in the abort() and  exit()
1670  *  function prototypes. That conflicts with the  built-in functions.
1671  */
1672 fix = {
1673     hackname = next_volitile;
1674     files    = ansi/stdlib.h;
1675     select   = "^extern[ \t]+volatile[ \t]+void[ \t]";
1676
1677     c_fix     = format;
1678     c_fix_arg = "extern void %1(";
1679     c_fix_arg = "^extern[ \t]+volatile[ \t]+void[ \t]+(exit|abort)\\(";
1680
1681     test_text = "extern\tvolatile\tvoid\tabort();";
1682 };
1683
1684
1685 /*
1686  *  NeXT 2.0 defines 'int wait(union wait*)', which conflicts with Posix.1.
1687  *  Note that version 3 of the NeXT system has wait.h in a different directory,
1688  *  so that this code won't do anything.  But wait.h in version 3 has a
1689  *  conditional, so it doesn't need this fix.  So everything is okay.
1690  */
1691 fix = {
1692     hackname  = next_wait_union;
1693     files     = sys/wait.h;
1694
1695     select    = 'wait\(union wait';
1696     c_fix     = format;
1697     c_fix_arg = "wait(void";
1698     test_text = "extern pid_d wait(union wait*);";
1699 };
1700
1701
1702 /*
1703  *  a missing semi-colon at the end of the nodeent structure definition.
1704  */
1705 fix = {
1706     hackname  = nodeent_syntax;
1707     files     = netdnet/dnetdb.h;
1708     select    = "char[ \t]*\\*na_addr[ \t]*$";
1709     c_fix     = format;
1710     c_fix_arg = "%0;";
1711     test_text = "char *na_addr\t";
1712 };
1713
1714
1715 /*
1716  *  sys/lc_core.h on some versions of OSF1/4.x pollutes the namespace by
1717  *  defining regex.h related types.  This causes libg++ build and usage
1718  *  failures.  Fixing this correctly requires checking and modifying 3 files.
1719  */
1720 fix = {
1721     hackname = osf_namespace_a;
1722     files    = reg_types.h;
1723     files    = sys/lc_core.h;
1724     test     = " -r reg_types.h";
1725     test     = " -r sys/lc_core.h";
1726     test     = " -n \"`grep '} regex_t;' reg_types.h`\"";
1727     test     = " -z \"`grep __regex_t regex.h`\"";
1728
1729     c_fix     = format;
1730     c_fix_arg = "__%0";
1731     c_fix_arg = "reg(ex|off|match)_t";
1732
1733     test_text = "`touch sys/lc_core.h`"
1734     "typedef struct {\n  int stuff, mo_suff;\n} regex_t;\n"
1735     "extern regex_t    re;\n"
1736     "extern regoff_t   ro;\n"
1737     "extern regmatch_t rm;\n";
1738 };
1739
1740 fix = {
1741     hackname = osf_namespace_c;
1742     files    = regex.h;
1743     test     = " -r reg_types.h";
1744     test     = " -r sys/lc_core.h";
1745     test     = " -n \"`grep '} regex_t;' reg_types.h`\"";
1746     test     = " -z \"`grep __regex_t regex.h`\"";
1747
1748     select    = "#include <reg_types\.h>.*";
1749     c_fix     = format;
1750     c_fix_arg = "%0\n"
1751                 "typedef __regex_t\tregex_t;\n"
1752                 "typedef __regoff_t\tregoff_t;\n"
1753                 "typedef __regmatch_t\tregmatch_t;";
1754
1755     test_text = "#include <reg_types.h>";
1756 };
1757
1758
1759 /*
1760  *  Fix __page_size* declarations in pthread.h AIX 4.1.[34].
1761  *  The original ones fail if uninitialized externs are not common.
1762  *  This is the default for all ANSI standard C++ compilers.
1763  */
1764 fix = {
1765     hackname  = pthread_page_size;
1766     files     = pthread.h;
1767     select    = "^int __page_size";
1768     c_fix     = format;
1769     c_fix_arg = "extern %0";
1770     test_text = "int __page_size;";
1771 };
1772
1773
1774 /*
1775  *  Fix return type of fread and fwrite on sysV68
1776  */
1777 fix = {
1778     hackname = read_ret_type;
1779     files    = stdio.h;
1780     select   = "extern int\t.*, fread\\(\\), fwrite\\(\\)";
1781     c_fix     = format;
1782     c_fix_arg = "extern unsigned int fread(), fwrite();\n%1%2";
1783     c_fix_arg = "(extern int\t.*), fread\\(\\), fwrite\\(\\)(.*)";
1784
1785     test_text = "extern int\tfclose(), fflush(), fread(), fwrite(), foo();";
1786 };
1787
1788
1789 /*
1790  *  function class(double x) conflicts with C++ keyword on rs/6000 
1791  */
1792 fix = {
1793     hackname  = rs6000_double;
1794     files     = math.h;
1795     select    = '[^a-zA-Z_]class\(';
1796
1797     c_fix     = format;
1798     c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
1799     c_fix_arg = '^.*[^a-zA-Z_]class\(.*';
1800
1801     test_text = "extern int class();";
1802 };
1803
1804
1805 /*
1806  *  Wrong fchmod prototype on RS/6000.
1807  */
1808 fix = {
1809     hackname  = rs6000_fchmod;
1810     files     = sys/stat.h;
1811     select    = 'fchmod\(char \*';
1812     c_fix     = format;
1813     c_fix_arg = "fchmod(int";
1814     test_text = "extern int fchmod(char *, mode_t);";
1815 };
1816
1817
1818 /*
1819  *  parameters conflict with C++ new on rs/6000 
1820  */
1821 fix = {
1822     hackname  = rs6000_param;
1823     files     = "stdio.h";
1824     files     = "unistd.h";
1825
1826     select    = 'rename\(const char \*old, const char \*new\)';
1827     c_fix     = format;
1828     c_fix_arg = 'rename(const char *_old, const char *_new)';
1829
1830     test_text = 'extern int rename(const char *old, const char *new);';
1831 };
1832
1833
1834 /*
1835  *  The static functions lstat() and fchmod() in <sys/stat.h> 
1836  *  cause G++ grief since they're not wrapped in "if __cplusplus".
1837  *
1838  *  On SCO OpenServer 5.0.0 through (at least) 5.0.5 <sys/stat.h> contains
1839  *  tiny static wrappers that aren't C++ safe.
1840  */
1841 fix = {
1842     hackname = sco_static_func;
1843     files    = sys/stat.h;
1844     mach     = "i?86-*-sco3.2*";
1845     select   = "^static int";
1846
1847     sed      = "/^static int/i\\\n"
1848                "#if __cplusplus\\\n"
1849                "extern \"C\" {\\\n"
1850                "#endif /* __cplusplus */";
1851
1852     sed      = "/^}$/a\\\n"
1853                "#if __cplusplus\\\n"
1854                " }\\\n"
1855                "#endif /* __cplusplus */";
1856
1857     test_text =
1858     "#ifdef __STDC__\n"
1859     "static int\tstat(const char *__f, struct stat *__p) {\n"
1860     "\treturn __stat32(__f, __p);\n"
1861     "}\n\n#  else /* !__STDC__ */\n"
1862
1863     "static int\tstat(__f, __p)\n"
1864     "\tchar *__f;\n"
1865     "\tstruct stat *__p;\n"
1866     "{\n"
1867     "\treturn __stat32(__f, __p);\n"
1868     "}\n"
1869     "#endif";
1870 };
1871
1872
1873 /*
1874  *  "!__STDC__" is "!defined( __STRICT_ANSI__ )"
1875  */
1876 fix = {
1877     hackname = sco_strict_ansi;
1878     mach     = "i?86-*-sco3.2*";
1879     select   = "^[ \t]*#[ \t]*if.*!__STDC__";
1880
1881     c_fix     = format;
1882     c_fix_arg = "%1defined(__STRICT_ANSI__)%2";
1883     c_fix_arg = "^([ \t]*#[ \t]*if[ \t].*!)__STDC__(.*)";
1884
1885     test_text = "#if !__STDC__ /* not standard C */\nint foo;\n#endif";
1886 };
1887
1888
1889 /*
1890  *  Fix prototype declaration of utime in sys/times.h.
1891  *  In 3.2v4.0 the const is missing.
1892  */
1893 fix = {
1894     hackname  = sco_utime;
1895     files     = sys/times.h;
1896     mach      = "i?86-*-sco3.2v4*";
1897
1898     select    = '\(const char \*, struct utimbuf \*\);';
1899     c_fix     = format;
1900     c_fix_arg = '(const char *, const struct utimbuf *);';
1901
1902     test_text = "extern int utime(const char *, struct utimbuf *);";
1903 };
1904
1905
1906 /*
1907  *  Sony NEWSOS 5.0 does not support the complete ANSI C standard.
1908  */
1909 #ifdef SONY
1910 fix = {
1911     hackname = sony_ctype;
1912     files    = ctype.h;
1913     test     = " -x /bin/sony";
1914     test     = " ! -z \"`if /bin/sony ; then echo true ; fi`\"";
1915     sed      = "s/__ctype/_ctype/g";
1916 };
1917 #endif
1918
1919
1920 /*
1921  *  Sony NEWSOS 5.0 does not support the complete ANSI C standard.
1922  */
1923 #ifdef SONY
1924 fix = {
1925     hackname = sony_stdio;
1926     files    = stdio.h;
1927     test     = " -x /bin/sony";
1928     test     = " ! -z \"`if /bin/sony ; then echo true ; fi`\"";
1929     sed      = "s/__filbuf/_filbuf/g\n"
1930                "s/__flsbuf/_flsbuf/g\n"
1931                "s/__iob/_iob/g";
1932 };
1933 #endif
1934
1935
1936 /*
1937  *  Add a `static' declaration of `getrnge' into <regexp.h>.
1938  *
1939  *  Don't do this if there is already a `static void getrnge' declaration
1940  *  present, since this would cause a redeclaration error.  Solaris 2.x has
1941  *  such a declaration.
1942  */
1943 #ifdef SVR4
1944 fix = {
1945     hackname = static_getrnge;
1946     files    = regexp.h;
1947     bypass   = "static void getrnge";
1948     sed      = "/^static int[ \t]*size;/c\\\n"
1949                "static int      size ;\\\n\\\n"
1950                "static int getrnge ();";
1951 };
1952 #endif
1953
1954
1955 /*
1956  *  a missing semi-colon at the end of the statsswtch structure definition.
1957  */
1958 fix = {
1959     hackname  = statsswtch;
1960     files     = rpcsvc/rstat.h;
1961     select    = "boottime$";
1962     c_fix     = format;
1963     c_fix_arg = "boottime;";
1964     test_text = "struct statswtch {\n  int boottime\n};";
1965 };
1966
1967
1968 /*
1969  *  Arrange for stdio.h to use stdarg.h to define __gnuc_va_list.
1970  *  On 4BSD-derived systems, stdio.h defers to machine/ansi.h; that's
1971  *  OK too.
1972  */
1973 fix = {
1974     hackname = stdio_stdarg_h;
1975     files    = stdio.h;
1976     bypass   = "include.*(stdarg\.h|machine/ansi\.h)";
1977
1978     c_fix     = wrap;
1979
1980     c_fix_arg = "#define __need___va_list\n#include <stdarg.h>\n";
1981
1982     test_text = "";
1983 };
1984
1985
1986 /*
1987  *  Don't use or define the name va_list in stdio.h.
1988  *  This is for ANSI and also to interoperate properly with gcc's varargs.h.
1989  *  Note _BSD_VA_LIST_ is dealt with elsewhere.
1990  */
1991 fix = {
1992     hackname = stdio_va_list;
1993     files    = stdio.h;
1994     bypass   = '__gnuc_va_list|_BSD_VA_LIST_';
1995
1996     /*
1997      * Use __gnuc_va_list in arg types in place of va_list.
1998      * On 386BSD use __gnuc_va_list instead of _VA_LIST_.  We're hoping the
1999      * trailing parentheses and semicolon save all other systems from this.
2000      * Define __not_va_list__ (something harmless and unused)
2001      * instead of va_list.
2002      * Don't claim to have defined va_list.
2003      */
2004     sed = "s@ va_list @ __gnuc_va_list @\n"
2005           "s@ va_list)@ __gnuc_va_list)@\n"
2006           "s@ _VA_LIST_));@ __gnuc_va_list));@\n"
2007           "s@ va_list@ __not_va_list__@\n"
2008           "s@\\*va_list@*__not_va_list__@\n"
2009           "s@ __va_list)@ __gnuc_va_list)@\n"
2010           "s@typedef[ \t]\\(.*\\)[ \t]va_list[ \t]*;"
2011            "@typedef \\1 __not_va_list__;@\n"
2012           "s@GNUC_VA_LIST@GNUC_Va_LIST@\n"
2013           "s@_NEED___VA_LIST@_NEED___Va_LIST@\n"
2014           "s@VA_LIST@DUMMY_VA_LIST@\n"
2015           "s@_Va_LIST@_VA_LIST@";
2016     test_text = "extern void mumble( va_list);";
2017 };
2018
2019
2020 /*
2021  *  Check for strict ansi compliance
2022  */
2023 #ifdef STRICT_ANSI
2024 fix = {
2025     hackname = strict_ansi;
2026     select   = "__STDC__[ \t]*[=!]=[ \t]*[01]";
2027     sed      = "s/__STDC__[ \t]*==[ \t]*0/!defined (__STRICT_ANSI__)/g";
2028     sed      = "s/__STDC__[ \t]*!=[ \t]*0/defined (__STRICT_ANSI__)/g";
2029     sed      = "s/__STDC__[ \t]*==[ \t]*1/defined (__STRICT_ANSI__)/g";
2030     sed      = "s/__STDC__[ \t]*!=[ \t]*1/!defined (__STRICT_ANSI__)/g";
2031 };
2032 #endif
2033
2034
2035 /*
2036  *  IRIX 4.0.5 <rpc/xdr.h> uses struct __file_s
2037  *  in prototype without previous definition.
2038  */
2039 fix = {
2040     hackname  = struct_file;
2041     files     = rpc/xdr.h;
2042     select    = '^.*xdrstdio_create.*struct __file_s';
2043     c_fix     = format;
2044     c_fix_arg = "struct __file_s;\n%0";
2045     test_text = "extern void xdrstdio_create( struct __file_s* );";
2046 };
2047
2048
2049 /*
2050  *  IRIX 4.0.5 <rpc/auth.h> uses struct sockaddr
2051  *  in prototype without previous definition.
2052  */
2053 fix = {
2054     hackname  = struct_sockaddr;
2055     files     = rpc/auth.h;
2056     select    = "^.*authdes_create.*struct sockaddr";
2057     bypass    = "<sys/socket\.h>";
2058     c_fix     = format;
2059     c_fix_arg = "struct sockaddr;\n%0";
2060     test_text = "extern AUTH* authdes_create( struct sockaddr* );";
2061 };
2062
2063
2064 /*
2065  *  Apply fix this to all OSs since this problem seems to effect
2066  *  more than just SunOS.
2067  */
2068 fix = {
2069     hackname = sun_auth_proto;
2070     files    = rpc/auth.h;
2071     files    = rpc/clnt.h;
2072     files    = rpc/svc.h;
2073     files    = rpc/xdr.h;
2074     /*
2075      *  Select those files containing '(*name)()'.
2076      */
2077     select    = '\(\*[a-z][a-z_]*\)\(\)';
2078
2079     c_fix     = format;
2080     c_fix_arg = "#ifdef __cplusplus\n%1(...);%2\n"
2081                 "#else\n%1();%2\n#endif";
2082     c_fix_arg = '(.*\(\*[a-z][a-z_]*\))\(\);(.*)';
2083
2084     test_text =
2085     "struct auth_t {\n"
2086     "    int (*name)(); /* C++ bad */\n"
2087     "};";
2088 };
2089
2090
2091 /*
2092  *  Fix bogus #ifdef on SunOS 4.1.
2093  */
2094 fix = {
2095     hackname  = sun_bogus_ifdef;
2096     files     = "hsfs/hsfs_spec.h";
2097     files     = "hsfs/iso_spec.h";
2098     select    = '#ifdef(.*\|\|.*)';
2099     c_fix     = format;
2100     c_fix_arg = "#if%1";
2101
2102     test_text = "#ifdef  __i386__ || __vax__ || __sun4c__";
2103 };
2104
2105
2106 /*
2107  *  Fix the CAT macro in SunOS memvar.h.
2108  */
2109 fix = {
2110     hackname  = sun_catmacro;
2111     files     = pixrect/memvar.h;
2112     select    = "^#define[ \t]+CAT\\(a,b\\).*";
2113     c_fix     = format;
2114
2115     c_fix_arg =
2116     "#ifdef __STDC__\n"
2117     "#  define CAT(a,b) a##b\n"
2118     "#else\n%0\n#endif";
2119
2120     test_text =
2121     "#define CAT(a,b)\ta/**/b";
2122 };
2123
2124
2125 /*
2126  *  Fix return type of free and {c,m,re}alloc in <malloc.h> on SunOS 4.1.
2127  *  Also fix return type of {m,re}alloc in <malloc.h> on sysV68
2128  */
2129 fix = {
2130     hackname = sun_malloc;
2131     files    = malloc.h;
2132
2133     sed   = "s/typedef[ \t]char \\*\tmalloc_t/typedef void \\*\tmalloc_t/g";
2134     sed   = "s/int[ \t][ \t]*free/void\tfree/g";
2135     sed   = "s/char\\([ \t]*\\*[ \t]*malloc\\)/void\\1/g";
2136     sed   = "s/char\\([ \t]*\\*[ \t]*realloc\\)/void\\1/g";
2137     sed   = "s/char\\([ \t]*\\*[ \t]*calloc\\)/void\\1/g";
2138
2139     test_text =
2140     "typedef char *\tmalloc_t;\n"
2141     "int \tfree();\n"
2142     "char*\tmalloc();\n"
2143     "char*\tcalloc();\n"
2144     "char*\trealloc();";
2145 };
2146
2147
2148 /*
2149  *  Check for yet more missing ';' in struct (in SunOS 4.0.x)
2150  */
2151 fix = {
2152     hackname = sun_rusers_semi;
2153     files    = rpcsvc/rusers.h;
2154     select   = "_cnt$";
2155     sed      = "/^struct/,/^};/s/_cnt$/_cnt;/";
2156     test_text = "struct mumble\n  int _cnt\n};";
2157 };
2158
2159
2160 /*
2161  *  signal.h on SunOS defines signal using (),
2162  *  which causes trouble when compiling with g++ -pedantic.
2163  */
2164 fix = {
2165     hackname = sun_signal;
2166     files    = sys/signal.h;
2167     files    = signal.h;
2168     select   = "^void\t" '\(\*signal\(\)\)\(\);.*';
2169
2170     c_fix     = format;
2171     c_fix_arg =
2172           "#ifdef __cplusplus\n"
2173           "void\t(*signal(...))(...);\n"
2174           "#else\n%0\n#endif";
2175
2176     test_text = "void\t(*signal())();";
2177 };
2178
2179
2180 /*
2181  *  math.h on SunOS 4 puts the declaration of matherr before the definition
2182  *  of struct exception, so the prototype (added by fixproto) causes havoc.
2183  */
2184 fix = {
2185     hackname  = sunos_matherr_decl;
2186     files     = math.h;
2187
2188     /*  If matherr has a prototype already, the header needs no fix.  */
2189     bypass    = 'matherr.*struct exception';
2190     select    = matherr;
2191
2192     c_fix     = wrap;
2193     c_fix_arg = "struct exception;\n";
2194
2195     test_text = "extern int matherr();";
2196 };
2197
2198
2199 /*
2200  *  Correct the return type for strlen in strings.h in SunOS 4.
2201  */
2202 fix = {
2203     hackname = sunos_strlen;
2204     files    = strings.h;
2205     select   = "int[ \t]*strlen\\(\\);(.*)";
2206     c_fix     = format;
2207     c_fix_arg = "__SIZE_TYPE__ strlen();%1";
2208     test_text = " int\tstrlen(); /* string length */";
2209 };
2210
2211
2212 /*
2213  *  Solaris math.h and floatingpoint.h define __P without protection,
2214  *  which conflicts with the fixproto definition.  The fixproto
2215  *  definition and the Solaris definition are used the same way.
2216  */
2217 fix = {
2218     hackname = svr4__p;
2219     files    = math.h;
2220     files    = floatingpoint.h;
2221     select   = "^#define[ \t]+__P.*";
2222     c_fix     = format;
2223     c_fix_arg = "#ifndef __P\n%0\n#endif";
2224
2225     test_text = "#define __P(a) a";
2226 };
2227
2228
2229 /*
2230  *  Disable apparent native compiler optimization cruft in SVR4.2 <string.h>
2231  *  that is visible to any ANSI compiler using this include.  Simply
2232  *  delete the lines that #define some string functions to internal forms.
2233  */
2234 #ifdef SVR4
2235 fix = {
2236     hackname = svr4_disable_opt;
2237     files    = string.h;
2238     select   = '#define.*__std_hdr_';
2239     sed      = '/#define.*__std_hdr_/d';
2240 };
2241 #endif
2242
2243
2244 /*
2245  *  Conditionalize some of <sys/endian.h> on __GNUC__ and __GNUG__.
2246  *  On some systems (UnixWare 2, UnixWare 7), the file is byteorder.h
2247  *  but we still "hijack" it and redirect it to the GNU byteorder.h..
2248  */
2249 #ifdef SVR5
2250 fix = {
2251     hackname = svr4_endian;
2252     files    = sys/endian.h;
2253 #ifdef LATER
2254     /*
2255      * since we emit our own sys/byteorder.h,
2256      * this fix can never be applied to that file.
2257      */
2258     files    = sys/byteorder.h;
2259 #endif
2260     bypass   = '__GNUC__';
2261
2262     sed      = "/#\tifdef\t__STDC__/i\\\n"
2263                "#   if !defined (__GNUC__) && !defined (__GNUG__)\n";
2264
2265     sed      = "/#\t\tinclude\t<sys\\/byteorder.h>/s/\t\t/   /";
2266
2267     sed      = "/#   include\t<sys\\/byteorder.h>/i\\\n"
2268                "#   endif /* !defined (__GNUC__) && !defined (__GNUG__) */\n";
2269 };
2270 #endif /* SVR5 */
2271
2272
2273 /*
2274  *  Remove useless extern keyword from struct forward declarations
2275  *  in <sys/stream.h> and <sys/strsubr.h>
2276  */
2277 #ifdef SVR4
2278 fix = {
2279     hackname = svr4_extern_struct;
2280     files    = sys/stream.h;
2281     files    = sys/strsubr.h;
2282     select   = 'extern struct [a-z_]*;';
2283     sed      = 's/extern struct \([a-z][a-z_]*\)/struct \1/';
2284 };
2285 #endif
2286
2287 /*
2288  *  Fix declarations of `ftw' and `nftw' in <ftw.h>.  On some/most SVR4
2289  *  systems the file <ftw.h> contains extern declarations of these
2290  *  functions followed by explicitly `static' definitions of these
2291  *  functions... and that's not allowed according to ANSI C.  (Note
2292  *  however that on Solaris, this header file glitch has been pre-fixed by
2293  *  Sun.  In the Solaris version of <ftw.h> there are no static
2294  *  definitions of any function so we don't need to do any of this stuff
2295  *  when on Solaris.
2296  */
2297 #ifdef SVR4
2298 #ifndef SOLARIS
2299 fix = {
2300     hackname = svr4_ftw;
2301     files    = ftw.h;
2302     select   = '^extern int ftw\(const';
2303
2304     sed = '/^extern int ftw(const/i' "\\\n"
2305             "#if !defined(_STYPES)\\\n"
2306             "static\\\n"
2307             "#else\\\n"
2308             "extern\\\n"
2309             "#endif";
2310     sed = 's/extern \(int ftw(const.*\)$/\1/';
2311     sed = "/^extern int nftw/i\\\n"
2312             "#if defined(_STYPES)\\\n"
2313             "static\\\n"
2314             "#else\\\n"
2315             "extern\\\n"
2316             "#endif";
2317     sed = 's/extern \(int nftw.*\)$/\1/';
2318     sed = "/^extern int ftw(),/c\\\n"
2319             "#if !defined(_STYPES)\\\n"
2320             "static\\\n"
2321             "#else\\\n"
2322             "extern\\\n"
2323             "#endif\\\n"
2324             "  int ftw();\\\n"
2325             "#if defined(_STYPES)\\\n"
2326             "static\\\n"
2327             "#else\\\n"
2328             "extern\\\n"
2329             "#endif\\\n"
2330             "  int nftw();";
2331 };
2332 #endif
2333 #endif
2334
2335
2336 /*
2337  *   Fix broken decl of getcwd present on some svr4 systems.
2338  */
2339 fix = {
2340     hackname = svr4_getcwd;
2341     files    = stdlib.h;
2342     files    = unistd.h;
2343     files    = prototypes.h;
2344     select   = 'getcwd\(char \*, int\)';
2345
2346     c_fix     = format;
2347     c_fix_arg = "getcwd(char *, size_t)";
2348
2349     test_text = "extern char* getcwd(char *, int);";
2350 };
2351
2352
2353 /*
2354  *  set ifdef _KERNEL
2355  */
2356 #ifdef SVR4
2357 fix = {
2358     hackname = svr4_kernel;
2359     files    = fs/rfs/rf_cache.h;
2360     files    = sys/erec.h;
2361     files    = sys/err.h;
2362     files    = sys/char.h;
2363     files    = sys/getpages.h;
2364     files    = sys/map.h;
2365     files    = sys/cmn_err.h;
2366     files    = sys/kdebugger.h;
2367     bypass   = '_KERNEL';
2368     c_fix     = wrap;
2369
2370     c_fix_arg = "#ifdef _KERNEL\n";
2371     c_fix_arg = "#endif /* _KERNEL */\n";
2372     test_text = "";
2373 };
2374 #endif
2375
2376 /*
2377  *  Delete any #defines of `__i386' which may be present in <ieeefp.h>.  They
2378  *  tend to conflict with the compiler's own definition of this symbol.  (We
2379  *  will use the compiler's definition.)
2380  *  Likewise __sparc, for Solaris, and __i860, and a few others
2381  *  (guessing it is necessary for all of them).
2382  */
2383 #ifdef SVR4
2384 fix = {
2385     hackname = svr4_mach_defines;
2386     files    = ieeefp.h;
2387     select   = "#define[ \t]*__(i386|i860|mips|sparc|m88k|m68k)[ \t]";
2388     sed      = "/#define[ \t]*__\\(i386|i860|mips|sparc|m88k|m68k\\)[ \t]/d";
2389 };
2390 #endif
2391
2392
2393 /*
2394  *  Fix declarations of `makedev', `major', and `minor' in <sys/mkdev.h>.
2395  *  They are declared as non-static then immediately redeclared as static.
2396  */
2397 #ifdef SVR5
2398 fix = {
2399     hackname = svr4_mkdev;
2400     files    = sys/mkdev.h;
2401     select   = '^static';
2402
2403     sed      = "/^dev_t makedev(/s/^/static /";
2404     sed      = "/^major_t major(/s/^/static /";
2405     sed      = "/^minor_t minor(/s/^/static /";
2406 };
2407 #endif /* SVR5 */
2408
2409
2410 /*
2411  *  Fix reference to NC_NPI_RAW in <sys/netcspace.h>.
2412  *  Also fix types of array initializers.
2413  */
2414 #ifdef SVR4
2415 fix = {
2416     hackname = svr4_netcspace;
2417     files    = sys/netcspace.h;
2418     select   = 'NC_NPI_RAW';
2419     sed      = 's/NC_NPI_RAW/NC_TPI_RAW/g';
2420     sed      = 's/NC_/(unsigned long) NC_/';
2421 };
2422 #endif
2423
2424 /*
2425  *  Fix reference to NMSZ in <sys/adv.h>.
2426  */
2427 #ifdef SVR4
2428 fix = {
2429     hackname = svr4_nmsz;
2430     files    = sys/adv.h;
2431     select   = '\[NMSZ\]';
2432     sed      = 's/\[NMSZ\]/\[RFS_NMSZ\]/g';
2433 };
2434 #endif
2435
2436
2437 /*
2438  *   Fix broken decl of profil present on some svr4 systems.
2439  */
2440 fix = {
2441     hackname = svr4_profil;
2442     files    = stdlib.h;
2443     files    = unistd.h;
2444
2445     select    =
2446     'profil\(unsigned short \*, unsigned int, unsigned int, unsigned int\)';
2447     c_fix     = format;
2448     c_fix_arg = 'profil(unsigned short *, size_t, int, unsigned int)';
2449
2450     test_text =
2451     'profil(unsigned short *, unsigned int, unsigned int, unsigned int);';
2452 };
2453
2454
2455 /*
2456  *  Convert functions to prototype form, and fix arg names in <sys/stat.h>.
2457  */
2458 #ifdef SVR4
2459 fix = {
2460     hackname = svr4_proto_form;
2461     files    = sys/stat.h;
2462     select   = 'const extern';
2463
2464     sed      = "/^stat([ \t]*[^c]/ {\nN\nN\n"
2465                    "s/(.*)\\n/( /\n"
2466                    "s/;\\n/, /\n"
2467                    "s/;$/)/\n"  "}";
2468
2469     sed      = "/^lstat([ \t]*[^c]/ {\nN\nN\n"
2470                    "s/(.*)\\n/( /\n"
2471                    "s/;\\n/, /\n"
2472                    "s/;$/)/\n"  "}";
2473
2474     sed      = "/^fstat([ \t]*[^i]/ {\nN\nN\n"
2475                    "s/(.*)\\n/( /\n"
2476                    "s/;\\n/, /\n"
2477                    "s/;$/)/\n"  "}";
2478
2479     sed      = "/^mknod([ \t]*[^c]/{\nN\nN\nN\n"
2480                    "s/(.*)\\n/( /\n"
2481                    "s/;\\n/, /g\n"
2482                    "s/;$/)/\n"  "}";
2483
2484     sed      = "1,$s/\\([^A-Za-z]\\)path\\([^A-Za-z]\\)/\\1__path\\2/g";
2485     sed      = "1,$s/\\([^A-Za-z]\\)buf\\([^A-Za-z]\\)/\\1__buf\\2/g";
2486     sed      = "1,$s/\\([^A-Za-z]\\)fd\\([^A-Za-z]\\)/\\1__fd\\2/g";
2487     sed      = "1,$s/ret\\([^u]\\)/__ret\\1/g";
2488     sed      = "1,$s/\\([^_]\\)mode\\([^_]\\)/\\1__mode\\2/g";
2489     sed      = "1,$s/\\([^_r]\\)dev\\([^_]\\)/\\1__dev\\2/g";
2490 };
2491 #endif
2492
2493 /*
2494  *  Add a prototyped declaration of mmap to <sys/mman.h>.
2495  */
2496 #ifdef SVR4
2497 fix = {
2498     hackname = svr4_proto_mmap;
2499     files    = sys/mman.h;
2500     select   = '^extern caddr_t mmap();$';
2501     sed = '/^extern caddr_t mmap();$/c' "\\\n"
2502           "#ifdef __STDC__\\\n"
2503           "extern caddr_t mmap (caddr_t, size_t, int, int, int, off_t);\\\n"
2504           "#else /* !defined(__STDC__) */\\\n"
2505           "extern caddr_t mmap ();\\\n"
2506           "#endif /* !defined(__STDC__) */\\\n";
2507 };
2508 #endif
2509
2510 /*
2511  *  Add a #define of _SIGACTION_ into <sys/signal.h>.
2512  */
2513 #ifdef SVR4
2514 fix = {
2515     hackname = svr4_sigaction;
2516     files    = sys/signal.h;
2517     sed      = "/^struct sigaction {/i\\\n"
2518                "#define _SIGACTION_";
2519     sed      = 's/(void *(\*)())/(void (*)(int))/';
2520 };
2521 #endif
2522
2523 /*
2524  *  Put storage class at start of decl, to avoid warning.
2525  */
2526 #ifdef SVR4
2527 fix = {
2528     hackname = svr4_storage_class;
2529     files    = rpc/types.h;
2530     select   = 'const extern';
2531     sed      = 's/const extern/extern const/g';
2532 };
2533 #endif
2534
2535
2536 /* 
2537  *  Like svr4_mach_defines, but with newfangled syntax.
2538  *  Source lines are of #define __i386 #machine(i386).   Delete them.
2539  */
2540 #ifdef SVR5
2541 fix = {
2542     hackname = svr5_mach_defines;
2543     files    = ieeefp.h;
2544     select   = "#define[ \t]*__i386.*\(i386\)";
2545     sed      = "/#define[ \t]*__i386.*/d";
2546 };
2547 #endif /*  SVR5 */
2548
2549
2550 /*
2551  * Fix these files to use the same types that we think they should.
2552  */
2553 fix = {
2554     hackname  = gnu_types;
2555     files  = "sys/types.h";
2556     files  = "stdlib.h";
2557     files  = "sys/stdtypes.h";
2558     files  = "stddef.h";
2559     files  = "memory.h";
2560     files  = "unistd.h";
2561     bypass    = '_GCC_(PTRDIFF|SIZE|WCHAR)_T';
2562     select    = "^[ \t]*typedef[ \t]+.*[ \t](ptrdiff|size|wchar)_t;";
2563     c_fix     = gnu_type;
2564
2565     test_text = "typedef long int ptrdiff_t; /* long int */\n"
2566                 "typedef uint_t size_t; /* uint_t */\n"
2567                 "typedef ushort_t wchar_t; /* ushort_t */";
2568 };
2569
2570
2571 /*
2572  *  Fix return value of mem{ccpy,chr,cpy,set} and str{len,spn,cspn}
2573  *  in string.h on sysV68
2574  *  Correct the return type for strlen in string.h on Lynx.
2575  *  Correct the argument type for ffs in string.h on Alpha OSF/1 V2.0.
2576  *  Add missing const for strdup on OSF/1 V3.0.
2577  *  On sysV88 layout is slightly different.
2578  */
2579 fix = {
2580     hackname = sysv68_string;
2581     files    = testing.h;
2582     files    = string.h;
2583
2584     sed = "s/extern[ \t]*int[ \t]*strlen();/extern unsigned int strlen();/";
2585     sed = "s/extern[ \t]*int[ \t]*ffs[ \t]*(long);/extern int ffs(int);/";
2586     sed = "s/strdup(char \\*s1);/strdup(const char *s1);/";
2587
2588     sed = "/^extern char$/N";
2589     sed = "s/^extern char\\(\\n\t\\*memccpy(),\\)$/extern void\\1/";
2590
2591     sed = "/^extern int$/N";
2592     sed = "s/^extern int\\(\\n\tstrlen(),\\)/extern size_t\\1/";
2593
2594     sed = "/^\tstrncmp(),$/N";
2595     sed = 's/^\(' "\t" 'strncmp()\),\n\(' "\t" 'strlen(),\)$/'
2596             '\1;' "\\\nextern unsigned int\\\n\\2/";
2597
2598     test_text =
2599     "extern int strlen();\n"
2600
2601     "extern int ffs(long);\n"
2602
2603     "extern char\n"
2604     "\t*memccpy(),\n"
2605     "\tmemcpy();\n"
2606
2607     "extern int\n"
2608     "\tstrcmp(),\n"
2609     "\tstrncmp(),\n"
2610     "\tstrlen(),\n"
2611     "\tstrspn();\n"
2612
2613     "extern int\n"
2614     "\tstrlen(), strspn();";
2615 };
2616
2617
2618 /*
2619  *  Fix return type of calloc, malloc, realloc, bsearch and exit
2620  */
2621 fix = {
2622     hackname = sysz_stdlib_for_sun;
2623     files    = stdlib.h;
2624
2625     select    = "char[ \t]*\\*[ \t]*(calloc|malloc|realloc|bsearch)[ \t]*\\(";
2626     c_fix     = format;
2627     c_fix_arg = "void *\t%1(";
2628
2629     test_text =
2630     "extern char*\tcalloc(size_t);\n"
2631     "extern char*\tmalloc(size_t);\n"
2632     "extern char*\trealloc(void*,size_t);\n"
2633     "extern char*\tbsearch(void*,size_t,size_t);\n";
2634 };
2635
2636
2637 /*
2638  *  if the #if says _cplusplus, not the double underscore __cplusplus
2639  *  that it should be
2640  */
2641 fix = {
2642     hackname = tinfo_cplusplus;
2643     files    = tinfo.h;
2644     select   = "[ \t]_cplusplus";
2645
2646     c_fix     = format;
2647     c_fix_arg = " __cplusplus";
2648     test_text = "#ifdef _cplusplus\nint bogus;\n#endif";
2649 };
2650
2651
2652 /*
2653  *  parameter to atof not const on DECstation Ultrix V4.0 and NEWS-OS 4.2R.
2654  */
2655 fix = {
2656     hackname = ultrix_atof_param;
2657     files    = math.h;
2658     select   = "atof\\([ \t]*char";
2659
2660     c_fix     = format;
2661     c_fix_arg = "atof(const char";
2662
2663     test_text = "extern double atof( char *__nptr);\n";
2664 };
2665
2666
2667 /*
2668  *  parameters not const on DECstation Ultrix V4.0 and OSF/1.
2669  */
2670 fix = {
2671     hackname  = ultrix_const;
2672     files     = stdio.h;
2673     select    = 'perror\( char \*';
2674
2675     c_fix     = format;
2676     c_fix_arg = "%1 const %3 *__";
2677     c_fix_arg = "([ \t*](perror|fputs|fwrite|scanf|fscanf)\\(.*)"
2678                 "[ \t]+(char|void) \\*__";
2679
2680     test_text =
2681     "extern void perror( char *__s );\n"
2682     "extern int fputs( char *__s, FILE *);\n"
2683     "extern size_t fwrite( void *__ptr, size_t, size_t, FILE *);\n"
2684     "extern int fscanf( FILE *__stream, char *__format, ...);\n"
2685     "extern int scanf( char *__format, ...);\n";
2686 };
2687
2688
2689 /*
2690  *  parameters not const on DECstation Ultrix V4.0 and OSF/1.
2691  */
2692 fix = {
2693     hackname  = ultrix_const2;
2694     files     = stdio.h;
2695
2696     select    = '\*fopen\( char \*';
2697     c_fix     = format;
2698     c_fix_arg = "%1( const char *%3, const char *";
2699     c_fix_arg = "([ \t*](fopen|sscanf|popen|tempnam))\\("
2700                "[ \t]*char[ \t]*\\*([^,]*),"
2701                "[ \t]*char[ \t]*\\*[ \t]*";
2702
2703     test_text =
2704     "extern FILE *fopen( char *__filename, char *__type );\n"
2705     "extern int sscanf( char *__s, char *__format, ...);\n"
2706     "extern FILE *popen(char *, char *);\n"
2707     "extern char *tempnam(char*,char*);\n";
2708 };
2709
2710
2711 /*
2712  * Ultrix V4.[35] puts the declaration of uname before the definition
2713  * of struct utsname, so the prototype (added by fixproto) causes havoc.
2714  */
2715 fix = {
2716     hackname = ultrix_fix_fixproto;
2717     files    = sys/utsname.h;
2718     select   = ULTRIX;
2719
2720     c_fix     = format;
2721     c_fix_arg = "struct utsname;\n%0";
2722     c_fix_arg = "^[ \t]*extern[ \t]*int[ \t]*uname\\(\\);";
2723
2724     test_text =
2725     "/* ULTRIX's uname */\nextern\tint\tuname();";
2726 };
2727
2728
2729 /*
2730  *  Check for bad #ifdef line (in Ultrix 4.1)
2731  */
2732 fix = {
2733     hackname = ultrix_ifdef;
2734     select   = "^#ifdef KERNEL[ \t]+&&";
2735     files    = sys/file.h;
2736
2737     c_fix     = format;
2738     c_fix_arg = "#if defined(KERNEL) &&";
2739
2740     test_text =
2741     "#ifdef KERNEL\t&& defined( mumbojumbo )\nint oops;\n#endif";
2742 };
2743
2744
2745 /*
2746  * Strip "|| CC$gfloat" from Ultrix math headers.
2747  */
2748 fix = {
2749     hackname  = ultrix_math_ifdef;
2750     files     = sys/limits.h;
2751     files     = float.h;
2752     files     = math.h;
2753     select    = "^(#if.*)\\|\\|[ \t]+CC\\$[a-z]+";
2754     c_fix     = format;
2755     c_fix_arg = "%1";
2756
2757     test_text = '#if     defined(__GFLOAT) || CC\$gfloat';
2758 };
2759
2760
2761 /*
2762  *  Avoid nested comments on Ultrix 4.3.
2763  */
2764 fix = {
2765     hackname = ultrix_nested_ioctl;
2766     files    = sys/ioctl.h;
2767     select   = "^/\\* #define SIOCSCREEN";
2768     sed      = "/^\\/\\* #define SIOCSCREEN/s@/\\* screend@*//* screend@";
2769     test_text =
2770     "/* #define SIOCSCREENON _IOWR('i', 49, int)"
2771     "/* screend, net/gw_screen.h */\n";
2772 };
2773
2774
2775 fix = {
2776     hackname = ultrix_nested_svc;
2777     files    = rpc/svc.h;
2778     select   = "^ \\*[ \t]*int protocol;  */\\*";
2779     sed      = "s@^\\( \\*\tint protocol;  \\)/\\*@\\1*/ /*@";
2780     test_text =
2781     " *\tint protocol;  /* like TCP or UDP\n";
2782 };
2783
2784
2785 /*
2786  *  Add missing prototype for lstat and define for S_ISLNK
2787  *  in Ultrix V4.3 sys/stat.h.
2788  */
2789 fix = {
2790     hackname = ultrix_stat;
2791     files  = sys/stat.h;
2792     select = "@\\(#\\)stat\\.h.*6\\.1.*\\(ULTRIX\\)";
2793     sed    = "/^#define[ \t]S_IFPORT[ \t]*S_IFIFO$/a\\\n"
2794                 "\\\n"
2795                 "/* macro to test for symbolic link */\\\n"
2796                 "#define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)\\\n"
2797                 "\n";
2798     sed    = "/^[ \t]*fstat(),$/a\\\n"
2799                 "\tlstat(),\n";
2800     test_text =
2801     "@(#)stat.h      6.1     (ULTRIX)\n"
2802     "#define S_IFPORT S_IFIFO\n"
2803     "\tfstat(),\n";
2804 };
2805
2806
2807 /*
2808  *  Check for superfluous `static' (in Ultrix 4.2)
2809  *  On Ultrix 4.3, includes of other files (r3_cpu.h,r4_cpu.h) is broken.
2810  */
2811 fix = {
2812     hackname = ultrix_static;
2813     files  = machine/cpu.h;
2814     select = '#include "r[34]_cpu';
2815     sed    = "s/^static struct tlb_pid_state/struct tlb_pid_state/";
2816     sed    = 's/^#include "r3_cpu\.h"$/#include <machine\/r3_cpu\.h>/';
2817     sed    = 's/^#include "r4_cpu\.h"$/#include <machine\/r4_cpu\.h>/';
2818     test_text =
2819     "static struct tlb_pid_state {\n"
2820     "#include \"r3_cpu.h\"\n";
2821 };
2822
2823
2824 /*
2825  *  Add once-only latch to Ultrix V4.3 strings.h.
2826  */
2827 fix = {
2828     hackname = ultrix_strings;
2829     files  = strings.h;
2830     select = "@\\(#\\)strings\\.h.*6\\.1.*\\(ULTRIX\\)";
2831     c_fix  = wrap;
2832     test_text =
2833     "@(#)strings.h   6.1     (ULTRIX)\n";
2834 };
2835
2836
2837 /*
2838  *  Fix multiple defines for NULL.  Sometimes, we stumble into \r\n
2839  *  terminated lines, so accommodate these.  Test both ways.
2840  */
2841 fix = {
2842     hackname  = undefine_null;
2843     select    = "^#[ \t]*define[ \t]+NULL[ \t]";
2844     bypass    = "#[ \t]*(ifn|un)def[ \t]+NULL($|[ \t\r])";
2845
2846     c_fix     = format;
2847     c_fix_arg = "#ifndef NULL%2\n#define NULL%1%2\n#endif%2\n";
2848     c_fix_arg = "^#[ \t]*define[ \t]*[ \t]NULL([^\r\n]+)([\r]*)\n";
2849
2850     test_text = "#define NULL 0UL\r\n#define NULL\t((void*)0)\n";
2851 };
2852
2853
2854 /*
2855  * If arpa/inet.h prototypes are incompatible with the ones we just
2856  * installed in <sys/byteorder.h>, just remove the protos.
2857  * Because of this close association, this patch must be applied only
2858  * on those systems where the replacement byteorder header is installed.
2859  */
2860 fix = {
2861     hackname = uw7_byteorder_fix;
2862     files    = arpa/inet.h;
2863     select   = "in_port_t";
2864     test     = "-f $DESTDIR/sys/byteorder.h";
2865 #ifndef SVR5
2866         mach = "*-*-sysv4*";
2867         mach = "i?86-*-sysv5*";
2868         mach = "i?86-*-udk*";
2869         mach = "i?86-*-solaris2.[0-4]";
2870         mach = "powerpcle-*-solaris2.[0-4]";
2871         mach = "sparc-*-solaris2.[0-4]";
2872 #endif /* SVR5 */
2873
2874     c_fix     = format;
2875     c_fix_arg = "";
2876     c_fix_arg = "^extern.*(htons|ntohs).*\\(in_port_t\\).*\n";
2877
2878     test_text = "extern htons(in_port_t);"
2879                 "`[ ! -d $DESTDIR/sys ] && mkdir $DESTDIR/sys\n"
2880                 "echo '/* DUMMY */' >> sys/byteorder.h\n"
2881                 "touch $DESTDIR/sys/byteorder.h`";
2882 };
2883
2884
2885 /*
2886  *  Fix definitions of macros used by va-i960.h in VxWorks header file.
2887  */
2888 fix = {
2889     hackname  = va_i960_macro;
2890     files     = arch/i960/archI960.h;
2891     select    = "__(vsiz|vali|vpad|alignof__)";
2892
2893     c_fix     = format;
2894     c_fix_arg = "__vx%1";
2895
2896     test_text =
2897     "extern int __vsiz vsiz;\n"
2898     "extern int __vali vali;\n"
2899     "extern int __vpad vpad;\n"
2900     "#define __alignof__(x) ...";
2901 };
2902
2903
2904 /*
2905  *  AIX headers define NULL to be cast to a void pointer,
2906  *  which is illegal in ANSI C++.
2907  */
2908 fix = {
2909     hackname  = void_null;
2910     files     = curses.h;
2911     files     = dbm.h;
2912     files     = locale.h;
2913     files     = stdio.h;
2914     files     = stdlib.h;
2915     files     = string.h;
2916     files     = time.h;
2917     files     = unistd.h;
2918     files     = sys/dir.h;
2919     files     = sys/param.h;
2920     files     = sys/types.h;
2921     select    = "^#[ \t]*define[ \t]+NULL[ \t]+\\(\\(void[ \t]*\\*\\)0\\)";
2922     c_fix     = format;
2923     c_fix_arg = "#define NULL 0";
2924     test_text = "# define\tNULL \t((void *)0)  /* typed NULL */";
2925 };
2926
2927
2928 /*
2929  *  Make VxWorks header which is almost gcc ready fully gcc ready.
2930  */
2931 fix = {
2932     hackname = vxworks_gcc_problem;
2933     files    = types/vxTypesBase.h;
2934     select   = "__GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__";
2935
2936     sed = "s/#ifdef __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__/"
2937           "#if 1/";
2938
2939     sed = "/[ \t]size_t/i\\\n"
2940         "#ifndef _GCC_SIZE_T\\\n"
2941         "#define _GCC_SIZE_T\n";
2942
2943     sed = "/[ \t]size_t/a\\\n"
2944         "#endif\n";
2945
2946     sed = "/[ \t]ptrdiff_t/i\\\n"
2947         "#ifndef _GCC_PTRDIFF_T\\\n"
2948         "#define _GCC_PTRDIFF_T\n";
2949
2950     sed = "/[ \t]ptrdiff_t/a\\\n"
2951         "#endif\n";
2952
2953     sed = "/[ \t]wchar_t/i\\\n"
2954         "#ifndef _GCC_WCHAR_T\\\n"
2955         "#define _GCC_WCHAR_T\n";
2956
2957     sed = "/[ \t]wchar_t/a\\\n"
2958         "#endif\n";
2959
2960     test_text =
2961     "#ifdef __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__\n"
2962     "typedef unsigned int size_t;\n"
2963     "typedef long ptrdiff_t;\n"
2964     "typedef unsigned short wchar_t;\n"
2965     "#endif /* __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__ */\n";
2966 };
2967
2968
2969 /*
2970  *  Fix VxWorks <time.h> to not require including <vxTypes.h>.
2971  */
2972 fix = {
2973     hackname  = vxworks_needs_vxtypes;
2974     files     = time.h;
2975     select    = "uint_t([ \t]+_clocks_per_sec)";
2976     c_fix     = format;
2977     c_fix_arg = "unsigned int%1";
2978     test_text = "uint_t\t_clocks_per_sec;";
2979 };
2980
2981
2982 /*
2983  *  Fix VxWorks <sys/stat.h> to not require including <vxWorks.h>.
2984  */
2985 fix = {
2986     hackname = vxworks_needs_vxworks;
2987     files    = sys/stat.h;
2988     test     = " -r types/vxTypesOld.h";
2989     test     = " -n \"`egrep '#include' $file`\"";
2990     test     = " -n \"`egrep ULONG $file`\"";
2991     select   = "#[ \t]define[ \t]+__INCstath";
2992
2993     sed = "/#[ \t]define[ \t][ \t]*__INCstath/a\\\n"
2994           "#include <types/vxTypesOld.h>\n";
2995
2996     test_text = "`touch types/vxTypesOld.h`"
2997     "#include </dev/null> /* ULONG */\n"
2998     "# define\t__INCstath <sys/stat.h>";
2999 };
3000
3001
3002 /*
3003  *  Another bad dependency in VxWorks 5.2 <time.h>.
3004  */
3005 fix = {
3006     hackname = vxworks_time;
3007     files    = time.h;
3008     test     = " -r vxWorks.h";
3009
3010     select    = "#[ \t]*define[ \t]+VOIDFUNCPTR[ \t].*";
3011     c_fix     = format;
3012
3013     c_fix_arg =
3014     "#ifndef __gcc_VOIDFUNCPTR_defined\n"
3015     "#ifdef __cplusplus\n"
3016     "typedef void (*__gcc_VOIDFUNCPTR) (...);\n"
3017     "#else\n"
3018     "typedef void (*__gcc_VOIDFUNCPTR) ();\n"
3019     "#endif\n"
3020     "#define __gcc_VOIDFUNCPTR_defined\n"
3021     "#endif\n"
3022     "#define VOIDFUNCPTR __gcc_VOIDFUNCPTR";
3023
3024     test_text = "`touch vxWorks.h`"
3025                 "#define VOIDFUNCPTR (void(*)())";
3026 };
3027
3028
3029 /*
3030  *  There are several name conflicts with C++ reserved words in X11 header
3031  *  files.  These are fixed in some versions, so don't do the fixes if
3032  *  we find __cplusplus in the file.  These were found on the RS/6000.
3033  */
3034 fix = {
3035     hackname  = x11_class;
3036     files     = X11/ShellP.h;
3037     bypass    = __cplusplus;
3038     select    = "^([ \t]*char \\*)class;(.*)";
3039     c_fix     = format;
3040     c_fix_arg = "#ifdef __cplusplus\n%1c_class;%2\n"
3041                 "#else\n%1class;%2\n#endif";
3042     test_text =
3043     "struct {\n"
3044     "   char *class;\n"
3045     "} mumble;\n";
3046 };
3047
3048
3049 /*
3050  *  class in Xm/BaseClassI.h
3051  */
3052 fix = {
3053     hackname = x11_class_usage;
3054     files    = Xm/BaseClassI.h;
3055     bypass   = "__cplusplus";
3056
3057     select    = " class\\)";
3058     c_fix     = format;
3059     c_fix_arg = " c_class)";
3060
3061     test_text = "extern mumble (int  class);\n";
3062 };
3063
3064
3065 /*
3066  *  new in Xm/Traversal.h
3067  */
3068 fix = {
3069     hackname = x11_new;
3070     files    = Xm/Traversal.h;
3071     bypass   = __cplusplus;
3072
3073     sed      = "/Widget\told, new;/i\\\n"
3074                    "#ifdef __cplusplus\\\n"
3075                    "\tWidget\told, c_new;\\\n"
3076                    "#else\n";
3077
3078     sed      = "/Widget\told, new;/a\\\n"
3079                    "#endif\n";
3080
3081     sed      = "s/Widget new,/Widget c_new,/g";
3082     test_text =
3083     "struct wedge {\n"
3084     "   Widget\told, new; /* fix the new */\n"
3085     "};\nextern Wedged( Widget new, Widget old );";
3086 };
3087
3088
3089 /*
3090  *  Incorrect sprintf declaration in X11/Xmu.h
3091  */
3092 fix = {
3093     hackname = x11_sprintf;
3094     files    = X11/Xmu.h;
3095     files    = X11/Xmu/Xmu.h;
3096     select   = "^extern char \\*\tsprintf\\(\\);$";
3097
3098     c_fix     = format;
3099     c_fix_arg = "#ifndef __STDC__\n%0\n#endif /* !defined __STDC__ */";
3100
3101     test_text = "extern char *\tsprintf();";
3102 };
3103
3104 /*EOF*/