regenerated

From-SVN: r26364
This commit is contained in:
Bruce Korb 1999-04-12 07:12:21 +00:00
parent 7db774d2f1
commit be02fa1a4e
3 changed files with 507 additions and 408 deletions

View File

@ -1,10 +1,6 @@
#!/bin/sh #!/bin/sh
# #
# DO NOT EDIT THIS FILE (fixincl.sh) # DO NOT EDIT THIS FILE - it has been generated
#
# It has been autogen-ed Sunday April 4, 1999 at 12:12:26 AM MST
# From the definitions /puke/law//egcs/egcs/gcc/fixinc/inclhack.def
# and the template file /puke/law//egcs/egcs/gcc/fixinc/inclhack.tpl
# #
# Install modified versions of certain ANSI-incompatible system header # Install modified versions of certain ANSI-incompatible system header
# files which are fixed to work correctly with ANSI C and placed in a # files which are fixed to work correctly with ANSI C and placed in a
@ -14,6 +10,8 @@
# #
# See README-fixinc for more information. # See README-fixinc for more information.
# #
# fixincludes copyright (c) 1999 The Free Software Foundation, Inc.
#
# fixincludes is free software. # fixincludes is free software.
# #
# You may redistribute it and/or modify it under the terms of the # You may redistribute it and/or modify it under the terms of the
@ -345,9 +343,9 @@ while [ $# != 0 ]; do
# #
cd ${INPUT} cd ${INPUT}
required="$required `if $LINKS; then required="$required `if $LINKS; then
find ${FIND_BASE}/. \( -type f -o -type l \) -print find ${FIND_BASE}/. -name '*.h' \( -type f -o -type l \) -print
else else
find ${FIND_BASE}/. -type f -print find ${FIND_BASE}/. -name '*.h' -type f -print
fi | \ fi | \
sed -e 's;/\./;/;g' -e 's;//*;/;g' | \ sed -e 's;/\./;/;g' -e 's;//*;/;g' | \
${FIXINCL}`" ${FIXINCL}`"

File diff suppressed because it is too large Load Diff

View File

@ -1,10 +1,6 @@
#!/bin/sh #!/bin/sh
# #
# DO NOT EDIT THIS FILE (inclhack.sh) # DO NOT EDIT THIS FILE - it has been generated
#
# It has been autogen-ed Sunday April 4, 1999 at 12:12:26 AM MST
# From the definitions /puke/law//egcs/egcs/gcc/fixinc/inclhack.def
# and the template file /puke/law//egcs/egcs/gcc/fixinc/inclhack.tpl
# #
# Install modified versions of certain ANSI-incompatible system header # Install modified versions of certain ANSI-incompatible system header
# files which are fixed to work correctly with ANSI C and placed in a # files which are fixed to work correctly with ANSI C and placed in a
@ -14,6 +10,8 @@
# #
# See README-fixinc for more information. # See README-fixinc for more information.
# #
# fixincludes copyright (c) 1999 The Free Software Foundation, Inc.
#
# fixincludes is free software. # fixincludes is free software.
# #
# You may redistribute it and/or modify it under the terms of the # You may redistribute it and/or modify it under the terms of the
@ -343,9 +341,9 @@ while [ $# != 0 ]; do
# #
cd ${INPUT} cd ${INPUT}
files=`if $LINKS; then files=`if $LINKS; then
find ${FIND_BASE}/. \( -type f -o \( -type l -exec test ! -d {} \; \) \) -print find ${FIND_BASE}/. -name '*.h' \( -type f -o -type l \) -print
else else
find ${FIND_BASE}/. -type f -print find ${FIND_BASE}/. -name '*.h' -type f -print
fi | \ fi | \
sed -e 's;/\./;/;g' -e 's;//*;/;g' ` sed -e 's;/\./;/;g' -e 's;//*;/;g' `
@ -731,8 +729,8 @@ struct rusage;
# #
# Fix 17: No_Double_Slash # Fix 17: No_Double_Slash
# #
if ( test -n "`egrep '//[^\"*]' ${file}`" -a \ if ( test -n "`egrep '(^|[^:])//[^\"*]' ${file}`" -a \
'(' -z "`echo ${file}|egrep '(cxx/|\+\+$|\.hh$|\.H$|\.hxx$)'`" ')' '(' -z `echo ${file} | egrep '(cxx|\+\+)/' ` ')'
) > /dev/null 2>&1 ; then ) > /dev/null 2>&1 ; then
fixlist="${fixlist} fixlist="${fixlist}
no_double_slash" no_double_slash"
@ -740,7 +738,7 @@ struct rusage;
then infile=${file} then infile=${file}
else infile=${DESTFILE} ; fi else infile=${DESTFILE} ; fi
sed -e '/\/\/[^"*]/s|//.*$||g' \ sed -e '/\(^|[^:]\)\/\/[^"*]/s|//.*$||g' \
< $infile > ${DESTDIR}/fixinc.tmp < $infile > ${DESTDIR}/fixinc.tmp
rm -f ${DESTFILE} rm -f ${DESTFILE}
mv -f ${DESTDIR}/fixinc.tmp ${DESTFILE} mv -f ${DESTDIR}/fixinc.tmp ${DESTFILE}