OSDN Git Service

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