OSDN Git Service

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