Resorted the entries

From-SVN: r58584
This commit is contained in:
Bruce Korb 2002-10-27 17:02:29 +00:00
parent 3eae4643be
commit f7cf1c7492

View File

@ -7,9 +7,8 @@ autogen definitions fixincl;
This is the sort command:
blocksort output=XXX \
blocksort output=inclhack.sorted \
pattern='^/\*$' \
start='== REPLACEMENT FIXES ==' \
trailer='^/\*EOF\*[/]' \
input=inclhack.def \
key='hackname[ ]*=[ ]*(.*);'
@ -21,8 +20,6 @@ autogen definitions fixincl;
FIXINC_DEBUG = yes;
#endif
/* == REPLACEMENT FIXES == */
/*
* Completely replace <_int_varargs.h> with a file that includes gcc's
* stdarg.h or varargs.h files as appropriate on DG/UX
@ -1144,6 +1141,21 @@ fix = {
};
/*
* Make sure hpux defines abs in header.
*/
fix = {
hackname = hpux11_abs;
mach = ia64-hp-hpux11*;
files = stdlib.h;
select = "ifndef _MATH_INCLUDED";
c_fix = format;
c_fix_arg = "if !defined(_MATH_INCLUDED) || defined(__GNUG__)";
// sed = "s/ifndef _MATH_INCLUDED/if !defined(_MATH_INCLUDED) || defined(__GNUG__)/";
test_text = "#ifndef _MATH_INCLUDED";
};
/*
* Keep HP-UX 11 from stomping on C++ math namespace
* with defines for fabsf.
@ -1164,21 +1176,6 @@ fix = {
};
/*
* Make sure hpux defines abs in header.
*/
fix = {
hackname = hpux11_abs;
mach = ia64-hp-hpux11*;
files = stdlib.h;
select = "ifndef _MATH_INCLUDED";
c_fix = format;
c_fix_arg = "if !defined(_MATH_INCLUDED) || defined(__GNUG__)";
// sed = "s/ifndef _MATH_INCLUDED/if !defined(_MATH_INCLUDED) || defined(__GNUG__)/";
test_text = "#ifndef _MATH_INCLUDED";
};
/*
* Prevent HP-UX 11 from defining __size_t and preventing size_t from
* being defined by having it define _hpux_size_t instead.
@ -1483,6 +1480,21 @@ fix = {
};
/*
* Fix libc1 _G_va_list definition, used in declarations of several
* more-or-less standard functions, for example vasprintf.
*/
fix = {
hackname = libc1_G_va_list;
files = _G_config.h;
mach = '*-*-linux*libc1';
select = 'typedef void \* _G_va_list;';
c_fix = format;
c_fix_arg = "typedef __builtin_va_list _G_va_list;";
test_text = 'typedef __builtin_va_list _G_va_list;';
};
/*
* GNU libc1 string.h does not prototype memcpy and memcmp for gcc
* versions > 1. This fix will open up the declaration for all
@ -1518,21 +1530,6 @@ fix = {
};
/*
* Fix libc1 _G_va_list definition, used in declarations of several
* more-or-less standard functions, for example vasprintf.
*/
fix = {
hackname = libc1_G_va_list;
files = _G_config.h;
mach = '*-*-linux*libc1';
select = 'typedef void \* _G_va_list;';
c_fix = format;
c_fix_arg = "typedef __builtin_va_list _G_va_list;";
test_text = 'typedef __builtin_va_list _G_va_list;';
};
/*
* In limits.h, put #ifndefs around things that are supposed to be defined
* in float.h to avoid redefinition errors if float.h is included first.