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