| /* -*- buffer-read-only: t -*- vi: set ro: |
| * |
| * DO NOT EDIT THIS FILE (fixincl.x) |
| * |
| * It has been AutoGen-ed Thursday August 12, 2004 at 05:42:28 PM MDT |
| * From the definitions inclhack.def |
| * and the template file fixincl |
| */ |
| /* DO NOT CVS-MERGE THIS FILE, EITHER Thu Aug 12 17:42:28 MDT 2004 |
| * |
| * You must regenerate it. Use the ./genfixes script. |
| * |
| * |
| * This is part of the fixincl program used to install modified versions of |
| * certain ANSI-incompatible system header files which are fixed to work |
| * correctly with ANSI C and placed in a directory that GNU C will search. |
| * |
| * This file contains 177 fixup descriptions. |
| * |
| * See README for more information. |
| * |
| * inclhack copyright (c) 1998, 1999, 2000, 2001 |
| * The Free Software Foundation, Inc. |
| * |
| * inclhack is free software. |
| * |
| * You may redistribute it and/or modify it under the terms of the |
| * GNU General Public License, as published by the Free Software |
| * Foundation; either version 2, or (at your option) any later version. |
| * |
| * inclhack is distributed in the hope that it will be useful, |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
| * See the GNU General Public License for more details. |
| * |
| * You should have received a copy of the GNU General Public License |
| * along with inclhack. See the file "COPYING". If not, |
| * write to: The Free Software Foundation, Inc., |
| * 59 Temple Place - Suite 330, |
| * Boston, MA 02111-1307, USA. |
| */ |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Aab_Fd_Zero_Asm_Posix_Types_H fix |
| */ |
| tSCC zAab_Fd_Zero_Asm_Posix_Types_HName[] = |
| "AAB_fd_zero_asm_posix_types_h"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zAab_Fd_Zero_Asm_Posix_Types_HList[] = |
| "|asm/posix_types.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| tSCC* apzAab_Fd_Zero_Asm_Posix_Types_HMachs[] = { |
| "i[34567]86-*-linux*", |
| (const char*)NULL }; |
| |
| /* |
| * content bypass pattern - skip fix if pattern found |
| */ |
| tSCC zAab_Fd_Zero_Asm_Posix_Types_HBypass0[] = |
| "} while"; |
| |
| #define AAB_FD_ZERO_ASM_POSIX_TYPES_H_TEST_CT 1 |
| static tTestDesc aAab_Fd_Zero_Asm_Posix_Types_HTests[] = { |
| { TT_NEGREP, zAab_Fd_Zero_Asm_Posix_Types_HBypass0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Aab_Fd_Zero_Asm_Posix_Types_H |
| */ |
| static const char* apzAab_Fd_Zero_Asm_Posix_Types_HPatch[] = { |
| "/* This file fixes a bug in the __FD_ZERO macro\n\ |
| for older versions of the Linux kernel. */\n\ |
| #ifndef _POSIX_TYPES_H_WRAPPER\n\ |
| #include <features.h>\n\ |
| #include_next <asm/posix_types.h>\n\n\ |
| #if defined(__FD_ZERO) && !defined(__GLIBC__)\n\ |
| #undef __FD_ZERO\n\ |
| #define __FD_ZERO(fdsetp) \\\n\ |
| do { \\\n\ |
| int __d0, __d1; \\\n\ |
| __asm__ __volatile__(\"cld ; rep ; stosl\" \\\n\ |
| : \"=&c\" (__d0), \"=&D\" (__d1) \\\n\ |
| : \"a\" (0), \"0\" (__FDSET_LONGS), \\\n\ |
| \"1\" ((__kernel_fd_set *) (fdsetp)) :\"memory\"); \\\n\ |
| } while (0)\n\ |
| #endif\n\n\ |
| #define _POSIX_TYPES_H_WRAPPER\n\ |
| #endif /* _POSIX_TYPES_H_WRAPPER */", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Aab_Fd_Zero_Gnu_Types_H fix |
| */ |
| tSCC zAab_Fd_Zero_Gnu_Types_HName[] = |
| "AAB_fd_zero_gnu_types_h"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zAab_Fd_Zero_Gnu_Types_HList[] = |
| "|gnu/types.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| tSCC* apzAab_Fd_Zero_Gnu_Types_HMachs[] = { |
| "i[34567]86-*-linux*", |
| (const char*)NULL }; |
| #define AAB_FD_ZERO_GNU_TYPES_H_TEST_CT 0 |
| #define aAab_Fd_Zero_Gnu_Types_HTests (tTestDesc*)NULL |
| |
| /* |
| * Fix Command Arguments for Aab_Fd_Zero_Gnu_Types_H |
| */ |
| static const char* apzAab_Fd_Zero_Gnu_Types_HPatch[] = { |
| "/* This file fixes a bug in the __FD_ZERO macro present in glibc 1.x. */\n\ |
| #ifndef _TYPES_H_WRAPPER\n\ |
| #include <features.h>\n\ |
| #include_next <gnu/types.h>\n\n\ |
| #if defined(__FD_ZERO) && !defined(__GLIBC__)\n\ |
| #undef __FD_ZERO\n\ |
| # define __FD_ZERO(fdsetp) \\\\\n\ |
| do { \\\\\n\ |
| int __d0, __d1; \\\\\n\ |
| __asm__ __volatile__(\"cld ; rep ; stosl\" \\\\\n\ |
| \t: \"=&c\" (__d0), \"=&D\" (__d1) \\\\\n\ |
| \t: \"a\" (0), \"0\" (__FDSET_LONGS), \\\\\n\ |
| \"1\" ((__fd_set *) (fdsetp)) :\"memory\"); \\\\\n\ |
| } while (0)\n\ |
| #endif\n\n\ |
| #define _TYPES_H_WRAPPER\n\ |
| #endif /* _TYPES_H_WRAPPER */", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Aab_Fd_Zero_Selectbits_H fix |
| */ |
| tSCC zAab_Fd_Zero_Selectbits_HName[] = |
| "AAB_fd_zero_selectbits_h"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zAab_Fd_Zero_Selectbits_HList[] = |
| "|selectbits.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| tSCC* apzAab_Fd_Zero_Selectbits_HMachs[] = { |
| "i[34567]86-*-linux*", |
| (const char*)NULL }; |
| #define AAB_FD_ZERO_SELECTBITS_H_TEST_CT 0 |
| #define aAab_Fd_Zero_Selectbits_HTests (tTestDesc*)NULL |
| |
| /* |
| * Fix Command Arguments for Aab_Fd_Zero_Selectbits_H |
| */ |
| static const char* apzAab_Fd_Zero_Selectbits_HPatch[] = { |
| "/* This file fixes a bug in the __FD_ZERO macro present in glibc 2.0.x. */\n\ |
| #ifndef _SELECTBITS_H_WRAPPER\n\ |
| #include <features.h>\n\ |
| #include_next <selectbits.h>\n\n\ |
| #if defined(__FD_ZERO) && defined(__GLIBC__) \\\\\n\ |
| && defined(__GLIBC_MINOR__) && __GLIBC__ == 2 \\\\\n\ |
| && __GLIBC_MINOR__ == 0\n\ |
| #undef __FD_ZERO\n\ |
| #define __FD_ZERO(fdsetp) \\\\\n\ |
| do { \\\\\n\ |
| int __d0, __d1; \\\\\n\ |
| __asm__ __volatile__ (\"cld; rep; stosl\" \\\\\n\ |
| : \"=&c\" (__d0), \"=&D\" (__d1) \\\\\n\ |
| : \"a\" (0), \"0\" (sizeof (__fd_set) \\\\\n\ |
| / sizeof (__fd_mask)), \\\\\n\ |
| \"1\" ((__fd_mask *) (fdsetp)) \\\\\n\ |
| : \"memory\"); \\\\\n\ |
| } while (0)\n\ |
| #endif\n\n\ |
| #define _SELECTBITS_H_WRAPPER\n\ |
| #endif /* _SELECTBITS_H_WRAPPER */", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Aab_Solaris_Sys_Varargs_H fix |
| */ |
| tSCC zAab_Solaris_Sys_Varargs_HName[] = |
| "AAB_solaris_sys_varargs_h"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zAab_Solaris_Sys_Varargs_HList[] = |
| "|sys/varargs.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| tSCC* apzAab_Solaris_Sys_Varargs_HMachs[] = { |
| "*-*-solaris*", |
| (const char*)NULL }; |
| #define AAB_SOLARIS_SYS_VARARGS_H_TEST_CT 0 |
| #define aAab_Solaris_Sys_Varargs_HTests (tTestDesc*)NULL |
| |
| /* |
| * Fix Command Arguments for Aab_Solaris_Sys_Varargs_H |
| */ |
| static const char* apzAab_Solaris_Sys_Varargs_HPatch[] = { |
| "#ifdef __STDC__\n\ |
| #include <stdarg.h>\n\ |
| #else\n\ |
| #include <varargs.h>\n\ |
| #endif", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Aab_Sun_Memcpy fix |
| */ |
| tSCC zAab_Sun_MemcpyName[] = |
| "AAB_sun_memcpy"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zAab_Sun_MemcpyList[] = |
| "|memory.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzAab_Sun_MemcpyMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zAab_Sun_MemcpySelect0[] = |
| "/\\*\t@\\(#\\)(head/memory.h\t50.1\t |memory\\.h 1\\.[2-4] 8./../.. SMI; from S5R2 1\\.2\t)\\*/"; |
| |
| #define AAB_SUN_MEMCPY_TEST_CT 1 |
| static tTestDesc aAab_Sun_MemcpyTests[] = { |
| { TT_EGREP, zAab_Sun_MemcpySelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Aab_Sun_Memcpy |
| */ |
| static const char* apzAab_Sun_MemcpyPatch[] = { |
| "/* This file was generated by fixincludes */\n\ |
| #ifndef __memory_h__\n\ |
| #define __memory_h__\n\n\ |
| #ifdef __STDC__\n\ |
| extern void *memccpy();\n\ |
| extern void *memchr();\n\ |
| extern void *memcpy();\n\ |
| extern void *memset();\n\ |
| #else\n\ |
| extern char *memccpy();\n\ |
| extern char *memchr();\n\ |
| extern char *memcpy();\n\ |
| extern char *memset();\n\ |
| #endif /* __STDC__ */\n\n\ |
| extern int memcmp();\n\n\ |
| #endif /* __memory_h__ */\n\ |
| _EndOfHeader;\n\ |
| };\n\n\n\ |
| /*\n\ |
| * Completely replace <sys/varargs.h> with a file that includes gcc's\n\ |
| * stdarg.h or varargs.h files as appropriate.\n\ |
| */\n\ |
| #ifdef SVR4\n\ |
| fix = {\n\ |
| hackname = AAB_svr4_no_varargs;\n\ |
| files = sys/varargs.h;\n\ |
| replace = \"/* This file was generated by fixincludes. */\\n\"\n\ |
| \"#ifndef _SYS_VARARGS_H\\n\"\n\ |
| \"#define _SYS_VARARGS_H\\n\\n\"\n\n\ |
| \"#ifdef __STDC__\\n\"\n\ |
| \"#include <stdarg.h>\\n\"\n\ |
| \"#else\\n\"\n\ |
| \"#include <varargs.h>\\n\"\n\ |
| \"#endif\\n\\n\"\n\n\ |
| \"#endif /* _SYS_VARARGS_H */\\n\";\n\ |
| };\n\ |
| #endif\n\n\n\ |
| /*\n\ |
| * Completely replace <sys/byteorder.h> with a file that implements gcc's\n\ |
| * optimized byteswapping. (The original probably implemented some\n\ |
| * incompatible optimized byteswapping.)\n\ |
| */\n\ |
| fix = {\n\ |
| hackname = AAB_svr4_replace_byteorder;\n\ |
| mach = \"*-*-sysv4*\";\n\ |
| mach = \"i[34567]86-*-sysv5*\";\n\ |
| mach = \"i[34567]86-*-sco3.2v5*\";\n\ |
| mach = \"i[34567]86-*-udk*\";\n\ |
| mach = \"i[34567]86-*-solaris2.[0-4]\";\n\ |
| mach = \"powerpcle-*-solaris2.[0-4]\";\n\ |
| mach = \"sparc-*-solaris2.[0-4]\";\n\ |
| mach = \"i[34567]86-sequent-ptx*\";\n\ |
| files = sys/byteorder.h;\n\ |
| replace = <<- _EndOfHeader_\n\ |
| #ifndef _SYS_BYTEORDER_H\n\ |
| #define _SYS_BYTEORDER_H\n\n\ |
| /* Functions to convert `short' and `long' quantities from host byte order\n\ |
| to (internet) network byte order (i.e. big-endian).\n\n\ |
| Written by Ron Guilmette (rfg@ncd.com).\n\n\ |
| This isn't actually used by GCC. It is installed by fixinc.svr4.\n\n\ |
| For big-endian machines these functions are essentially no-ops.\n\n\ |
| For little-endian machines, we define the functions using specialized\n\ |
| asm sequences in cases where doing so yields better code (e.g. i386). */\n\n\ |
| #if !defined (__GNUC__) && !defined (__GNUG__)\n\ |
| #error You lose! This file is only useful with GNU compilers.\n\ |
| #endif\n\n\ |
| #ifndef __BYTE_ORDER__\n\ |
| /* Byte order defines. These are as defined on UnixWare 1.1, but with\n\ |
| double underscores added at the front and back. */\n\ |
| #define __LITTLE_ENDIAN__ 1234\n\ |
| #define __BIG_ENDIAN__ 4321\n\ |
| #define __PDP_ENDIAN__ 3412\n\ |
| #endif\n\n\ |
| #ifdef __STDC__\n\ |
| static __inline__ unsigned long htonl (unsigned long);\n\ |
| static __inline__ unsigned short htons (unsigned int);\n\ |
| static __inline__ unsigned long ntohl (unsigned long);\n\ |
| static __inline__ unsigned short ntohs (unsigned int);\n\ |
| #endif /* defined (__STDC__) */\n\n\ |
| #if defined (__i386__)\n\n\ |
| #ifndef __BYTE_ORDER__\n\ |
| #define __BYTE_ORDER__ __LITTLE_ENDIAN__\n\ |
| #endif\n\n\ |
| /* Convert a host long to a network long. */\n\n\ |
| /* We must use a new-style function definition, so that this will also\n\ |
| be valid for C++. */\n\ |
| static __inline__ unsigned long\n\ |
| htonl (unsigned long __arg)\n\ |
| {\n\ |
| register unsigned long __result;\n\n\ |
| __asm__ (\"xchg%B0 %b0,%h0\n\ |
| ror%L0 $16,%0\n\ |
| xchg%B0 %b0,%h0\" : \"=q\" (__result) : \"0\" (__arg));\n\ |
| return __result;\n\ |
| }\n\n\ |
| /* Convert a host short to a network short. */\n\n\ |
| static __inline__ unsigned short\n\ |
| htons (unsigned int __arg)\n\ |
| {\n\ |
| register unsigned short __result;\n\n\ |
| __asm__ (\"xchg%B0 %b0,%h0\" : \"=q\" (__result) : \"0\" (__arg));\n\ |
| return __result;\n\ |
| }\n\n\ |
| #elif (defined (__ns32k__) || defined (__vax__) || defined (__arm__))\n\n\ |
| #ifndef __BYTE_ORDER__\n\ |
| #define __BYTE_ORDER__ __LITTLE_ENDIAN__\n\ |
| #endif\n\n\ |
| /* For other little-endian machines, using C code is just as efficient as\n\ |
| using assembly code. */\n\n\ |
| /* Convert a host long to a network long. */\n\n\ |
| static __inline__ unsigned long\n\ |
| htonl (unsigned long __arg)\n\ |
| {\n\ |
| register unsigned long __result;\n\n\ |
| __result = (__arg >> 24) & 0x000000ff;\n\ |
| __result |= (__arg >> 8) & 0x0000ff00;\n\ |
| __result |= (__arg << 8) & 0x00ff0000;\n\ |
| __result |= (__arg << 24) & 0xff000000;\n\ |
| return __result;\n\ |
| }\n\n\ |
| /* Convert a host short to a network short. */\n\n\ |
| static __inline__ unsigned short\n\ |
| htons (unsigned int __arg)\n\ |
| {\n\ |
| register unsigned short __result;\n\n\ |
| __result = (__arg << 8) & 0xff00;\n\ |
| __result |= (__arg >> 8) & 0x00ff;\n\ |
| return __result;\n\ |
| }\n\n\ |
| #else /* must be a big-endian machine */\n\n\ |
| #ifndef __BYTE_ORDER__\n\ |
| #define __BYTE_ORDER__ __BIG_ENDIAN__\n\ |
| #endif\n\n\ |
| /* Convert a host long to a network long. */\n\n\ |
| static __inline__ unsigned long\n\ |
| htonl (unsigned long __arg)\n\ |
| {\n\ |
| return __arg;\n\ |
| }\n\n\ |
| /* Convert a host short to a network short. */\n\n\ |
| static __inline__ unsigned short\n\ |
| htons (unsigned int __arg)\n\ |
| {\n\ |
| return __arg;\n\ |
| }\n\n\ |
| #endif /* big-endian */\n\n\ |
| /* Convert a network long to a host long. */\n\n\ |
| static __inline__ unsigned long\n\ |
| ntohl (unsigned long __arg)\n\ |
| {\n\ |
| return htonl (__arg);\n\ |
| }\n\n\ |
| /* Convert a network short to a host short. */\n\n\ |
| static __inline__ unsigned short\n\ |
| ntohs (unsigned int __arg)\n\ |
| {\n\ |
| return htons (__arg);\n\ |
| }\n\ |
| #endif", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Aab_Ultrix_Ansi_Compat fix |
| */ |
| tSCC zAab_Ultrix_Ansi_CompatName[] = |
| "AAB_ultrix_ansi_compat"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zAab_Ultrix_Ansi_CompatList[] = |
| "|ansi_compat.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzAab_Ultrix_Ansi_CompatMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zAab_Ultrix_Ansi_CompatSelect0[] = |
| "ULTRIX"; |
| |
| #define AAB_ULTRIX_ANSI_COMPAT_TEST_CT 1 |
| static tTestDesc aAab_Ultrix_Ansi_CompatTests[] = { |
| { TT_EGREP, zAab_Ultrix_Ansi_CompatSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Aab_Ultrix_Ansi_Compat |
| */ |
| static const char* apzAab_Ultrix_Ansi_CompatPatch[] = { |
| "/* This file intentionally left blank. */\n", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Aab_Ultrix_Limits fix |
| */ |
| tSCC zAab_Ultrix_LimitsName[] = |
| "AAB_ultrix_limits"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zAab_Ultrix_LimitsList[] = |
| "|limits.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| tSCC* apzAab_Ultrix_LimitsMachs[] = { |
| "*-*-ultrix4.3", |
| (const char*)NULL }; |
| #define AAB_ULTRIX_LIMITS_TEST_CT 0 |
| #define aAab_Ultrix_LimitsTests (tTestDesc*)NULL |
| |
| /* |
| * Fix Command Arguments for Aab_Ultrix_Limits |
| */ |
| static const char* apzAab_Ultrix_LimitsPatch[] = { |
| "#ifndef _LIMITS_INCLUDED\n\ |
| #define _LIMITS_INCLUDED\n\ |
| #include <sys/limits.h>\n\ |
| #endif /* _LIMITS_INCLUDED */", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Aab_Ultrix_Memory fix |
| */ |
| tSCC zAab_Ultrix_MemoryName[] = |
| "AAB_ultrix_memory"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zAab_Ultrix_MemoryList[] = |
| "|memory.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| tSCC* apzAab_Ultrix_MemoryMachs[] = { |
| "*-*-ultrix4.3", |
| (const char*)NULL }; |
| #define AAB_ULTRIX_MEMORY_TEST_CT 0 |
| #define aAab_Ultrix_MemoryTests (tTestDesc*)NULL |
| |
| /* |
| * Fix Command Arguments for Aab_Ultrix_Memory |
| */ |
| static const char* apzAab_Ultrix_MemoryPatch[] = { |
| "#ifndef _MEMORY_INCLUDED\n\ |
| #define _MEMORY_INCLUDED\n\ |
| #include <strings.h>\n\ |
| #endif /* _MEMORY_INCLUDED */", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Aab_Ultrix_String fix |
| */ |
| tSCC zAab_Ultrix_StringName[] = |
| "AAB_ultrix_string"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zAab_Ultrix_StringList[] = |
| "|string.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| tSCC* apzAab_Ultrix_StringMachs[] = { |
| "*-*-ultrix4.3", |
| (const char*)NULL }; |
| #define AAB_ULTRIX_STRING_TEST_CT 0 |
| #define aAab_Ultrix_StringTests (tTestDesc*)NULL |
| |
| /* |
| * Fix Command Arguments for Aab_Ultrix_String |
| */ |
| static const char* apzAab_Ultrix_StringPatch[] = { |
| "#ifndef _STRING_INCLUDED\n\ |
| #define _STRING_INCLUDED\n\ |
| #include <strings.h>\n\ |
| #endif /* _STRING_INCLUDED */", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Aix_Pthread fix |
| */ |
| tSCC zAix_PthreadName[] = |
| "aix_pthread"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zAix_PthreadList[] = |
| "|pthread.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzAix_PthreadMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zAix_PthreadSelect0[] = |
| "(#define [A-Za-z_0-9]+)(\\\\\n\ |
| [^A-Za-z_0-9 \t\n\ |
| (])"; |
| |
| #define AIX_PTHREAD_TEST_CT 1 |
| static tTestDesc aAix_PthreadTests[] = { |
| { TT_EGREP, zAix_PthreadSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Aix_Pthread |
| */ |
| static const char* apzAix_PthreadPatch[] = { |
| "format", |
| "%1 %2", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Aix_Sysmachine fix |
| */ |
| tSCC zAix_SysmachineName[] = |
| "aix_sysmachine"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zAix_SysmachineList[] = |
| "|sys/machine.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzAix_SysmachineMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zAix_SysmachineSelect0[] = |
| "\\\\ +\n"; |
| |
| #define AIX_SYSMACHINE_TEST_CT 1 |
| static tTestDesc aAix_SysmachineTests[] = { |
| { TT_EGREP, zAix_SysmachineSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Aix_Sysmachine |
| */ |
| static const char* apzAix_SysmachinePatch[] = { |
| "format", |
| "\\\n", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Aix_Syswait fix |
| */ |
| tSCC zAix_SyswaitName[] = |
| "aix_syswait"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zAix_SyswaitList[] = |
| "|sys/wait.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzAix_SyswaitMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zAix_SyswaitSelect0[] = |
| "^extern pid_t wait3\\(\\);\n"; |
| tSCC zAix_SyswaitSelect1[] = |
| "bos325,"; |
| |
| #define AIX_SYSWAIT_TEST_CT 2 |
| static tTestDesc aAix_SyswaitTests[] = { |
| { TT_EGREP, zAix_SyswaitSelect0, (regex_t*)NULL }, |
| { TT_EGREP, zAix_SyswaitSelect1, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Aix_Syswait |
| */ |
| static const char* apzAix_SyswaitPatch[] = { |
| "format", |
| "struct rusage;\n\ |
| %0", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Aix_Syswait_2 fix |
| */ |
| tSCC zAix_Syswait_2Name[] = |
| "aix_syswait_2"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zAix_Syswait_2List[] = |
| "|sys/wait.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzAix_Syswait_2Machs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zAix_Syswait_2Select0[] = |
| "\\? (\\(\\(\\(\\(unsigned[^)]*\\)[^)]*\\) >> [^)]*\\) \\& 0xff\\) : -1)"; |
| |
| #define AIX_SYSWAIT_2_TEST_CT 1 |
| static tTestDesc aAix_Syswait_2Tests[] = { |
| { TT_EGREP, zAix_Syswait_2Select0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Aix_Syswait_2 |
| */ |
| static const char* apzAix_Syswait_2Patch[] = { |
| "format", |
| "? (int)%1", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Aix_Volatile fix |
| */ |
| tSCC zAix_VolatileName[] = |
| "aix_volatile"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zAix_VolatileList[] = |
| "|sys/signal.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzAix_VolatileMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zAix_VolatileSelect0[] = |
| "typedef volatile int sig_atomic_t"; |
| |
| #define AIX_VOLATILE_TEST_CT 1 |
| static tTestDesc aAix_VolatileTests[] = { |
| { TT_EGREP, zAix_VolatileSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Aix_Volatile |
| */ |
| static const char* apzAix_VolatilePatch[] = { |
| "format", |
| "typedef int sig_atomic_t", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Alpha___Assert fix |
| */ |
| tSCC zAlpha___AssertName[] = |
| "alpha___assert"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zAlpha___AssertList[] = |
| "|assert.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzAlpha___AssertMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zAlpha___AssertSelect0[] = |
| "__assert\\(char \\*, char \\*, int\\)"; |
| |
| #define ALPHA___ASSERT_TEST_CT 1 |
| static tTestDesc aAlpha___AssertTests[] = { |
| { TT_EGREP, zAlpha___AssertSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Alpha___Assert |
| */ |
| static const char* apzAlpha___AssertPatch[] = { |
| "format", |
| "__assert(const char *, const char *, int)", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Alpha___Extern_Prefix fix |
| */ |
| tSCC zAlpha___Extern_PrefixName[] = |
| "alpha___extern_prefix"; |
| |
| /* |
| * File name selection pattern |
| */ |
| #define zAlpha___Extern_PrefixList (char*)NULL |
| /* |
| * Machine/OS name selection pattern |
| */ |
| tSCC* apzAlpha___Extern_PrefixMachs[] = { |
| "alpha*-dec-osf*", |
| (const char*)NULL }; |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zAlpha___Extern_PrefixSelect0[] = |
| "(.*)(defined\\(__DECC\\)|def[ \t]*__DECC)[ \t]*\n\ |
| (#[ \t]*pragma[ \t]*extern_prefix.*)"; |
| |
| #define ALPHA___EXTERN_PREFIX_TEST_CT 1 |
| static tTestDesc aAlpha___Extern_PrefixTests[] = { |
| { TT_EGREP, zAlpha___Extern_PrefixSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Alpha___Extern_Prefix |
| */ |
| static const char* apzAlpha___Extern_PrefixPatch[] = { |
| "format", |
| "%1 (defined(__DECC) || defined(__PRAGMA_EXTERN_PREFIX))\n\ |
| %3", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Alpha___Extern_Prefix_Standards fix |
| */ |
| tSCC zAlpha___Extern_Prefix_StandardsName[] = |
| "alpha___extern_prefix_standards"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zAlpha___Extern_Prefix_StandardsList[] = |
| "|standards.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| tSCC* apzAlpha___Extern_Prefix_StandardsMachs[] = { |
| "alpha*-dec-osf*", |
| (const char*)NULL }; |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zAlpha___Extern_Prefix_StandardsSelect0[] = |
| ".*!defined\\(_LIBC_POLLUTION_H_\\) && !defined\\(__DECC\\)"; |
| |
| #define ALPHA___EXTERN_PREFIX_STANDARDS_TEST_CT 1 |
| static tTestDesc aAlpha___Extern_Prefix_StandardsTests[] = { |
| { TT_EGREP, zAlpha___Extern_Prefix_StandardsSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Alpha___Extern_Prefix_Standards |
| */ |
| static const char* apzAlpha___Extern_Prefix_StandardsPatch[] = { |
| "format", |
| "%0 && !defined(__PRAGMA_EXTERN_PREFIX)", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Alpha___Extern_Prefix_Sys_Stat fix |
| */ |
| tSCC zAlpha___Extern_Prefix_Sys_StatName[] = |
| "alpha___extern_prefix_sys_stat"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zAlpha___Extern_Prefix_Sys_StatList[] = |
| "|sys/stat.h|sys/mount.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| tSCC* apzAlpha___Extern_Prefix_Sys_StatMachs[] = { |
| "alpha*-dec-osf5*", |
| (const char*)NULL }; |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zAlpha___Extern_Prefix_Sys_StatSelect0[] = |
| "#[ \t]*if[ \t]*defined\\(__DECC\\)"; |
| |
| #define ALPHA___EXTERN_PREFIX_SYS_STAT_TEST_CT 1 |
| static tTestDesc aAlpha___Extern_Prefix_Sys_StatTests[] = { |
| { TT_EGREP, zAlpha___Extern_Prefix_Sys_StatSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Alpha___Extern_Prefix_Sys_Stat |
| */ |
| static const char* apzAlpha___Extern_Prefix_Sys_StatPatch[] = { |
| "format", |
| "%0 || defined(__PRAGMA_EXTERN_PREFIX)", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Alpha_Assert fix |
| */ |
| tSCC zAlpha_AssertName[] = |
| "alpha_assert"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zAlpha_AssertList[] = |
| "|assert.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzAlpha_AssertMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zAlpha_AssertSelect0[] = |
| "(#define assert\\(EX\\).*)\\(\\(int\\) \\(EX\\)\\)"; |
| |
| #define ALPHA_ASSERT_TEST_CT 1 |
| static tTestDesc aAlpha_AssertTests[] = { |
| { TT_EGREP, zAlpha_AssertSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Alpha_Assert |
| */ |
| static const char* apzAlpha_AssertPatch[] = { |
| "format", |
| "%1(EX)", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Alpha_Bad_Lval fix |
| */ |
| tSCC zAlpha_Bad_LvalName[] = |
| "alpha_bad_lval"; |
| |
| /* |
| * File name selection pattern |
| */ |
| #define zAlpha_Bad_LvalList (char*)NULL |
| /* |
| * Machine/OS name selection pattern |
| */ |
| tSCC* apzAlpha_Bad_LvalMachs[] = { |
| "alpha*-dec-osf*", |
| (const char*)NULL }; |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zAlpha_Bad_LvalSelect0[] = |
| "^[ \t]*#[ \t]*pragma[ \t]+extern_prefix"; |
| |
| #define ALPHA_BAD_LVAL_TEST_CT 1 |
| static tTestDesc aAlpha_Bad_LvalTests[] = { |
| { TT_EGREP, zAlpha_Bad_LvalSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Alpha_Bad_Lval |
| */ |
| static const char* apzAlpha_Bad_LvalPatch[] = { "sed", |
| "-e", "s/^[ \t]*#[ \t]*define[ \t][ \t]*\\([^(]*\\)\\(([^)]*)\\)[ \t]*\\(_.*\\)\\1\\2[ \t]*$/#define \\1 \\3\\1/", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Alpha_Getopt fix |
| */ |
| tSCC zAlpha_GetoptName[] = |
| "alpha_getopt"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zAlpha_GetoptList[] = |
| "|stdio.h|stdlib.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzAlpha_GetoptMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zAlpha_GetoptSelect0[] = |
| "getopt\\(int, char \\*\\[\\], *char \\*\\)"; |
| |
| #define ALPHA_GETOPT_TEST_CT 1 |
| static tTestDesc aAlpha_GetoptTests[] = { |
| { TT_EGREP, zAlpha_GetoptSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Alpha_Getopt |
| */ |
| static const char* apzAlpha_GetoptPatch[] = { |
| "format", |
| "getopt(int, char *const[], const char *)", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Alpha_Parens fix |
| */ |
| tSCC zAlpha_ParensName[] = |
| "alpha_parens"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zAlpha_ParensList[] = |
| "|sym.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzAlpha_ParensMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zAlpha_ParensSelect0[] = |
| "#ifndef\\(__mips64\\)"; |
| |
| #define ALPHA_PARENS_TEST_CT 1 |
| static tTestDesc aAlpha_ParensTests[] = { |
| { TT_EGREP, zAlpha_ParensSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Alpha_Parens |
| */ |
| static const char* apzAlpha_ParensPatch[] = { |
| "format", |
| "#ifndef __mips64", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Alpha_Pthread fix |
| */ |
| tSCC zAlpha_PthreadName[] = |
| "alpha_pthread"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zAlpha_PthreadList[] = |
| "|pthread.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| tSCC* apzAlpha_PthreadMachs[] = { |
| "alpha*-dec-osf*", |
| (const char*)NULL }; |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zAlpha_PthreadSelect0[] = |
| "((#[ \t]*if)([ \t]*defined[ \t]*\\(_PTHREAD_ENV_DECC\\)|def _PTHREAD_ENV_DECC)(.*))\n\ |
| (#[ \t]*define _PTHREAD_USE_PTDNAM_)"; |
| |
| #define ALPHA_PTHREAD_TEST_CT 1 |
| static tTestDesc aAlpha_PthreadTests[] = { |
| { TT_EGREP, zAlpha_PthreadSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Alpha_Pthread |
| */ |
| static const char* apzAlpha_PthreadPatch[] = { |
| "format", |
| "%2 defined (_PTHREAD_ENV_DECC)%4 || defined (__PRAGMA_EXTERN_PREFIX)\n\ |
| %5", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Alpha_Pthread_Gcc fix |
| */ |
| tSCC zAlpha_Pthread_GccName[] = |
| "alpha_pthread_gcc"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zAlpha_Pthread_GccList[] = |
| "|pthread.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| tSCC* apzAlpha_Pthread_GccMachs[] = { |
| "alpha*-dec-osf*", |
| (const char*)NULL }; |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zAlpha_Pthread_GccSelect0[] = |
| "#else\n\ |
| # error <pthread.h>: unrecognized compiler."; |
| |
| #define ALPHA_PTHREAD_GCC_TEST_CT 1 |
| static tTestDesc aAlpha_Pthread_GccTests[] = { |
| { TT_EGREP, zAlpha_Pthread_GccSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Alpha_Pthread_Gcc |
| */ |
| static const char* apzAlpha_Pthread_GccPatch[] = { |
| "format", |
| "#elif defined (__GNUC__)\n\ |
| # define _PTHREAD_ENV_GCC\n\ |
| %0", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Alpha_Sbrk fix |
| */ |
| tSCC zAlpha_SbrkName[] = |
| "alpha_sbrk"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zAlpha_SbrkList[] = |
| "|unistd.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzAlpha_SbrkMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zAlpha_SbrkSelect0[] = |
| "char[ \t]*\\*[\t ]*sbrk[ \t]*\\("; |
| |
| #define ALPHA_SBRK_TEST_CT 1 |
| static tTestDesc aAlpha_SbrkTests[] = { |
| { TT_EGREP, zAlpha_SbrkSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Alpha_Sbrk |
| */ |
| static const char* apzAlpha_SbrkPatch[] = { |
| "format", |
| "void *sbrk(", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Alpha_Wchar fix |
| */ |
| tSCC zAlpha_WcharName[] = |
| "alpha_wchar"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zAlpha_WcharList[] = |
| "|wchar.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| tSCC* apzAlpha_WcharMachs[] = { |
| "alpha*-dec-osf4*", |
| (const char*)NULL }; |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zAlpha_WcharSelect0[] = |
| "#define wcstok wcstok_r"; |
| |
| #define ALPHA_WCHAR_TEST_CT 1 |
| static tTestDesc aAlpha_WcharTests[] = { |
| { TT_EGREP, zAlpha_WcharSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Alpha_Wchar |
| */ |
| static const char* apzAlpha_WcharPatch[] = { "sed", |
| "-e", "s@#define wcstok wcstok_r@extern wchar_t *wcstok __((wchar_t *, const wchar_t *, wchar_t **)) __asm__(\"wcstok_r\");@", |
| "-e", "s@#define wcsftime __wcsftime_isoc@extern size_t wcsftime __((wchar_t *, size_t, const wchar_t *, const struct tm *)) __asm__(\"__wcsftime_isoc\");@", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Avoid_Bool_Define fix |
| */ |
| tSCC zAvoid_Bool_DefineName[] = |
| "avoid_bool_define"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zAvoid_Bool_DefineList[] = |
| "|curses.h|curses_colr/curses.h|term.h|tinfo.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzAvoid_Bool_DefineMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zAvoid_Bool_DefineSelect0[] = |
| "#[ \t]*define[ \t]+bool[ \t]"; |
| |
| /* |
| * content bypass pattern - skip fix if pattern found |
| */ |
| tSCC zAvoid_Bool_DefineBypass0[] = |
| "__cplusplus"; |
| |
| #define AVOID_BOOL_DEFINE_TEST_CT 2 |
| static tTestDesc aAvoid_Bool_DefineTests[] = { |
| { TT_NEGREP, zAvoid_Bool_DefineBypass0, (regex_t*)NULL }, |
| { TT_EGREP, zAvoid_Bool_DefineSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Avoid_Bool_Define |
| */ |
| static const char* apzAvoid_Bool_DefinePatch[] = { |
| "format", |
| "#ifndef __cplusplus\n\ |
| %0\n\ |
| #endif", |
| "^[ \t]*#[ \t]*define[ \t]+bool[ \t].*", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Avoid_Bool_Type fix |
| */ |
| tSCC zAvoid_Bool_TypeName[] = |
| "avoid_bool_type"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zAvoid_Bool_TypeList[] = |
| "|curses.h|curses_colr/curses.h|term.h|tinfo.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzAvoid_Bool_TypeMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zAvoid_Bool_TypeSelect0[] = |
| "^[ \t]*typedef[ \t].*[ \t]bool[ \t]*;"; |
| |
| /* |
| * content bypass pattern - skip fix if pattern found |
| */ |
| tSCC zAvoid_Bool_TypeBypass0[] = |
| "__cplusplus"; |
| |
| #define AVOID_BOOL_TYPE_TEST_CT 2 |
| static tTestDesc aAvoid_Bool_TypeTests[] = { |
| { TT_NEGREP, zAvoid_Bool_TypeBypass0, (regex_t*)NULL }, |
| { TT_EGREP, zAvoid_Bool_TypeSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Avoid_Bool_Type |
| */ |
| static const char* apzAvoid_Bool_TypePatch[] = { |
| "format", |
| "#ifndef __cplusplus\n\ |
| %0\n\ |
| #endif", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Avoid_Wchar_T_Type fix |
| */ |
| tSCC zAvoid_Wchar_T_TypeName[] = |
| "avoid_wchar_t_type"; |
| |
| /* |
| * File name selection pattern |
| */ |
| #define zAvoid_Wchar_T_TypeList (char*)NULL |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzAvoid_Wchar_T_TypeMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zAvoid_Wchar_T_TypeSelect0[] = |
| "^[ \t]*typedef[ \t].*[ \t]wchar_t[ \t]*;"; |
| |
| /* |
| * content bypass pattern - skip fix if pattern found |
| */ |
| tSCC zAvoid_Wchar_T_TypeBypass0[] = |
| "__cplusplus"; |
| tSCC zAvoid_Wchar_T_TypeBypass1[] = |
| "_LINUX_NLS_H"; |
| tSCC zAvoid_Wchar_T_TypeBypass2[] = |
| "XFree86: xc/lib/X11/Xlib\\.h"; |
| |
| #define AVOID_WCHAR_T_TYPE_TEST_CT 4 |
| static tTestDesc aAvoid_Wchar_T_TypeTests[] = { |
| { TT_NEGREP, zAvoid_Wchar_T_TypeBypass0, (regex_t*)NULL }, |
| { TT_NEGREP, zAvoid_Wchar_T_TypeBypass1, (regex_t*)NULL }, |
| { TT_NEGREP, zAvoid_Wchar_T_TypeBypass2, (regex_t*)NULL }, |
| { TT_EGREP, zAvoid_Wchar_T_TypeSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Avoid_Wchar_T_Type |
| */ |
| static const char* apzAvoid_Wchar_T_TypePatch[] = { |
| "format", |
| "#ifndef __cplusplus\n\ |
| %0\n\ |
| #endif", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Bad_Struct_Term fix |
| */ |
| tSCC zBad_Struct_TermName[] = |
| "bad_struct_term"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zBad_Struct_TermList[] = |
| "|curses.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzBad_Struct_TermMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zBad_Struct_TermSelect0[] = |
| "^[ \t]*typedef[ \t]+struct[ \t]+term[ \t]*;"; |
| |
| #define BAD_STRUCT_TERM_TEST_CT 1 |
| static tTestDesc aBad_Struct_TermTests[] = { |
| { TT_EGREP, zBad_Struct_TermSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Bad_Struct_Term |
| */ |
| static const char* apzBad_Struct_TermPatch[] = { |
| "format", |
| "struct term;", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Badquote fix |
| */ |
| tSCC zBadquoteName[] = |
| "badquote"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zBadquoteList[] = |
| "|sundev/vuid_event.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzBadquoteMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zBadquoteSelect0[] = |
| "doesn't"; |
| |
| #define BADQUOTE_TEST_CT 1 |
| static tTestDesc aBadquoteTests[] = { |
| { TT_EGREP, zBadquoteSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Badquote |
| */ |
| static const char* apzBadquotePatch[] = { |
| "format", |
| "does not", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Broken_Assert_Stdio fix |
| */ |
| tSCC zBroken_Assert_StdioName[] = |
| "broken_assert_stdio"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zBroken_Assert_StdioList[] = |
| "|assert.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzBroken_Assert_StdioMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zBroken_Assert_StdioSelect0[] = |
| "stderr"; |
| |
| /* |
| * content bypass pattern - skip fix if pattern found |
| */ |
| tSCC zBroken_Assert_StdioBypass0[] = |
| "include.*stdio\\.h"; |
| |
| #define BROKEN_ASSERT_STDIO_TEST_CT 2 |
| static tTestDesc aBroken_Assert_StdioTests[] = { |
| { TT_NEGREP, zBroken_Assert_StdioBypass0, (regex_t*)NULL }, |
| { TT_EGREP, zBroken_Assert_StdioSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Broken_Assert_Stdio |
| */ |
| static const char* apzBroken_Assert_StdioPatch[] = { |
| "wrap", |
| "#include <stdio.h>\n", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Broken_Assert_Stdlib fix |
| */ |
| tSCC zBroken_Assert_StdlibName[] = |
| "broken_assert_stdlib"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zBroken_Assert_StdlibList[] = |
| "|assert.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzBroken_Assert_StdlibMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zBroken_Assert_StdlibSelect0[] = |
| "exit *\\(|abort *\\("; |
| |
| /* |
| * content bypass pattern - skip fix if pattern found |
| */ |
| tSCC zBroken_Assert_StdlibBypass0[] = |
| "include.*stdlib\\.h"; |
| |
| #define BROKEN_ASSERT_STDLIB_TEST_CT 2 |
| static tTestDesc aBroken_Assert_StdlibTests[] = { |
| { TT_NEGREP, zBroken_Assert_StdlibBypass0, (regex_t*)NULL }, |
| { TT_EGREP, zBroken_Assert_StdlibSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Broken_Assert_Stdlib |
| */ |
| static const char* apzBroken_Assert_StdlibPatch[] = { |
| "wrap", |
| "#ifdef __cplusplus\n\ |
| #include <stdlib.h>\n\ |
| #endif\n", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Broken_Cabs fix |
| */ |
| tSCC zBroken_CabsName[] = |
| "broken_cabs"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zBroken_CabsList[] = |
| "|math.h|architecture/ppc/math.h|architecture/i386/math.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzBroken_CabsMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zBroken_CabsSelect0[] = |
| "^extern[ \\t]+double[ \\t]+cabs"; |
| |
| #define BROKEN_CABS_TEST_CT 1 |
| static tTestDesc aBroken_CabsTests[] = { |
| { TT_EGREP, zBroken_CabsSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Broken_Cabs |
| */ |
| static const char* apzBroken_CabsPatch[] = { |
| "format", |
| "", |
| "^extern[ \t]+double[ \t]+cabs[ \t]*\\([^\\)]*\\);", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Bsd_Stdio_Attrs_Conflict fix |
| */ |
| tSCC zBsd_Stdio_Attrs_ConflictName[] = |
| "bsd_stdio_attrs_conflict"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zBsd_Stdio_Attrs_ConflictList[] = |
| "|stdio.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| tSCC* apzBsd_Stdio_Attrs_ConflictMachs[] = { |
| "*-*-*bsd*", |
| "*-*-*darwin*", |
| (const char*)NULL }; |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zBsd_Stdio_Attrs_ConflictSelect0[] = |
| "^#define[ \t]*vfscanf[ \t]*__svfscanf[ \t]*$"; |
| |
| #define BSD_STDIO_ATTRS_CONFLICT_TEST_CT 1 |
| static tTestDesc aBsd_Stdio_Attrs_ConflictTests[] = { |
| { TT_EGREP, zBsd_Stdio_Attrs_ConflictSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Bsd_Stdio_Attrs_Conflict |
| */ |
| static const char* apzBsd_Stdio_Attrs_ConflictPatch[] = { |
| "format", |
| "#define _BSD_STRING(_BSD_X) _BSD_STRINGX(_BSD_X)\n\ |
| #define _BSD_STRINGX(_BSD_X) #_BSD_X\n\ |
| int vfscanf(FILE *, const char *, __builtin_va_list) __asm__ (_BSD_STRING(__USER_LABEL_PREFIX__) \"__svfscanf\");", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Ctrl_Quotes_Def fix |
| */ |
| tSCC zCtrl_Quotes_DefName[] = |
| "ctrl_quotes_def"; |
| |
| /* |
| * File name selection pattern |
| */ |
| #define zCtrl_Quotes_DefList (char*)NULL |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzCtrl_Quotes_DefMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zCtrl_Quotes_DefSelect0[] = |
| "define[ \t]+[A-Z0-9_]+CTRL\\([a-zA-Z][,)]"; |
| |
| #define CTRL_QUOTES_DEF_TEST_CT 1 |
| static tTestDesc aCtrl_Quotes_DefTests[] = { |
| { TT_EGREP, zCtrl_Quotes_DefSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Ctrl_Quotes_Def |
| */ |
| static const char* apzCtrl_Quotes_DefPatch[] = { |
| "char_macro_def", |
| "CTRL", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Ctrl_Quotes_Use fix |
| */ |
| tSCC zCtrl_Quotes_UseName[] = |
| "ctrl_quotes_use"; |
| |
| /* |
| * File name selection pattern |
| */ |
| #define zCtrl_Quotes_UseList (char*)NULL |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzCtrl_Quotes_UseMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zCtrl_Quotes_UseSelect0[] = |
| "define[ \t]+[A-Z0-9_]+[ \t]+[A-Z0-9_]+CTRL[ \t]*\\( *[^,']"; |
| |
| #define CTRL_QUOTES_USE_TEST_CT 1 |
| static tTestDesc aCtrl_Quotes_UseTests[] = { |
| { TT_EGREP, zCtrl_Quotes_UseSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Ctrl_Quotes_Use |
| */ |
| static const char* apzCtrl_Quotes_UsePatch[] = { |
| "char_macro_use", |
| "CTRL", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Cxx_Unready fix |
| */ |
| tSCC zCxx_UnreadyName[] = |
| "cxx_unready"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zCxx_UnreadyList[] = |
| "|sys/mman.h|rpc/types.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzCxx_UnreadyMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zCxx_UnreadySelect0[] = |
| "[^#]+malloc.*;"; |
| |
| /* |
| * content bypass pattern - skip fix if pattern found |
| */ |
| tSCC zCxx_UnreadyBypass0[] = |
| "\"C\"|__BEGIN_DECLS"; |
| |
| #define CXX_UNREADY_TEST_CT 2 |
| static tTestDesc aCxx_UnreadyTests[] = { |
| { TT_NEGREP, zCxx_UnreadyBypass0, (regex_t*)NULL }, |
| { TT_EGREP, zCxx_UnreadySelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Cxx_Unready |
| */ |
| static const char* apzCxx_UnreadyPatch[] = { |
| "wrap", |
| "#ifdef __cplusplus\n\ |
| extern \"C\" {\n\ |
| #endif\n", |
| "#ifdef __cplusplus\n\ |
| }\n\ |
| #endif\n", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Darwin_Private_Extern fix |
| */ |
| tSCC zDarwin_Private_ExternName[] = |
| "darwin_private_extern"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zDarwin_Private_ExternList[] = |
| "|mach-o/dyld.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| tSCC* apzDarwin_Private_ExternMachs[] = { |
| "*-*-darwin*", |
| (const char*)NULL }; |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zDarwin_Private_ExternSelect0[] = |
| "__private_extern__ [a-z_]+ _dyld_"; |
| |
| #define DARWIN_PRIVATE_EXTERN_TEST_CT 1 |
| static tTestDesc aDarwin_Private_ExternTests[] = { |
| { TT_EGREP, zDarwin_Private_ExternSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Darwin_Private_Extern |
| */ |
| static const char* apzDarwin_Private_ExternPatch[] = { |
| "format", |
| "extern", |
| "__private_extern__", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Dec_Intern_Asm fix |
| */ |
| tSCC zDec_Intern_AsmName[] = |
| "dec_intern_asm"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zDec_Intern_AsmList[] = |
| "|c_asm.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzDec_Intern_AsmMachs (const char**)NULL |
| #define DEC_INTERN_ASM_TEST_CT 0 |
| #define aDec_Intern_AsmTests (tTestDesc*)NULL |
| |
| /* |
| * Fix Command Arguments for Dec_Intern_Asm |
| */ |
| static const char* apzDec_Intern_AsmPatch[] = { "sed", |
| "-e", "/^[ \t]*float[ \t]*fasm/i\\\n\ |
| #ifdef __DECC\n", |
| "-e", "/^[ \t]*#[ \t]*pragma[ \t]*intrinsic([ \t]*dasm/a\\\n\ |
| #endif\n", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Djgpp_Wchar_H fix |
| */ |
| tSCC zDjgpp_Wchar_HName[] = |
| "djgpp_wchar_h"; |
| |
| /* |
| * File name selection pattern |
| */ |
| #define zDjgpp_Wchar_HList (char*)NULL |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzDjgpp_Wchar_HMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zDjgpp_Wchar_HSelect0[] = |
| "__DJ_wint_t"; |
| |
| /* |
| * content bypass pattern - skip fix if pattern found |
| */ |
| tSCC zDjgpp_Wchar_HBypass0[] = |
| "sys/djtypes.h"; |
| |
| #define DJGPP_WCHAR_H_TEST_CT 2 |
| static tTestDesc aDjgpp_Wchar_HTests[] = { |
| { TT_NEGREP, zDjgpp_Wchar_HBypass0, (regex_t*)NULL }, |
| { TT_EGREP, zDjgpp_Wchar_HSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Djgpp_Wchar_H |
| */ |
| static const char* apzDjgpp_Wchar_HPatch[] = { |
| "format", |
| "%0\n\ |
| #include <sys/djtypes.h>", |
| "#include <stddef.h>", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Ecd_Cursor fix |
| */ |
| tSCC zEcd_CursorName[] = |
| "ecd_cursor"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zEcd_CursorList[] = |
| "|sunwindow/win_lock.h|sunwindow/win_cursor.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzEcd_CursorMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zEcd_CursorSelect0[] = |
| "ecd\\.cursor"; |
| |
| #define ECD_CURSOR_TEST_CT 1 |
| static tTestDesc aEcd_CursorTests[] = { |
| { TT_EGREP, zEcd_CursorSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Ecd_Cursor |
| */ |
| static const char* apzEcd_CursorPatch[] = { |
| "format", |
| "ecd_cursor", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Exception_Structure fix |
| */ |
| tSCC zException_StructureName[] = |
| "exception_structure"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zException_StructureList[] = |
| "|math.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzException_StructureMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zException_StructureSelect0[] = |
| "matherr"; |
| |
| /* |
| * content bypass pattern - skip fix if pattern found |
| */ |
| tSCC zException_StructureBypass0[] = |
| "matherr.*(struct exception|__MATH_EXCEPTION)"; |
| |
| #define EXCEPTION_STRUCTURE_TEST_CT 2 |
| static tTestDesc aException_StructureTests[] = { |
| { TT_NEGREP, zException_StructureBypass0, (regex_t*)NULL }, |
| { TT_EGREP, zException_StructureSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Exception_Structure |
| */ |
| static const char* apzException_StructurePatch[] = { |
| "wrap", |
| "struct exception;\n", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Freebsd_Gcc3_Breakage fix |
| */ |
| tSCC zFreebsd_Gcc3_BreakageName[] = |
| "freebsd_gcc3_breakage"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zFreebsd_Gcc3_BreakageList[] = |
| "|sys/cdefs.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| tSCC* apzFreebsd_Gcc3_BreakageMachs[] = { |
| "*-*-freebsd*", |
| (const char*)NULL }; |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zFreebsd_Gcc3_BreakageSelect0[] = |
| "^#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7$"; |
| |
| /* |
| * content bypass pattern - skip fix if pattern found |
| */ |
| tSCC zFreebsd_Gcc3_BreakageBypass0[] = |
| "__GNUC__[ \\t]*([>=]=[ \\t]*[3-9]|>[ \\t]*2)"; |
| |
| #define FREEBSD_GCC3_BREAKAGE_TEST_CT 2 |
| static tTestDesc aFreebsd_Gcc3_BreakageTests[] = { |
| { TT_NEGREP, zFreebsd_Gcc3_BreakageBypass0, (regex_t*)NULL }, |
| { TT_EGREP, zFreebsd_Gcc3_BreakageSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Freebsd_Gcc3_Breakage |
| */ |
| static const char* apzFreebsd_Gcc3_BreakagePatch[] = { |
| "format", |
| "%0 || __GNUC__ >= 3", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Gnu_Types fix |
| */ |
| tSCC zGnu_TypesName[] = |
| "gnu_types"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zGnu_TypesList[] = |
| "|sys/types.h|stdlib.h|sys/stdtypes.h|stddef.h|memory.h|unistd.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzGnu_TypesMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zGnu_TypesSelect0[] = |
| "^[ \t]*typedef[ \t]+.*[ \t](ptrdiff|size|wchar)_t;"; |
| |
| /* |
| * content bypass pattern - skip fix if pattern found |
| */ |
| tSCC zGnu_TypesBypass0[] = |
| "_GCC_(PTRDIFF|SIZE|WCHAR)_T"; |
| |
| #define GNU_TYPES_TEST_CT 2 |
| static tTestDesc aGnu_TypesTests[] = { |
| { TT_NEGREP, zGnu_TypesBypass0, (regex_t*)NULL }, |
| { TT_EGREP, zGnu_TypesSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Gnu_Types |
| */ |
| static const char* apzGnu_TypesPatch[] = { |
| "gnu_type", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Hp_Inline fix |
| */ |
| tSCC zHp_InlineName[] = |
| "hp_inline"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zHp_InlineList[] = |
| "|sys/spinlock.h|machine/machparam.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzHp_InlineMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zHp_InlineSelect0[] = |
| "[ \t]*#[ \t]*include[ \t]+\"\\.\\./machine/"; |
| |
| #define HP_INLINE_TEST_CT 1 |
| static tTestDesc aHp_InlineTests[] = { |
| { TT_EGREP, zHp_InlineSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Hp_Inline |
| */ |
| static const char* apzHp_InlinePatch[] = { |
| "format", |
| "%1<machine/%2.h>", |
| "([ \t]*#[ \t]*include[ \t]+)\"\\.\\./machine/([a-z]+)\\.h\"", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Hp_Sysfile fix |
| */ |
| tSCC zHp_SysfileName[] = |
| "hp_sysfile"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zHp_SysfileList[] = |
| "|sys/file.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzHp_SysfileMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zHp_SysfileSelect0[] = |
| "HPUX_SOURCE"; |
| |
| #define HP_SYSFILE_TEST_CT 1 |
| static tTestDesc aHp_SysfileTests[] = { |
| { TT_EGREP, zHp_SysfileSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Hp_Sysfile |
| */ |
| static const char* apzHp_SysfilePatch[] = { |
| "format", |
| "(struct file *, ...)", |
| "\\(\\.\\.\\.\\)", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Hpux10_Cpp_Pow_Inline fix |
| */ |
| tSCC zHpux10_Cpp_Pow_InlineName[] = |
| "hpux10_cpp_pow_inline"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zHpux10_Cpp_Pow_InlineList[] = |
| "|fixinc-test-limits.h|math.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzHpux10_Cpp_Pow_InlineMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zHpux10_Cpp_Pow_InlineSelect0[] = |
| "^# +ifdef +__cplusplus\n\ |
| +\\}\n\ |
| +inline +double +pow\\(double +__d,int +__expon\\) +\\{\n\ |
| [ \t]+return +pow\\(__d,\\(double\\)__expon\\);\n\ |
| +\\}\n\ |
| +extern +\"C\" +\\{\n\ |
| #else\n\ |
| # +endif"; |
| |
| #define HPUX10_CPP_POW_INLINE_TEST_CT 1 |
| static tTestDesc aHpux10_Cpp_Pow_InlineTests[] = { |
| { TT_EGREP, zHpux10_Cpp_Pow_InlineSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Hpux10_Cpp_Pow_Inline |
| */ |
| static const char* apzHpux10_Cpp_Pow_InlinePatch[] = { |
| "format", |
| "", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Hpux11_Cpp_Pow_Inline fix |
| */ |
| tSCC zHpux11_Cpp_Pow_InlineName[] = |
| "hpux11_cpp_pow_inline"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zHpux11_Cpp_Pow_InlineList[] = |
| "|math.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzHpux11_Cpp_Pow_InlineMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zHpux11_Cpp_Pow_InlineSelect0[] = |
| " +inline double pow\\(double d,int expon\\) \\{\n\ |
| +return pow\\(d, \\(double\\)expon\\);\n\ |
| +\\}\n"; |
| |
| #define HPUX11_CPP_POW_INLINE_TEST_CT 1 |
| static tTestDesc aHpux11_Cpp_Pow_InlineTests[] = { |
| { TT_EGREP, zHpux11_Cpp_Pow_InlineSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Hpux11_Cpp_Pow_Inline |
| */ |
| static const char* apzHpux11_Cpp_Pow_InlinePatch[] = { |
| "format", |
| "", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Hpux10_Ctype_Declarations1 fix |
| */ |
| tSCC zHpux10_Ctype_Declarations1Name[] = |
| "hpux10_ctype_declarations1"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zHpux10_Ctype_Declarations1List[] = |
| "|ctype.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzHpux10_Ctype_Declarations1Machs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zHpux10_Ctype_Declarations1Select0[] = |
| "^#[ \t]*define _toupper\\(__c\\)[ \t]*__toupper\\(__c\\)"; |
| |
| /* |
| * content bypass pattern - skip fix if pattern found |
| */ |
| tSCC zHpux10_Ctype_Declarations1Bypass0[] = |
| "^[ \t]*extern[ \t]*int[ \t]*__tolower[ \t]*\\("; |
| |
| #define HPUX10_CTYPE_DECLARATIONS1_TEST_CT 2 |
| static tTestDesc aHpux10_Ctype_Declarations1Tests[] = { |
| { TT_NEGREP, zHpux10_Ctype_Declarations1Bypass0, (regex_t*)NULL }, |
| { TT_EGREP, zHpux10_Ctype_Declarations1Select0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Hpux10_Ctype_Declarations1 |
| */ |
| static const char* apzHpux10_Ctype_Declarations1Patch[] = { |
| "format", |
| "#ifdef _PROTOTYPES\n\ |
| extern int __tolower(int);\n\ |
| extern int __toupper(int);\n\ |
| #else /* NOT _PROTOTYPES */\n\ |
| extern int __tolower();\n\ |
| extern int __toupper();\n\ |
| #endif /* _PROTOTYPES */\n\n\ |
| %0\n", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Hpux10_Ctype_Declarations2 fix |
| */ |
| tSCC zHpux10_Ctype_Declarations2Name[] = |
| "hpux10_ctype_declarations2"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zHpux10_Ctype_Declarations2List[] = |
| "|ctype.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzHpux10_Ctype_Declarations2Machs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zHpux10_Ctype_Declarations2Select0[] = |
| "^# if defined\\(_SB_CTYPE_MACROS\\) && \\!defined\\(__lint\\)"; |
| |
| /* |
| * content bypass pattern - skip fix if pattern found |
| */ |
| tSCC zHpux10_Ctype_Declarations2Bypass0[] = |
| "^[ \t]*extern[ \t]*int[ \t]*_isalnum[ \t]*\\("; |
| |
| #define HPUX10_CTYPE_DECLARATIONS2_TEST_CT 2 |
| static tTestDesc aHpux10_Ctype_Declarations2Tests[] = { |
| { TT_NEGREP, zHpux10_Ctype_Declarations2Bypass0, (regex_t*)NULL }, |
| { TT_EGREP, zHpux10_Ctype_Declarations2Select0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Hpux10_Ctype_Declarations2 |
| */ |
| static const char* apzHpux10_Ctype_Declarations2Patch[] = { |
| "format", |
| "%0\n\n\ |
| #ifdef _PROTOTYPES\n\ |
| extern int _isalnum(int);\n\ |
| extern int _isalpha(int);\n\ |
| extern int _iscntrl(int);\n\ |
| extern int _isdigit(int);\n\ |
| extern int _isgraph(int);\n\ |
| extern int _islower(int);\n\ |
| extern int _isprint(int);\n\ |
| extern int _ispunct(int);\n\ |
| extern int _isspace(int);\n\ |
| extern int _isupper(int);\n\ |
| extern int _isxdigit(int);\n\ |
| # else /* not _PROTOTYPES */\n\ |
| extern int _isalnum();\n\ |
| extern int _isalpha();\n\ |
| extern int _iscntrl();\n\ |
| extern int _isdigit();\n\ |
| extern int _isgraph();\n\ |
| extern int _islower();\n\ |
| extern int _isprint();\n\ |
| extern int _ispunct();\n\ |
| extern int _isspace();\n\ |
| extern int _isupper();\n\ |
| extern int _isxdigit();\n\ |
| #endif /* _PROTOTYPES */\n", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Hpux10_Stdio_Declarations fix |
| */ |
| tSCC zHpux10_Stdio_DeclarationsName[] = |
| "hpux10_stdio_declarations"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zHpux10_Stdio_DeclarationsList[] = |
| "|stdio.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzHpux10_Stdio_DeclarationsMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zHpux10_Stdio_DeclarationsSelect0[] = |
| "^#[ \t]*define _iob[ \t]*__iob"; |
| |
| /* |
| * content bypass pattern - skip fix if pattern found |
| */ |
| tSCC zHpux10_Stdio_DeclarationsBypass0[] = |
| "^[ \t]*extern[ \t]*int[ \t]*vsnprintf[ \t]*\\("; |
| |
| #define HPUX10_STDIO_DECLARATIONS_TEST_CT 2 |
| static tTestDesc aHpux10_Stdio_DeclarationsTests[] = { |
| { TT_NEGREP, zHpux10_Stdio_DeclarationsBypass0, (regex_t*)NULL }, |
| { TT_EGREP, zHpux10_Stdio_DeclarationsSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Hpux10_Stdio_Declarations |
| */ |
| static const char* apzHpux10_Stdio_DeclarationsPatch[] = { |
| "format", |
| "%0\n\n\ |
| # if defined(__STDC__) || defined(__cplusplus)\n\ |
| extern int snprintf(char *, size_t, const char *, ...);\n\ |
| extern int vsnprintf(char *, size_t, const char *, __va_list);\n\ |
| # else /* not __STDC__) || __cplusplus */\n\ |
| extern int snprintf();\n\ |
| extern int vsnprintf();\n\ |
| # endif /* __STDC__) || __cplusplus */\n", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Hpux11_Abs fix |
| */ |
| tSCC zHpux11_AbsName[] = |
| "hpux11_abs"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zHpux11_AbsList[] = |
| "|stdlib.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| tSCC* apzHpux11_AbsMachs[] = { |
| "ia64-hp-hpux11*", |
| (const char*)NULL }; |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zHpux11_AbsSelect0[] = |
| "ifndef _MATH_INCLUDED"; |
| |
| #define HPUX11_ABS_TEST_CT 1 |
| static tTestDesc aHpux11_AbsTests[] = { |
| { TT_EGREP, zHpux11_AbsSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Hpux11_Abs |
| */ |
| static const char* apzHpux11_AbsPatch[] = { |
| "format", |
| "if !defined(_MATH_INCLUDED) || defined(__GNUG__)", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Hpux11_Fabsf fix |
| */ |
| tSCC zHpux11_FabsfName[] = |
| "hpux11_fabsf"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zHpux11_FabsfList[] = |
| "|math.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzHpux11_FabsfMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zHpux11_FabsfSelect0[] = |
| "^[ \t]*#[ \t]*define[ \t]+fabsf\\(.*"; |
| |
| /* |
| * content bypass pattern - skip fix if pattern found |
| */ |
| tSCC zHpux11_FabsfBypass0[] = |
| "__cplusplus"; |
| |
| #define HPUX11_FABSF_TEST_CT 2 |
| static tTestDesc aHpux11_FabsfTests[] = { |
| { TT_NEGREP, zHpux11_FabsfBypass0, (regex_t*)NULL }, |
| { TT_EGREP, zHpux11_FabsfSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Hpux11_Fabsf |
| */ |
| static const char* apzHpux11_FabsfPatch[] = { |
| "format", |
| "#ifndef __cplusplus\n\ |
| %0\n\ |
| #endif", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Hpux11_Size_T fix |
| */ |
| tSCC zHpux11_Size_TName[] = |
| "hpux11_size_t"; |
| |
| /* |
| * File name selection pattern |
| */ |
| #define zHpux11_Size_TList (char*)NULL |
| /* |
| * Machine/OS name selection pattern |
| */ |
| tSCC* apzHpux11_Size_TMachs[] = { |
| "*-hp-hpux11*", |
| (const char*)NULL }; |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zHpux11_Size_TSelect0[] = |
| "__size_t"; |
| |
| #define HPUX11_SIZE_T_TEST_CT 1 |
| static tTestDesc aHpux11_Size_TTests[] = { |
| { TT_EGREP, zHpux11_Size_TSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Hpux11_Size_T |
| */ |
| static const char* apzHpux11_Size_TPatch[] = { |
| "format", |
| "_hpux_size_t", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Hpux11_Snprintf fix |
| */ |
| tSCC zHpux11_SnprintfName[] = |
| "hpux11_snprintf"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zHpux11_SnprintfList[] = |
| "|stdio.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzHpux11_SnprintfMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zHpux11_SnprintfSelect0[] = |
| "(extern int snprintf *\\(char *\\*, *(|__|_hpux_)size_t,) *(char *\\*, *\\.\\.\\.\\);)"; |
| |
| #define HPUX11_SNPRINTF_TEST_CT 1 |
| static tTestDesc aHpux11_SnprintfTests[] = { |
| { TT_EGREP, zHpux11_SnprintfSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Hpux11_Snprintf |
| */ |
| static const char* apzHpux11_SnprintfPatch[] = { |
| "format", |
| "%1 const %3", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Hpux11_Uint32_C fix |
| */ |
| tSCC zHpux11_Uint32_CName[] = |
| "hpux11_uint32_c"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zHpux11_Uint32_CList[] = |
| "|inttypes.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzHpux11_Uint32_CMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zHpux11_Uint32_CSelect0[] = |
| "^#define UINT32_C\\(__c\\)[ \t]*__CONCAT__\\(__CONCAT_U__\\(__c\\),l\\)"; |
| |
| #define HPUX11_UINT32_C_TEST_CT 1 |
| static tTestDesc aHpux11_Uint32_CTests[] = { |
| { TT_EGREP, zHpux11_Uint32_CSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Hpux11_Uint32_C |
| */ |
| static const char* apzHpux11_Uint32_CPatch[] = { |
| "format", |
| "#define UINT32_C(__c) __CONCAT__(__c,ul)", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Hpux11_Vsnprintf fix |
| */ |
| tSCC zHpux11_VsnprintfName[] = |
| "hpux11_vsnprintf"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zHpux11_VsnprintfList[] = |
| "|stdio.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzHpux11_VsnprintfMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zHpux11_VsnprintfSelect0[] = |
| "(extern int vsnprintf\\(char \\*, _[hpux]*_size_t, const char \\*,) __va__list\\);"; |
| |
| #define HPUX11_VSNPRINTF_TEST_CT 1 |
| static tTestDesc aHpux11_VsnprintfTests[] = { |
| { TT_EGREP, zHpux11_VsnprintfSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Hpux11_Vsnprintf |
| */ |
| static const char* apzHpux11_VsnprintfPatch[] = { |
| "format", |
| "%1 __va_list);", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Hpux8_Bogus_Inlines fix |
| */ |
| tSCC zHpux8_Bogus_InlinesName[] = |
| "hpux8_bogus_inlines"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zHpux8_Bogus_InlinesList[] = |
| "|math.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzHpux8_Bogus_InlinesMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zHpux8_Bogus_InlinesSelect0[] = |
| "inline"; |
| |
| #define HPUX8_BOGUS_INLINES_TEST_CT 1 |
| static tTestDesc aHpux8_Bogus_InlinesTests[] = { |
| { TT_EGREP, zHpux8_Bogus_InlinesSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Hpux8_Bogus_Inlines |
| */ |
| static const char* apzHpux8_Bogus_InlinesPatch[] = { "sed", |
| "-e", "s@inline int abs(int [a-z][a-z]*) {.*}@extern \"C\" int abs(int);@", |
| "-e", "s@inline double abs(double [a-z][a-z]*) {.*}@@", |
| "-e", "s@inline int sqr(int [a-z][a-z]*) {.*}@@", |
| "-e", "s@inline double sqr(double [a-z][a-z]*) {.*}@@", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Hpux_Ctype_Macros fix |
| */ |
| tSCC zHpux_Ctype_MacrosName[] = |
| "hpux_ctype_macros"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zHpux_Ctype_MacrosList[] = |
| "|ctype.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzHpux_Ctype_MacrosMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zHpux_Ctype_MacrosSelect0[] = |
| "((: |\\()__SB_masks \\? )(__SB_masks\\[__(alnum|c)\\] & _IS)"; |
| |
| #define HPUX_CTYPE_MACROS_TEST_CT 1 |
| static tTestDesc aHpux_Ctype_MacrosTests[] = { |
| { TT_EGREP, zHpux_Ctype_MacrosSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Hpux_Ctype_Macros |
| */ |
| static const char* apzHpux_Ctype_MacrosPatch[] = { |
| "format", |
| "%1(int)%3", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Hpux_Long_Double fix |
| */ |
| tSCC zHpux_Long_DoubleName[] = |
| "hpux_long_double"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zHpux_Long_DoubleList[] = |
| "|stdlib.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzHpux_Long_DoubleMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zHpux_Long_DoubleSelect0[] = |
| "extern[ \t]long_double[ \t]strtold"; |
| |
| /* |
| * content bypass pattern - skip fix if pattern found |
| */ |
| tSCC zHpux_Long_DoubleBypass0[] = |
| "long_double_t"; |
| |
| #define HPUX_LONG_DOUBLE_TEST_CT 2 |
| static tTestDesc aHpux_Long_DoubleTests[] = { |
| { TT_NEGREP, zHpux_Long_DoubleBypass0, (regex_t*)NULL }, |
| { TT_EGREP, zHpux_Long_DoubleSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Hpux_Long_Double |
| */ |
| static const char* apzHpux_Long_DoublePatch[] = { "sed", |
| "-e", "/^#[ \t]*ifndef _LONG_DOUBLE/,/\\/\\* _LONG_DOUBLE \\*\\//D", |
| "-e", "s/long_double/long double/g", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Hpux_Maxint fix |
| */ |
| tSCC zHpux_MaxintName[] = |
| "hpux_maxint"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zHpux_MaxintList[] = |
| "|sys/param.h|values.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzHpux_MaxintMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zHpux_MaxintSelect0[] = |
| "^#[ \t]*define[ \t]+MAXINT[ \t]"; |
| |
| /* |
| * content bypass pattern - skip fix if pattern found |
| */ |
| tSCC zHpux_MaxintBypass0[] = |
| "^#[ \t]*ifndef[ \t]+MAXINT"; |
| |
| /* |
| * perform the 'test' shell command - do fix on success |
| */ |
| tSCC zHpux_MaxintTest0[] = |
| "-n \"`egrep '#[ \t]*define[ \t]+MAXINT[ \t]' sys/param.h`\""; |
| |
| #define HPUX_MAXINT_TEST_CT 3 |
| static tTestDesc aHpux_MaxintTests[] = { |
| { TT_TEST, zHpux_MaxintTest0, 0 /* unused */ }, |
| { TT_NEGREP, zHpux_MaxintBypass0, (regex_t*)NULL }, |
| { TT_EGREP, zHpux_MaxintSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Hpux_Maxint |
| */ |
| static const char* apzHpux_MaxintPatch[] = { |
| "format", |
| "#ifndef MAXINT\n\ |
| %0\n\ |
| #endif", |
| "^#[ \t]*define[ \t]+MAXINT[ \t].*", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Hpux_Systime fix |
| */ |
| tSCC zHpux_SystimeName[] = |
| "hpux_systime"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zHpux_SystimeList[] = |
| "|sys/time.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzHpux_SystimeMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zHpux_SystimeSelect0[] = |
| "^extern struct sigevent;"; |
| |
| #define HPUX_SYSTIME_TEST_CT 1 |
| static tTestDesc aHpux_SystimeTests[] = { |
| { TT_EGREP, zHpux_SystimeSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Hpux_Systime |
| */ |
| static const char* apzHpux_SystimePatch[] = { |
| "format", |
| "struct sigevent;", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Int_Abort_Free_And_Exit fix |
| */ |
| tSCC zInt_Abort_Free_And_ExitName[] = |
| "int_abort_free_and_exit"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zInt_Abort_Free_And_ExitList[] = |
| "|stdlib.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzInt_Abort_Free_And_ExitMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zInt_Abort_Free_And_ExitSelect0[] = |
| "int[ \t]+(abort|free|exit)[ \t]*\\("; |
| |
| #define INT_ABORT_FREE_AND_EXIT_TEST_CT 1 |
| static tTestDesc aInt_Abort_Free_And_ExitTests[] = { |
| { TT_EGREP, zInt_Abort_Free_And_ExitSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Int_Abort_Free_And_Exit |
| */ |
| static const char* apzInt_Abort_Free_And_ExitPatch[] = { |
| "format", |
| "void\t%1(", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Io_Quotes_Def fix |
| */ |
| tSCC zIo_Quotes_DefName[] = |
| "io_quotes_def"; |
| |
| /* |
| * File name selection pattern |
| */ |
| #define zIo_Quotes_DefList (char*)NULL |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzIo_Quotes_DefMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zIo_Quotes_DefSelect0[] = |
| "define[ \t]+[A-Z0-9_]+IO[A-Z]*\\([a-zA-Z][,)]"; |
| |
| #define IO_QUOTES_DEF_TEST_CT 1 |
| static tTestDesc aIo_Quotes_DefTests[] = { |
| { TT_EGREP, zIo_Quotes_DefSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Io_Quotes_Def |
| */ |
| static const char* apzIo_Quotes_DefPatch[] = { |
| "char_macro_def", |
| "IO", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Io_Quotes_Use fix |
| */ |
| tSCC zIo_Quotes_UseName[] = |
| "io_quotes_use"; |
| |
| /* |
| * File name selection pattern |
| */ |
| #define zIo_Quotes_UseList (char*)NULL |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzIo_Quotes_UseMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zIo_Quotes_UseSelect0[] = |
| "define[ \t]+[A-Z0-9_]+[ \t]+[A-Z0-9_]+IO[A-Z]*[ \t]*\\( *[^,']"; |
| |
| #define IO_QUOTES_USE_TEST_CT 1 |
| static tTestDesc aIo_Quotes_UseTests[] = { |
| { TT_EGREP, zIo_Quotes_UseSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Io_Quotes_Use |
| */ |
| static const char* apzIo_Quotes_UsePatch[] = { |
| "char_macro_use", |
| "IO", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Ip_Missing_Semi fix |
| */ |
| tSCC zIp_Missing_SemiName[] = |
| "ip_missing_semi"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zIp_Missing_SemiList[] = |
| "|netinet/ip.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzIp_Missing_SemiMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zIp_Missing_SemiSelect0[] = |
| "}$"; |
| |
| #define IP_MISSING_SEMI_TEST_CT 1 |
| static tTestDesc aIp_Missing_SemiTests[] = { |
| { TT_EGREP, zIp_Missing_SemiSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Ip_Missing_Semi |
| */ |
| static const char* apzIp_Missing_SemiPatch[] = { "sed", |
| "-e", "/^struct/,/^};/s/}$/};/", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Irix___Restrict fix |
| */ |
| tSCC zIrix___RestrictName[] = |
| "irix___restrict"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zIrix___RestrictList[] = |
| "|internal/sgimacros.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| tSCC* apzIrix___RestrictMachs[] = { |
| "mips-sgi-irix6.5", |
| (const char*)NULL }; |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zIrix___RestrictSelect0[] = |
| "(#ifdef __c99\n\ |
| )(#[ \t]*define __restrict restrict)"; |
| |
| #define IRIX___RESTRICT_TEST_CT 1 |
| static tTestDesc aIrix___RestrictTests[] = { |
| { TT_EGREP, zIrix___RestrictSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Irix___Restrict |
| */ |
| static const char* apzIrix___RestrictPatch[] = { |
| "format", |
| "%1# ifndef __cplusplus\n\ |
| %2\n\ |
| # endif", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Irix___Generic1 fix |
| */ |
| tSCC zIrix___Generic1Name[] = |
| "irix___generic1"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zIrix___Generic1List[] = |
| "|internal/math_core.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| tSCC* apzIrix___Generic1Machs[] = { |
| "mips-sgi-irix6.5", |
| (const char*)NULL }; |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zIrix___Generic1Select0[] = |
| "#define ([a-z]+)\\(x\\) *__generic.*"; |
| |
| #define IRIX___GENERIC1_TEST_CT 1 |
| static tTestDesc aIrix___Generic1Tests[] = { |
| { TT_EGREP, zIrix___Generic1Select0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Irix___Generic1 |
| */ |
| static const char* apzIrix___Generic1Patch[] = { |
| "format", |
| "extern int %1(double);\n\ |
| extern int %1f(float);\n\ |
| extern int %1l(long double);\n\ |
| #define %1(x) (sizeof(x) == sizeof(double) ? _%1(x) \\\n\ |
| : sizeof(x) == sizeof(float) ? _%1f(x) \\\n\ |
| : _%1l(x))\n", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Irix___Generic2 fix |
| */ |
| tSCC zIrix___Generic2Name[] = |
| "irix___generic2"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zIrix___Generic2List[] = |
| "|internal/math_core.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| tSCC* apzIrix___Generic2Machs[] = { |
| "mips-sgi-irix6.5", |
| (const char*)NULL }; |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zIrix___Generic2Select0[] = |
| "#define ([a-z]+)\\(x,y\\) *__generic.*"; |
| |
| #define IRIX___GENERIC2_TEST_CT 1 |
| static tTestDesc aIrix___Generic2Tests[] = { |
| { TT_EGREP, zIrix___Generic2Select0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Irix___Generic2 |
| */ |
| static const char* apzIrix___Generic2Patch[] = { |
| "format", |
| "#define %1(x,y) \\\n\ |
| ((sizeof(x)<=4 && sizeof(y)<=4) ? _%1f(x,y) \\\n\ |
| : (sizeof(x)<=8 && sizeof(y)<=8) ? _%1(x,y) \\\n\ |
| : _%1l(x,y))\n", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Irix_Asm_Apostrophe fix |
| */ |
| tSCC zIrix_Asm_ApostropheName[] = |
| "irix_asm_apostrophe"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zIrix_Asm_ApostropheList[] = |
| "|sys/asm.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzIrix_Asm_ApostropheMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zIrix_Asm_ApostropheSelect0[] = |
| "^[ \t]*#.*[Ww]e're"; |
| |
| #define IRIX_ASM_APOSTROPHE_TEST_CT 1 |
| static tTestDesc aIrix_Asm_ApostropheTests[] = { |
| { TT_EGREP, zIrix_Asm_ApostropheSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Irix_Asm_Apostrophe |
| */ |
| static const char* apzIrix_Asm_ApostrophePatch[] = { |
| "format", |
| "%1 are", |
| "^([ \t]*#.*[Ww]e)'re", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Irix_Limits_Const fix |
| */ |
| tSCC zIrix_Limits_ConstName[] = |
| "irix_limits_const"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zIrix_Limits_ConstList[] = |
| "|fixinc-test-limits.h|limits.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzIrix_Limits_ConstMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zIrix_Limits_ConstSelect0[] = |
| "^extern const "; |
| |
| #define IRIX_LIMITS_CONST_TEST_CT 1 |
| static tTestDesc aIrix_Limits_ConstTests[] = { |
| { TT_EGREP, zIrix_Limits_ConstSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Irix_Limits_Const |
| */ |
| static const char* apzIrix_Limits_ConstPatch[] = { |
| "format", |
| "extern __const ", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Irix_Socklen_T fix |
| */ |
| tSCC zIrix_Socklen_TName[] = |
| "irix_socklen_t"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zIrix_Socklen_TList[] = |
| "|sys/socket.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| tSCC* apzIrix_Socklen_TMachs[] = { |
| "mips-sgi-irix6.5", |
| (const char*)NULL }; |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zIrix_Socklen_TSelect0[] = |
| "(#define _SOCKLEN_T\n\ |
| )(typedef u_int32_t socklen_t;)"; |
| |
| #define IRIX_SOCKLEN_T_TEST_CT 1 |
| static tTestDesc aIrix_Socklen_TTests[] = { |
| { TT_EGREP, zIrix_Socklen_TSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Irix_Socklen_T |
| */ |
| static const char* apzIrix_Socklen_TPatch[] = { |
| "format", |
| "%1#if _NO_XOPEN4 && _NO_XOPEN5\n\ |
| typedef int socklen_t;\n\ |
| #else\n\ |
| %2\n\ |
| #endif /* _NO_XOPEN4 && _NO_XOPEN5 */", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Irix_Stdio_Va_List fix |
| */ |
| tSCC zIrix_Stdio_Va_ListName[] = |
| "irix_stdio_va_list"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zIrix_Stdio_Va_ListList[] = |
| "|stdio.h|internal/stdio_core.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzIrix_Stdio_Va_ListMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zIrix_Stdio_Va_ListSelect0[] = |
| "/\\* va_list \\*/ char \\*"; |
| |
| #define IRIX_STDIO_VA_LIST_TEST_CT 1 |
| static tTestDesc aIrix_Stdio_Va_ListTests[] = { |
| { TT_EGREP, zIrix_Stdio_Va_ListSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Irix_Stdio_Va_List |
| */ |
| static const char* apzIrix_Stdio_Va_ListPatch[] = { |
| "format", |
| "__gnuc_va_list", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Irix_Wcsftime fix |
| */ |
| tSCC zIrix_WcsftimeName[] = |
| "irix_wcsftime"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zIrix_WcsftimeList[] = |
| "|internal/wchar_core.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| tSCC* apzIrix_WcsftimeMachs[] = { |
| "mips-sgi-irix6.5", |
| (const char*)NULL }; |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zIrix_WcsftimeSelect0[] = |
| "#if _NO_XOPEN5\n\ |
| (extern size_t[ \t]+wcsftime.*const char *.*)"; |
| |
| #define IRIX_WCSFTIME_TEST_CT 1 |
| static tTestDesc aIrix_WcsftimeTests[] = { |
| { TT_EGREP, zIrix_WcsftimeSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Irix_Wcsftime |
| */ |
| static const char* apzIrix_WcsftimePatch[] = { |
| "format", |
| "#if _NO_XOPEN5 && !defined(__c99)\n\ |
| %1", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Isc_Fmod fix |
| */ |
| tSCC zIsc_FmodName[] = |
| "isc_fmod"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zIsc_FmodList[] = |
| "|math.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzIsc_FmodMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zIsc_FmodSelect0[] = |
| "fmod\\(double\\)"; |
| |
| #define ISC_FMOD_TEST_CT 1 |
| static tTestDesc aIsc_FmodTests[] = { |
| { TT_EGREP, zIsc_FmodSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Isc_Fmod |
| */ |
| static const char* apzIsc_FmodPatch[] = { |
| "format", |
| "fmod(double, double)", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Isc_Omits_With_Stdc fix |
| */ |
| tSCC zIsc_Omits_With_StdcName[] = |
| "isc_omits_with_stdc"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zIsc_Omits_With_StdcList[] = |
| "|stdio.h|math.h|ctype.h|sys/limits.h|sys/fcntl.h|sys/dirent.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzIsc_Omits_With_StdcMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zIsc_Omits_With_StdcSelect0[] = |
| "!defined\\(__STDC__\\) && !defined\\(_POSIX_SOURCE\\)"; |
| |
| #define ISC_OMITS_WITH_STDC_TEST_CT 1 |
| static tTestDesc aIsc_Omits_With_StdcTests[] = { |
| { TT_EGREP, zIsc_Omits_With_StdcSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Isc_Omits_With_Stdc |
| */ |
| static const char* apzIsc_Omits_With_StdcPatch[] = { |
| "format", |
| "!defined(_POSIX_SOURCE)", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Kandr_Concat fix |
| */ |
| tSCC zKandr_ConcatName[] = |
| "kandr_concat"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zKandr_ConcatList[] = |
| "|sparc/asm_linkage.h|sun3/asm_linkage.h|sun3x/asm_linkage.h|sun4/asm_linkage.h|sun4c/asm_linkage.h|sun4m/asm_linkage.h|sun4c/debug/asm_linkage.h|sun4m/debug/asm_linkage.h|arm/as_support.h|arm/mc_type.h|arm/xcb.h|dev/chardefmac.h|dev/ps_irq.h|dev/screen.h|dev/scsi.h|sys/tty.h|Xm.acorn/XmP.h|bsd43/bsd43_.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzKandr_ConcatMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zKandr_ConcatSelect0[] = |
| "/\\*\\*/"; |
| |
| #define KANDR_CONCAT_TEST_CT 1 |
| static tTestDesc aKandr_ConcatTests[] = { |
| { TT_EGREP, zKandr_ConcatSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Kandr_Concat |
| */ |
| static const char* apzKandr_ConcatPatch[] = { |
| "format", |
| "##", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Libc1_G_Va_List fix |
| */ |
| tSCC zLibc1_G_Va_ListName[] = |
| "libc1_G_va_list"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zLibc1_G_Va_ListList[] = |
| "|_G_config.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| tSCC* apzLibc1_G_Va_ListMachs[] = { |
| "*-*-linux*libc1", |
| (const char*)NULL }; |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zLibc1_G_Va_ListSelect0[] = |
| "typedef void \\* _G_va_list;"; |
| |
| #define LIBC1_G_VA_LIST_TEST_CT 1 |
| static tTestDesc aLibc1_G_Va_ListTests[] = { |
| { TT_EGREP, zLibc1_G_Va_ListSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Libc1_G_Va_List |
| */ |
| static const char* apzLibc1_G_Va_ListPatch[] = { |
| "format", |
| "typedef __builtin_va_list _G_va_list;", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Libc1_Ifdefd_Memx fix |
| */ |
| tSCC zLibc1_Ifdefd_MemxName[] = |
| "libc1_ifdefd_memx"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zLibc1_Ifdefd_MemxList[] = |
| "|testing.h|string.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzLibc1_Ifdefd_MemxMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zLibc1_Ifdefd_MemxSelect0[] = |
| "' is a built-in function for gcc 2\\.x\\. \\*/"; |
| |
| /* |
| * content bypass pattern - skip fix if pattern found |
| */ |
| tSCC zLibc1_Ifdefd_MemxBypass0[] = |
| "__cplusplus"; |
| |
| #define LIBC1_IFDEFD_MEMX_TEST_CT 2 |
| static tTestDesc aLibc1_Ifdefd_MemxTests[] = { |
| { TT_NEGREP, zLibc1_Ifdefd_MemxBypass0, (regex_t*)NULL }, |
| { TT_EGREP, zLibc1_Ifdefd_MemxSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Libc1_Ifdefd_Memx |
| */ |
| static const char* apzLibc1_Ifdefd_MemxPatch[] = { |
| "format", |
| "%1", |
| "/\\* `mem...' is a built-in function for gcc 2\\.x\\. \\*/\n\ |
| #if defined\\(__STDC__\\) && __GNUC__ < 2\n\ |
| (/\\* .* \\*/\n\ |
| extern [a-z_]+ mem.*(\n\ |
| [^#].*)*;)\n\ |
| #endif", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Limits_Ifndefs fix |
| */ |
| tSCC zLimits_IfndefsName[] = |
| "limits_ifndefs"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zLimits_IfndefsList[] = |
| "|sys/limits.h|limits.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzLimits_IfndefsMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zLimits_IfndefsSelect0[] = |
| "^[ \t]*#[ \t]*define[ \t]+((FLT|DBL)_(MIN|MAX|DIG))[ \t].*"; |
| |
| /* |
| * content bypass pattern - skip fix if pattern found |
| */ |
| tSCC zLimits_IfndefsBypass0[] = |
| "ifndef[ \t]+FLT_(MIN|MAX)"; |
| |
| #define LIMITS_IFNDEFS_TEST_CT 2 |
| static tTestDesc aLimits_IfndefsTests[] = { |
| { TT_NEGREP, zLimits_IfndefsBypass0, (regex_t*)NULL }, |
| { TT_EGREP, zLimits_IfndefsSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Limits_Ifndefs |
| */ |
| static const char* apzLimits_IfndefsPatch[] = { |
| "format", |
| "#ifndef %1\n\ |
| %0\n\ |
| #endif", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Lynx_Void_Int fix |
| */ |
| tSCC zLynx_Void_IntName[] = |
| "lynx_void_int"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zLynx_Void_IntList[] = |
| "|curses.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzLynx_Void_IntMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zLynx_Void_IntSelect0[] = |
| "#[ \t]*define[ \t]+void[ \t]+int[ \t]*"; |
| |
| #define LYNX_VOID_INT_TEST_CT 1 |
| static tTestDesc aLynx_Void_IntTests[] = { |
| { TT_EGREP, zLynx_Void_IntSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Lynx_Void_Int |
| */ |
| static const char* apzLynx_Void_IntPatch[] = { |
| "format", |
| "", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Lynxos_Fcntl_Proto fix |
| */ |
| tSCC zLynxos_Fcntl_ProtoName[] = |
| "lynxos_fcntl_proto"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zLynxos_Fcntl_ProtoList[] = |
| "|fcntl.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzLynxos_Fcntl_ProtoMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zLynxos_Fcntl_ProtoSelect0[] = |
| "fcntl[ \t]*\\(int, int, int\\)"; |
| |
| #define LYNXOS_FCNTL_PROTO_TEST_CT 1 |
| static tTestDesc aLynxos_Fcntl_ProtoTests[] = { |
| { TT_EGREP, zLynxos_Fcntl_ProtoSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Lynxos_Fcntl_Proto |
| */ |
| static const char* apzLynxos_Fcntl_ProtoPatch[] = { |
| "format", |
| "%1...)", |
| "(fcntl[ \t]*\\(int, int, )int\\)", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Machine_Ansi_H_Va_List fix |
| */ |
| tSCC zMachine_Ansi_H_Va_ListName[] = |
| "machine_ansi_h_va_list"; |
| |
| /* |
| * File name selection pattern |
| */ |
| #define zMachine_Ansi_H_Va_ListList (char*)NULL |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzMachine_Ansi_H_Va_ListMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zMachine_Ansi_H_Va_ListSelect0[] = |
| "define[ \t]+_BSD_VA_LIST_[ \t]"; |
| |
| /* |
| * content bypass pattern - skip fix if pattern found |
| */ |
| tSCC zMachine_Ansi_H_Va_ListBypass0[] = |
| "__builtin_va_list"; |
| |
| #define MACHINE_ANSI_H_VA_LIST_TEST_CT 2 |
| static tTestDesc aMachine_Ansi_H_Va_ListTests[] = { |
| { TT_NEGREP, zMachine_Ansi_H_Va_ListBypass0, (regex_t*)NULL }, |
| { TT_EGREP, zMachine_Ansi_H_Va_ListSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Machine_Ansi_H_Va_List |
| */ |
| static const char* apzMachine_Ansi_H_Va_ListPatch[] = { |
| "format", |
| "%1__builtin_va_list", |
| "(define[ \t]+_BSD_VA_LIST_[ \t]+).*", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Machine_Name fix |
| */ |
| tSCC zMachine_NameName[] = |
| "machine_name"; |
| |
| /* |
| * File name selection pattern |
| */ |
| #define zMachine_NameList (char*)NULL |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzMachine_NameMachs (const char**)NULL |
| |
| /* |
| * perform the C function call test |
| */ |
| tSCC zMachine_NameFTst0[] = "machine_name"; |
| |
| #define MACHINE_NAME_TEST_CT 1 |
| static tTestDesc aMachine_NameTests[] = { |
| { TT_FUNCTION, zMachine_NameFTst0, 0 /* unused */ }, }; |
| |
| /* |
| * Fix Command Arguments for Machine_Name |
| */ |
| static const char* apzMachine_NamePatch[] = { |
| "machine_name", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Math_Exception fix |
| */ |
| tSCC zMath_ExceptionName[] = |
| "math_exception"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zMath_ExceptionList[] = |
| "|math.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzMath_ExceptionMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zMath_ExceptionSelect0[] = |
| "struct exception"; |
| |
| /* |
| * content bypass pattern - skip fix if pattern found |
| */ |
| tSCC zMath_ExceptionBypass0[] = |
| "We have a problem when using C\\+\\+"; |
| |
| #define MATH_EXCEPTION_TEST_CT 2 |
| static tTestDesc aMath_ExceptionTests[] = { |
| { TT_NEGREP, zMath_ExceptionBypass0, (regex_t*)NULL }, |
| { TT_EGREP, zMath_ExceptionSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Math_Exception |
| */ |
| static const char* apzMath_ExceptionPatch[] = { |
| "wrap", |
| "#ifdef __cplusplus\n\ |
| #define exception __math_exception\n\ |
| #endif\n", |
| "#ifdef __cplusplus\n\ |
| #undef exception\n\ |
| #endif\n", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Math_Huge_Val_From_Dbl_Max fix |
| */ |
| tSCC zMath_Huge_Val_From_Dbl_MaxName[] = |
| "math_huge_val_from_dbl_max"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zMath_Huge_Val_From_Dbl_MaxList[] = |
| "|math.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzMath_Huge_Val_From_Dbl_MaxMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zMath_Huge_Val_From_Dbl_MaxSelect0[] = |
| "define[ \t]+HUGE_VAL[ \t]+DBL_MAX"; |
| |
| /* |
| * content bypass pattern - skip fix if pattern found |
| */ |
| tSCC zMath_Huge_Val_From_Dbl_MaxBypass0[] = |
| "define[ \t]+DBL_MAX"; |
| |
| #define MATH_HUGE_VAL_FROM_DBL_MAX_TEST_CT 2 |
| static tTestDesc aMath_Huge_Val_From_Dbl_MaxTests[] = { |
| { TT_NEGREP, zMath_Huge_Val_From_Dbl_MaxBypass0, (regex_t*)NULL }, |
| { TT_EGREP, zMath_Huge_Val_From_Dbl_MaxSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Math_Huge_Val_From_Dbl_Max |
| */ |
| static const char* apzMath_Huge_Val_From_Dbl_MaxPatch[] = { "sh", "-c", |
| "\tdbl_max_def=`egrep 'define[ \t]+DBL_MAX[ \t]+.*' float.h | sed 's/.*DBL_MAX[ \t]*//' 2>/dev/null`\n\n\ |
| \tif ( test -n \"${dbl_max_def}\" ) > /dev/null 2>&1\n\ |
| \tthen sed -e '/define[ \t]*HUGE_VAL[ \t]*DBL_MAX/s@DBL_MAX@'\"$dbl_max_def@\"\n\ |
| \telse cat\n\ |
| \tfi", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Math_Huge_Val_Ifndef fix |
| */ |
| tSCC zMath_Huge_Val_IfndefName[] = |
| "math_huge_val_ifndef"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zMath_Huge_Val_IfndefList[] = |
| "|math.h|math/math.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzMath_Huge_Val_IfndefMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zMath_Huge_Val_IfndefSelect0[] = |
| "define[ \t]+HUGE_VAL"; |
| |
| #define MATH_HUGE_VAL_IFNDEF_TEST_CT 1 |
| static tTestDesc aMath_Huge_Val_IfndefTests[] = { |
| { TT_EGREP, zMath_Huge_Val_IfndefSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Math_Huge_Val_Ifndef |
| */ |
| static const char* apzMath_Huge_Val_IfndefPatch[] = { |
| "format", |
| "#ifndef HUGE_VAL\n\ |
| %0\n\ |
| #endif", |
| "^[ \t]*#[ \t]*define[ \t]+HUGE_VAL[ \t].*", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Nested_Auth_Des fix |
| */ |
| tSCC zNested_Auth_DesName[] = |
| "nested_auth_des"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zNested_Auth_DesList[] = |
| "|rpc/rpc.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzNested_Auth_DesMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zNested_Auth_DesSelect0[] = |
| "(/\\*.*rpc/auth_des\\.h>.*)/\\*"; |
| |
| #define NESTED_AUTH_DES_TEST_CT 1 |
| static tTestDesc aNested_Auth_DesTests[] = { |
| { TT_EGREP, zNested_Auth_DesSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Nested_Auth_Des |
| */ |
| static const char* apzNested_Auth_DesPatch[] = { |
| "format", |
| "%1*/ /*", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Nested_Motorola fix |
| */ |
| tSCC zNested_MotorolaName[] = |
| "nested_motorola"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zNested_MotorolaList[] = |
| "|sys/limits.h|limits.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| tSCC* apzNested_MotorolaMachs[] = { |
| "m68k-motorola-sysv*", |
| (const char*)NULL }; |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zNested_MotorolaSelect0[] = |
| "max # bytes atomic in write|error value returned by Math lib"; |
| |
| #define NESTED_MOTOROLA_TEST_CT 1 |
| static tTestDesc aNested_MotorolaTests[] = { |
| { TT_EGREP, zNested_MotorolaSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Nested_Motorola |
| */ |
| static const char* apzNested_MotorolaPatch[] = { "sed", |
| "-e", "s@^\\(#undef[ \t][ \t]*PIPE_BUF[ \t]*/\\* max # bytes atomic in write to a\\)$@\\1 */@", |
| "-e", "s@\\(/\\*#define\tHUGE_VAL\t3.[0-9e+]* \\)\\(/\\*error value returned by Math lib\\*/\\)$@\\1*/ \\2@", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Nested_Sys_Limits fix |
| */ |
| tSCC zNested_Sys_LimitsName[] = |
| "nested_sys_limits"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zNested_Sys_LimitsList[] = |
| "|sys/limits.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzNested_Sys_LimitsMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zNested_Sys_LimitsSelect0[] = |
| "CHILD_MAX"; |
| |
| #define NESTED_SYS_LIMITS_TEST_CT 1 |
| static tTestDesc aNested_Sys_LimitsTests[] = { |
| { TT_EGREP, zNested_Sys_LimitsSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Nested_Sys_Limits |
| */ |
| static const char* apzNested_Sys_LimitsPatch[] = { "sed", |
| "-e", "/CHILD_MAX/s,/\\* Max, Max,", |
| "-e", "/OPEN_MAX/s,/\\* Max, Max,", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Netbsd_Extra_Semicolon fix |
| */ |
| tSCC zNetbsd_Extra_SemicolonName[] = |
| "netbsd_extra_semicolon"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zNetbsd_Extra_SemicolonList[] = |
| "|sys/cdefs.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| tSCC* apzNetbsd_Extra_SemicolonMachs[] = { |
| "*-*-netbsd*", |
| (const char*)NULL }; |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zNetbsd_Extra_SemicolonSelect0[] = |
| "#define[ \t]*__END_DECLS[ \t]*};"; |
| |
| #define NETBSD_EXTRA_SEMICOLON_TEST_CT 1 |
| static tTestDesc aNetbsd_Extra_SemicolonTests[] = { |
| { TT_EGREP, zNetbsd_Extra_SemicolonSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Netbsd_Extra_Semicolon |
| */ |
| static const char* apzNetbsd_Extra_SemicolonPatch[] = { |
| "format", |
| "#define __END_DECLS }", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Next_Math_Prefix fix |
| */ |
| tSCC zNext_Math_PrefixName[] = |
| "next_math_prefix"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zNext_Math_PrefixList[] = |
| "|ansi/math.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzNext_Math_PrefixMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zNext_Math_PrefixSelect0[] = |
| "^extern[ \t]+double[ \t]+__const__[ \t]"; |
| |
| #define NEXT_MATH_PREFIX_TEST_CT 1 |
| static tTestDesc aNext_Math_PrefixTests[] = { |
| { TT_EGREP, zNext_Math_PrefixSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Next_Math_Prefix |
| */ |
| static const char* apzNext_Math_PrefixPatch[] = { |
| "format", |
| "extern double %1(", |
| "^extern[ \t]+double[ \t]+__const__[ \t]+([a-z]+)\\(", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Next_Template fix |
| */ |
| tSCC zNext_TemplateName[] = |
| "next_template"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zNext_TemplateList[] = |
| "|bsd/libc.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzNext_TemplateMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zNext_TemplateSelect0[] = |
| "[ \t]template\\)"; |
| |
| #define NEXT_TEMPLATE_TEST_CT 1 |
| static tTestDesc aNext_TemplateTests[] = { |
| { TT_EGREP, zNext_TemplateSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Next_Template |
| */ |
| static const char* apzNext_TemplatePatch[] = { |
| "format", |
| "(%1)", |
| "\\(([^)]*)[ \t]template\\)", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Next_Volitile fix |
| */ |
| tSCC zNext_VolitileName[] = |
| "next_volitile"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zNext_VolitileList[] = |
| "|ansi/stdlib.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzNext_VolitileMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zNext_VolitileSelect0[] = |
| "^extern[ \t]+volatile[ \t]+void[ \t]"; |
| |
| #define NEXT_VOLITILE_TEST_CT 1 |
| static tTestDesc aNext_VolitileTests[] = { |
| { TT_EGREP, zNext_VolitileSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Next_Volitile |
| */ |
| static const char* apzNext_VolitilePatch[] = { |
| "format", |
| "extern void %1(", |
| "^extern[ \t]+volatile[ \t]+void[ \t]+(exit|abort)\\(", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Next_Wait_Union fix |
| */ |
| tSCC zNext_Wait_UnionName[] = |
| "next_wait_union"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zNext_Wait_UnionList[] = |
| "|sys/wait.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzNext_Wait_UnionMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zNext_Wait_UnionSelect0[] = |
| "wait\\(union wait"; |
| |
| #define NEXT_WAIT_UNION_TEST_CT 1 |
| static tTestDesc aNext_Wait_UnionTests[] = { |
| { TT_EGREP, zNext_Wait_UnionSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Next_Wait_Union |
| */ |
| static const char* apzNext_Wait_UnionPatch[] = { |
| "format", |
| "wait(void", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Nodeent_Syntax fix |
| */ |
| tSCC zNodeent_SyntaxName[] = |
| "nodeent_syntax"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zNodeent_SyntaxList[] = |
| "|netdnet/dnetdb.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzNodeent_SyntaxMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zNodeent_SyntaxSelect0[] = |
| "char[ \t]*\\*na_addr[ \t]*$"; |
| |
| #define NODEENT_SYNTAX_TEST_CT 1 |
| static tTestDesc aNodeent_SyntaxTests[] = { |
| { TT_EGREP, zNodeent_SyntaxSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Nodeent_Syntax |
| */ |
| static const char* apzNodeent_SyntaxPatch[] = { |
| "format", |
| "%0;", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Obstack_Lvalue_Cast fix |
| */ |
| tSCC zObstack_Lvalue_CastName[] = |
| "obstack_lvalue_cast"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zObstack_Lvalue_CastList[] = |
| "|obstack.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzObstack_Lvalue_CastMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zObstack_Lvalue_CastSelect0[] = |
| "\\*\\(\\(([^()]*)\\*\\)(.*)\\)\\+\\+ = \\(([^()]*)\\)"; |
| |
| #define OBSTACK_LVALUE_CAST_TEST_CT 1 |
| static tTestDesc aObstack_Lvalue_CastTests[] = { |
| { TT_EGREP, zObstack_Lvalue_CastSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Obstack_Lvalue_Cast |
| */ |
| static const char* apzObstack_Lvalue_CastPatch[] = { |
| "format", |
| "((*((%1*)%2) = (%3)), (%2 += sizeof (%1)))", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Osf_Namespace_A fix |
| */ |
| tSCC zOsf_Namespace_AName[] = |
| "osf_namespace_a"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zOsf_Namespace_AList[] = |
| "|reg_types.h|sys/lc_core.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzOsf_Namespace_AMachs (const char**)NULL |
| |
| /* |
| * perform the 'test' shell command - do fix on success |
| */ |
| tSCC zOsf_Namespace_ATest0[] = |
| " -r reg_types.h"; |
| tSCC zOsf_Namespace_ATest1[] = |
| " -r sys/lc_core.h"; |
| tSCC zOsf_Namespace_ATest2[] = |
| " -n \"`grep '} regex_t;' reg_types.h`\""; |
| tSCC zOsf_Namespace_ATest3[] = |
| " -z \"`grep __regex_t regex.h`\""; |
| |
| #define OSF_NAMESPACE_A_TEST_CT 4 |
| static tTestDesc aOsf_Namespace_ATests[] = { |
| { TT_TEST, zOsf_Namespace_ATest0, 0 /* unused */ }, |
| { TT_TEST, zOsf_Namespace_ATest1, 0 /* unused */ }, |
| { TT_TEST, zOsf_Namespace_ATest2, 0 /* unused */ }, |
| { TT_TEST, zOsf_Namespace_ATest3, 0 /* unused */ }, }; |
| |
| /* |
| * Fix Command Arguments for Osf_Namespace_A |
| */ |
| static const char* apzOsf_Namespace_APatch[] = { |
| "format", |
| "__%0", |
| "reg(ex|off|match)_t", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Osf_Namespace_C fix |
| */ |
| tSCC zOsf_Namespace_CName[] = |
| "osf_namespace_c"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zOsf_Namespace_CList[] = |
| "|regex.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzOsf_Namespace_CMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zOsf_Namespace_CSelect0[] = |
| "#include <reg_types.h>.*"; |
| |
| /* |
| * perform the 'test' shell command - do fix on success |
| */ |
| tSCC zOsf_Namespace_CTest0[] = |
| " -r reg_types.h"; |
| tSCC zOsf_Namespace_CTest1[] = |
| " -r sys/lc_core.h"; |
| tSCC zOsf_Namespace_CTest2[] = |
| " -n \"`grep '} regex_t;' reg_types.h`\""; |
| tSCC zOsf_Namespace_CTest3[] = |
| " -z \"`grep __regex_t regex.h`\""; |
| |
| #define OSF_NAMESPACE_C_TEST_CT 5 |
| static tTestDesc aOsf_Namespace_CTests[] = { |
| { TT_TEST, zOsf_Namespace_CTest0, 0 /* unused */ }, |
| { TT_TEST, zOsf_Namespace_CTest1, 0 /* unused */ }, |
| { TT_TEST, zOsf_Namespace_CTest2, 0 /* unused */ }, |
| { TT_TEST, zOsf_Namespace_CTest3, 0 /* unused */ }, |
| { TT_EGREP, zOsf_Namespace_CSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Osf_Namespace_C |
| */ |
| static const char* apzOsf_Namespace_CPatch[] = { |
| "format", |
| "%0\n\ |
| typedef __regex_t\tregex_t;\n\ |
| typedef __regoff_t\tregoff_t;\n\ |
| typedef __regmatch_t\tregmatch_t;", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Pthread_Page_Size fix |
| */ |
| tSCC zPthread_Page_SizeName[] = |
| "pthread_page_size"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zPthread_Page_SizeList[] = |
| "|pthread.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzPthread_Page_SizeMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zPthread_Page_SizeSelect0[] = |
| "^int __page_size"; |
| |
| #define PTHREAD_PAGE_SIZE_TEST_CT 1 |
| static tTestDesc aPthread_Page_SizeTests[] = { |
| { TT_EGREP, zPthread_Page_SizeSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Pthread_Page_Size |
| */ |
| static const char* apzPthread_Page_SizePatch[] = { |
| "format", |
| "extern %0", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Read_Ret_Type fix |
| */ |
| tSCC zRead_Ret_TypeName[] = |
| "read_ret_type"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zRead_Ret_TypeList[] = |
| "|stdio.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzRead_Ret_TypeMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zRead_Ret_TypeSelect0[] = |
| "extern int\t.*, fread\\(\\), fwrite\\(\\)"; |
| |
| #define READ_RET_TYPE_TEST_CT 1 |
| static tTestDesc aRead_Ret_TypeTests[] = { |
| { TT_EGREP, zRead_Ret_TypeSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Read_Ret_Type |
| */ |
| static const char* apzRead_Ret_TypePatch[] = { |
| "format", |
| "extern unsigned int fread(), fwrite();\n\ |
| %1%2", |
| "(extern int\t.*), fread\\(\\), fwrite\\(\\)(.*)", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Rpc_Xdr_Lvalue_Cast_A fix |
| */ |
| tSCC zRpc_Xdr_Lvalue_Cast_AName[] = |
| "rpc_xdr_lvalue_cast_a"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zRpc_Xdr_Lvalue_Cast_AList[] = |
| "|rpc/xdr.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzRpc_Xdr_Lvalue_Cast_AMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zRpc_Xdr_Lvalue_Cast_ASelect0[] = |
| "#define[ \t]*IXDR_GET_LONG.*\\\\\n\ |
| .*__extension__.*"; |
| |
| #define RPC_XDR_LVALUE_CAST_A_TEST_CT 1 |
| static tTestDesc aRpc_Xdr_Lvalue_Cast_ATests[] = { |
| { TT_EGREP, zRpc_Xdr_Lvalue_Cast_ASelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Rpc_Xdr_Lvalue_Cast_A |
| */ |
| static const char* apzRpc_Xdr_Lvalue_Cast_APatch[] = { |
| "format", |
| "#define IXDR_GET_LONG(buf) ((long)IXDR_GET_U_INT32(buf))", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Rpc_Xdr_Lvalue_Cast_B fix |
| */ |
| tSCC zRpc_Xdr_Lvalue_Cast_BName[] = |
| "rpc_xdr_lvalue_cast_b"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zRpc_Xdr_Lvalue_Cast_BList[] = |
| "|rpc/xdr.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzRpc_Xdr_Lvalue_Cast_BMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zRpc_Xdr_Lvalue_Cast_BSelect0[] = |
| "#define[ \t]*IXDR_PUT_LONG.*\\\\\n\ |
| .*__extension__.*"; |
| |
| #define RPC_XDR_LVALUE_CAST_B_TEST_CT 1 |
| static tTestDesc aRpc_Xdr_Lvalue_Cast_BTests[] = { |
| { TT_EGREP, zRpc_Xdr_Lvalue_Cast_BSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Rpc_Xdr_Lvalue_Cast_B |
| */ |
| static const char* apzRpc_Xdr_Lvalue_Cast_BPatch[] = { |
| "format", |
| "#define IXDR_PUT_LONG(buf, v) ((long)IXDR_PUT_INT32(buf, (long)(v)))", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Rs6000_Double fix |
| */ |
| tSCC zRs6000_DoubleName[] = |
| "rs6000_double"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zRs6000_DoubleList[] = |
| "|math.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzRs6000_DoubleMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zRs6000_DoubleSelect0[] = |
| "[^a-zA-Z_]class\\("; |
| |
| #define RS6000_DOUBLE_TEST_CT 1 |
| static tTestDesc aRs6000_DoubleTests[] = { |
| { TT_EGREP, zRs6000_DoubleSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Rs6000_Double |
| */ |
| static const char* apzRs6000_DoublePatch[] = { |
| "format", |
| "#ifndef __cplusplus\n\ |
| %0\n\ |
| #endif", |
| "^.*[^a-zA-Z_]class\\(.*", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Rs6000_Fchmod fix |
| */ |
| tSCC zRs6000_FchmodName[] = |
| "rs6000_fchmod"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zRs6000_FchmodList[] = |
| "|sys/stat.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzRs6000_FchmodMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zRs6000_FchmodSelect0[] = |
| "fchmod\\(char \\*"; |
| |
| #define RS6000_FCHMOD_TEST_CT 1 |
| static tTestDesc aRs6000_FchmodTests[] = { |
| { TT_EGREP, zRs6000_FchmodSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Rs6000_Fchmod |
| */ |
| static const char* apzRs6000_FchmodPatch[] = { |
| "format", |
| "fchmod(int", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Rs6000_Param fix |
| */ |
| tSCC zRs6000_ParamName[] = |
| "rs6000_param"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zRs6000_ParamList[] = |
| "|stdio.h|unistd.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzRs6000_ParamMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zRs6000_ParamSelect0[] = |
| "rename\\(const char \\*old, const char \\*new\\)"; |
| |
| #define RS6000_PARAM_TEST_CT 1 |
| static tTestDesc aRs6000_ParamTests[] = { |
| { TT_EGREP, zRs6000_ParamSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Rs6000_Param |
| */ |
| static const char* apzRs6000_ParamPatch[] = { |
| "format", |
| "rename(const char *_old, const char *_new)", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Sco_Math fix |
| */ |
| tSCC zSco_MathName[] = |
| "sco_math"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zSco_MathList[] = |
| "|math.h|ansi/math.h|posix/math.h|xpg4/math.h|xpg4v2/math.h|xpg4plus/math.h|ods_30_compat/math.h|oldstyle/math.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| #define apzSco_MathMachs (const char**)NULL |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zSco_MathSelect0[] = |
| "inline double abs"; |
| |
| #define SCO_MATH_TEST_CT 1 |
| static tTestDesc aSco_MathTests[] = { |
| { TT_EGREP, zSco_MathSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Sco_Math |
| */ |
| static const char* apzSco_MathPatch[] = { "sed", |
| "-e", "/#define.*__fp_class(a) \\\\/i\\\n\ |
| #ifndef __GNUC__\n", |
| "-e", "/.*__builtin_generic/a\\\n\ |
| #else\\\n\ |
| #define __fp_class(a) \\\\\\\n\ |
| __builtin_choose_expr(__builtin_types_compatible_p(typeof(a),long double),\\\\\\\n\ |
| __fpclassifyl(a), \\\\\\\n\ |
| __builtin_choose_expr(__builtin_types_compatible_p(typeof(a), float), \\\\\\\n\ |
| __fpclassifyf(a),__fpclassify(a)))\\\n\ |
| #endif", |
| "-e", "/extern \"C\\+\\+\"/N;/inline double abs/i\\\n\ |
| #ifndef __GNUC__\n", |
| "-e", "/inline long double trunc/N;/inline long double trunc.*}.*extern \"C\\+\\+\"/a\\\n\ |
| #endif /* ! __GNUC__ */", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Sco_Regset fix |
| */ |
| tSCC zSco_RegsetName[] = |
| "sco_regset"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zSco_RegsetList[] = |
| "|sys/regset.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| tSCC* apzSco_RegsetMachs[] = { |
| "*-*-sco3.2v5*", |
| (const char*)NULL }; |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zSco_RegsetSelect0[] = |
| "(struct[ \t]+.*)fpstate"; |
| |
| #define SCO_REGSET_TEST_CT 1 |
| static tTestDesc aSco_RegsetTests[] = { |
| { TT_EGREP, zSco_RegsetSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Sco_Regset |
| */ |
| static const char* apzSco_RegsetPatch[] = { |
| "format", |
| "%1rsfpstate", |
| (char*)NULL }; |
| |
| /* * * * * * * * * * * * * * * * * * * * * * * * * * |
| * |
| * Description of Sco_Static_Func fix |
| */ |
| tSCC zSco_Static_FuncName[] = |
| "sco_static_func"; |
| |
| /* |
| * File name selection pattern |
| */ |
| tSCC zSco_Static_FuncList[] = |
| "|sys/stat.h|"; |
| /* |
| * Machine/OS name selection pattern |
| */ |
| tSCC* apzSco_Static_FuncMachs[] = { |
| "i?86-*-sco3.2*", |
| (const char*)NULL }; |
| |
| /* |
| * content selection pattern - do fix if pattern found |
| */ |
| tSCC zSco_Static_FuncSelect0[] = |
| "^static int"; |
| |
| #define SCO_STATIC_FUNC_TEST_CT 1 |
| static tTestDesc aSco_Static_FuncTests[] = { |
| { TT_EGREP, zSco_Static_FuncSelect0, (regex_t*)NULL }, }; |
| |
| /* |
| * Fix Command Arguments for Sco_Static_Func |
| */ |
| static const char* apzSco_Static_FuncPatch[] = { "sed", |
| "-e", "/^static int/i\\\n\ |
| #if __cplusplus\\\n\ |
| extern \"C\" {\\\n\ |
| #endif /* __cplusplus */", |
| "-e", "/^}$/a\\\n\ |
| #if __cplusplus\\\n\ |
| }\\\n\ |
| #endif /* __cplusplus */",
|