📄 inclhack.sh
字号:
#!/bin/sh## DO NOT EDIT THIS FILE - it has been generated## 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 script contains 103 fixup scripts.## See README-fixinc for more information.## fixincludes copyright (c) 1999 The Free Software Foundation, Inc.## fixincludes 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.# # fixincludes 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 fixincludes. See the file "COPYING". If not,# write to: The Free Software Foundation, Inc.,# 59 Temple Place - Suite 330,# Boston, MA 02111-1307, USA.## # # # # # # # # # # # # # # # # # # # ### Directory in which to store the results.# Fail if no arg to specify a directory for the output.if [ "x$1" = "x" ]then echo fixincludes: no output directory specifiedexit 1fiLIB=${1}shift# Make sure it exists.if [ ! -d $LIB ]; then mkdir $LIB || { echo fixincludes: output dir '`'$LIB"' cannot be created" exit 1 }else ( cd $LIB && touch DONE && rm DONE ) || { echo fixincludes: output dir '`'$LIB"' is an invalid directory" exit 1 }fi# Define what target system we're fixing.#if test -r ./Makefile; then target_canonical="`sed -n -e 's,^target[ ]*=[ ]*\(.*\)$,\1,p' < Makefile`"fi# If not from the Makefile, then try config.guess#if test -z "${target_canonical}" ; then if test -x ./config.guess ; then target_canonical="`config.guess`" ; fi test -z "${target_canonical}" && target_canonical=unknownfiexport target_canonical# # # # # # # # # # # # # # # # # # # # ### Define PWDCMD as a command to use to get the working dir# in the form that we want.PWDCMD=pwdcase "`$PWDCMD`" in//*) # On an Apollo, discard everything before `/usr'. PWDCMD="eval pwd | sed -e 's,.*/usr/,/usr/,'" ;;esac# Original directory.ORIGDIR=`${PWDCMD}`# Make LIB absolute only if needed to avoid problems with the amd.case $LIB in/*) ;;*) cd $LIB; LIB=`${PWDCMD}` ;;esacecho Fixing headers into ${LIB} for ${target_canonical} target# Determine whether this system has symbolic links.if ln -s X $LIB/ShouldNotExist 2>/dev/null; then rm -f $LIB/ShouldNotExist LINKS=trueelif ln -s X /tmp/ShouldNotExist 2>/dev/null; then rm -f /tmp/ShouldNotExist LINKS=trueelse LINKS=falsefi# # # # # # # # # # # # # # # # # # # # ### Search each input directory for broken header files.# This loop ends near the end of the file.#if test $# -eq 0then INPUTLIST="/usr/include"else INPUTLIST="$@"fifor INPUT in ${INPUTLIST} ; docd ${ORIGDIR}# This originally used cd || continue, however, that does not work with the# Solaris2 /bin/sh.if [ ! -d ${INPUT} ]; then continueficd ${INPUT}INPUT=`${PWDCMD}`## # # # # # # # # # # # # # # # # # # # ##echo Finding directories and links to directories# Find all directories and all symlinks that point to directories.# Put the list in $all_dirs.# Each time we find a symlink, add it to newdirs# so that we do another find within the dir the link points to.# Note that $all_dirs may have duplicates in it;# later parts of this file are supposed to ignore them.dirs="."levels=2all_dirs=""search_dirs=""while [ -n "$dirs" ] && [ $levels -gt 0 ]do levels=`expr $levels - 1` newdirs= for d in $dirs do echo " Searching $INPUT/$d" # Find all directories under $d, relative to $d, excluding $d itself. # (The /. is needed after $d in case $d is a symlink.) all_dirs="$all_dirs `find $d/. -type d -print | \ sed -e '/\/\.$/d' -e 's@/./@/@g'`" # Find all links to directories. # Using `-exec test -d' in find fails on some systems, # and trying to run test via sh fails on others, # so this is the simplest alternative left. # First find all the links, then test each one. theselinks= $LINKS && \ theselinks=`find $d/. -type l -print | sed -e 's@/./@/@g'` for d1 in $theselinks --dummy-- do # If the link points to a directory, # add that dir to $newdirs if [ -d $d1 ] then all_dirs="$all_dirs $d1" if [ "`ls -ld $d1 | sed -n 's/.*-> //p'`" != "." ] then newdirs="$newdirs $d1" search_dirs="$search_dirs $d1" fi fi done done dirs="$newdirs"done# # # # # # # # # # # # # # # # # # # # ##dirs=echo "All directories (including links to directories):"echo $all_dirsfor file in $all_dirs; do rm -rf $LIB/$file if [ ! -d $LIB/$file ] then mkdir $LIB/$file fidonemkdir $LIB/root# # # # # # # # # # # # # # # # # # # # ### treetops gets an alternating list# of old directories to copy# and the new directories to copy to.treetops=". ${LIB}"if $LINKS; then echo 'Making symbolic directory links' cwd=`${PWDCMD}` for sym_link in $search_dirs; do cd ${INPUT} dest=`ls -ld ${sym_link} | sed -n 's/.*-> //p'` # In case $dest is relative, get to ${sym_link}'s dir first. # cd ./`echo ${sym_link} | sed 's;/[^/]*$;;'` # Check that the target directory exists. # Redirections changed to avoid bug in sh on Ultrix. # (cd $dest) > /dev/null 2>&1 if [ $? = 0 ]; then cd $dest # full_dest_dir gets the dir that the link actually leads to. # full_dest_dir=`${PWDCMD}` # Canonicalize ${INPUT} now to minimize the time an # automounter has to change the result of ${PWDCMD}. # cinput=`cd ${INPUT}; ${PWDCMD}` # If a link points to ., make a similar link to . # if [ ${full_dest_dir} = ${cinput} ]; then echo ${sym_link} '->' . ': Making self link' rm -fr ${LIB}/${sym_link} > /dev/null 2>&1 ln -s . ${LIB}/${sym_link} > /dev/null 2>&1 # If link leads back into ${INPUT}, # make a similar link here. # elif expr ${full_dest_dir} : "${cinput}/.*" > /dev/null; then # Y gets the actual target dir name, relative to ${INPUT}. y=`echo ${full_dest_dir} | sed -n "s&${cinput}/&&p"` # DOTS is the relative path from ${LIB}/${sym_link} back to ${LIB}. dots=`echo "${sym_link}" | sed -e 's@^./@@' -e 's@/./@/@g' -e 's@[^/][^/]*@..@g' -e 's@..$@@'` echo ${sym_link} '->' $dots$y ': Making local link' rm -fr ${LIB}/${sym_link} > /dev/null 2>&1 ln -s $dots$y ${LIB}/${sym_link} > /dev/null 2>&1 else # If the link is to a dir $target outside ${INPUT}, # repoint the link at ${INPUT}/root$target # and process $target into ${INPUT}/root$target # treat this directory as if it actually contained the files. # echo ${sym_link} '->' root${full_dest_dir} ': Making rooted link' if [ -d $LIB/root${full_dest_dir} ] then true else dirname=root${full_dest_dir}/ dirmade=. cd $LIB while [ x$dirname != x ]; do component=`echo $dirname | sed -e 's|/.*$||'` mkdir $component >/dev/null 2>&1 cd $component dirmade=$dirmade/$component dirname=`echo $dirname | sed -e 's|[^/]*/||'` done fi # Duplicate directory structure created in ${LIB}/${sym_link} in new # root area. # for file2 in $all_dirs; do case $file2 in ${sym_link}/*) dupdir=${LIB}/root${full_dest_dir}/`echo $file2 | sed -n "s|^${sym_link}/||p"` echo "Duplicating ${sym_link}'s ${dupdir}" if [ -d ${dupdir} ] then true else mkdir ${dupdir} fi ;; *) ;; esac done # Get the path from ${LIB} to ${sym_link}, accounting for symlinks. # parent=`echo "${sym_link}" | sed -e 's@/[^/]*$@@'` libabs=`cd ${LIB}; ${PWDCMD}` file2=`cd ${LIB}; cd $parent; ${PWDCMD} | sed -e "s@^${libabs}@@"` # DOTS is the relative path from ${LIB}/${sym_link} back to ${LIB}. # dots=`echo "$file2" | sed -e 's@/[^/]*@../@g'` rm -fr ${LIB}/${sym_link} > /dev/null 2>&1 ln -s ${dots}root${full_dest_dir} ${LIB}/${sym_link} > /dev/null 2>&1 treetops="$treetops ${sym_link} ${LIB}/root${full_dest_dir}" fi fi donefi# # # # # # # # # # # # # # # # # # # # ##required=set x $treetopsshiftwhile [ $# != 0 ]; do # $1 is an old directory to copy, and $2 is the new directory to copy to. # SRCDIR=`cd ${INPUT} ; cd $1 ; ${PWDCMD}` export SRCDIR FIND_BASE=$1 export FIND_BASE shift DESTDIR=`cd $1;${PWDCMD}` export DESTDIR shift # The same dir can appear more than once in treetops. # There's no need to scan it more than once. # if [ -f ${DESTDIR}/DONE ] then continue ; fi touch ${DESTDIR}/DONE echo Fixing directory ${SRCDIR} into ${DESTDIR} # Check files which are symlinks as well as those which are files. # cd ${INPUT} files=`if $LINKS; then find ${FIND_BASE}/. -name '*.h' \( -type f -o -type l \) -print else find ${FIND_BASE}/. -name '*.h' -type f -print fi | \ sed -e 's;/\./;/;g' -e 's;//*;/;g' ` echo Checking header files for file in $files; do # Skip unreadable files, symlinks to directories and glibc files if test ! -r "${file}" || test -d "${file}/." \ || fgrep 'This file is part of the GNU C Library' "${file}" \ > /dev/null 2>&1; then continue fi fixlist="" DESTFILE=${DESTDIR}/`echo ${file} | sed "s;${FIND_BASE}/;;" ` # # Fix 1: Aix_Syswait # case "${file}" in ./sys/wait.h ) if ( test -n "`egrep 'bos325,' ${file}`" ) > /dev/null 2>&1 ; then fixlist="${fixlist} aix_syswait" if [ ! -r ${DESTFILE} ] then infile=${file} else infile=${DESTFILE} ; fi sed -e '/^extern pid_t wait3();$/i\struct rusage;' \ < $infile > ${DESTDIR}/fixinc.tmp rm -f ${DESTFILE} mv -f ${DESTDIR}/fixinc.tmp ${DESTFILE} fi # end of selection 'if' ;; # case end for file name test esac # # Fix 2: Aix_Volatile # case "${file}" in ./sys/signal.h ) if ( test -n "`egrep 'typedef volatile int sig_atomic_t' ${file}`" ) > /dev/null 2>&1 ; then fixlist="${fixlist} aix_volatile" if [ ! -r ${DESTFILE} ] then infile=${file} else infile=${DESTFILE} ; fi sed -e 's/typedef volatile int sig_atomic_t/typedef int sig_atomic_t/' \ < $infile > ${DESTDIR}/fixinc.tmp rm -f ${DESTFILE} mv -f ${DESTDIR}/fixinc.tmp ${DESTFILE} fi # end of selection 'if' ;; # case end for file name test esac # # Fix 3: Alpha_Getopt # case "${file}" in ./stdio.h | \ ./stdlib.h ) if ( test -n "`egrep 'getopt\\(int, char \\*\\[' ${file}`" ) > /dev/null 2>&1 ; then fixlist="${fixlist} alpha_getopt" if [ ! -r ${DESTFILE} ] then infile=${file} else infile=${DESTFILE} ; fi sed -e 's/getopt(int, char \*\[\],[ ]*char \*)/getopt(int, char *const[], const char *)/' \ < $infile > ${DESTDIR}/fixinc.tmp rm -f ${DESTFILE} mv -f ${DESTDIR}/fixinc.tmp ${DESTFILE} fi # end of selection 'if' ;; # case end for file name test esac # # Fix 4: Alpha_Parens # case "${file}" in ./sym.h ) if ( test -n "`egrep '#ifndef\\(__mips64\\)' ${file}`" ) > /dev/null 2>&1 ; then fixlist="${fixlist} alpha_parens" if [ ! -r ${DESTFILE} ] then infile=${file} else infile=${DESTFILE} ; fi sed -e 's/#ifndef(__mips64)/#ifndef __mips64/' \ < $infile > ${DESTDIR}/fixinc.tmp rm -f ${DESTFILE} mv -f ${DESTDIR}/fixinc.tmp ${DESTFILE} fi # end of selection 'if' ;; # case end for file name test esac # # Fix 5: Alpha_Sbrk # case "${file}" in ./unistd.h ) if ( test -n "`egrep 'char[ ]*\\*[ ]*sbrk[ ]*\\(' ${file}`" ) > /dev/null 2>&1 ; then fixlist="${fixlist} alpha_sbrk" if [ ! -r ${DESTFILE} ] then infile=${file} else infile=${DESTFILE} ; fi sed -e 's/char\([ ]*\*[ ]*sbrk[ ]*(\)/void\1/' \ < $infile > ${DESTDIR}/fixinc.tmp rm -f ${DESTFILE} mv -f ${DESTDIR}/fixinc.tmp ${DESTFILE} fi # end of selection 'if' ;; # case end for file name test esac # # Fix 6: Arm_Norcroft_Hint # case "${file}" in ./X11/Intrinsic.h ) if ( test -n "`egrep '___type p_type' ${file}`" ) > /dev/null 2>&1 ; then fixlist="${fixlist} arm_norcroft_hint" if [ ! -r ${DESTFILE} ] then infile=${file} else infile=${DESTFILE} ; fi sed -e 's/___type p_type/p_type/' \ < $infile > ${DESTDIR}/fixinc.tmp rm -f ${DESTFILE} mv -f ${DESTDIR}/fixinc.tmp ${DESTFILE} fi # end of selection 'if' ;; # case end for file name test esac # # Fix 7: Arm_Wchar # case "${file}" in ./stdlib.h )
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -