1993-07-25 20:00:23 -04:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# SYNOPSIS
|
1993-10-12 18:58:40 -04:00
|
|
|
# fixproto TARGET-DIR SOURCE-DIR-ALL SOURCE-DIR-STD
|
1993-07-25 20:00:23 -04:00
|
|
|
#
|
|
|
|
# COPYRIGHT
|
1994-02-08 19:21:44 -05:00
|
|
|
# Copyright (C) 1993, 1994 Free Software Foundation, Inc.
|
1993-07-25 20:00:23 -04:00
|
|
|
# This file is part of GNU CC.
|
|
|
|
#
|
|
|
|
# GNU CC is free software; you can 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.
|
|
|
|
#
|
|
|
|
# GNU CC 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 GNU CC; see the file COPYING. If not, write to
|
|
|
|
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
#
|
|
|
|
# DESCRIPTION
|
|
|
|
# Adjunct script for GNU CC to populate a directory with ANSI,
|
|
|
|
# Posix.1, and C++ compatible header files.
|
|
|
|
#
|
1993-10-12 18:58:40 -04:00
|
|
|
# Each file found under SOURCE-DIR-ALL is analyzed and "fixed."
|
|
|
|
# Only standard ANSI/POSIX files found under SOURCE-DIR-STD
|
|
|
|
# are analyzed and "fixed."
|
1993-07-25 20:00:23 -04:00
|
|
|
# The SOURCE-DIRs are searched in order; a file found
|
|
|
|
# under multiple SOURCE-DIRs is only handled for the first one.
|
|
|
|
#
|
|
|
|
# STRATEGY
|
|
|
|
# Each include file is fed through cpp, and the scan-decls program
|
|
|
|
# parses it, and emits any found function declarations.
|
1993-10-22 17:50:08 -04:00
|
|
|
# The fix-header program analyzes the scan-decls output,
|
1993-07-25 20:00:23 -04:00
|
|
|
# together with the original include file, and writes a "fixed"
|
|
|
|
# include file, if needed.
|
|
|
|
#
|
1993-10-22 17:50:08 -04:00
|
|
|
# The comment at the beginning of fix-header.c lists specifically
|
1993-07-25 20:00:23 -04:00
|
|
|
# what kind of changes are made.
|
|
|
|
#
|
|
|
|
# NOTE
|
|
|
|
# Some file space will be wasted, because the original header
|
|
|
|
# files are copied. An earlier version just included the original
|
|
|
|
# by "reference", using GNU cpp's #include_next mechanism.
|
|
|
|
# This is currently not done, partly because #include_next is
|
|
|
|
# fragile (susceptible to version incompatibilties, and depends
|
|
|
|
# and GCC-specific features), and partly for performance reasons.
|
|
|
|
#
|
|
|
|
# AUTHORS
|
|
|
|
# Ron Guilmette (rfg@netcom.com) (original idea and code)
|
|
|
|
# Per Bothner (bothner@cygnus.com) (major re-write)
|
|
|
|
|
|
|
|
progname=$0
|
|
|
|
progname=`basename $progname`
|
|
|
|
original_dir=`pwd`
|
|
|
|
CPP=${CPP-./cpp}
|
1993-08-09 21:59:37 -04:00
|
|
|
|
1993-07-25 20:00:23 -04:00
|
|
|
if [ `echo $1 | wc -w` = 0 ] ; then
|
|
|
|
echo $progname\: usage\: $progname target-dir \[ source-dir \.\.\. \]
|
|
|
|
exit 1
|
|
|
|
fi
|
1993-10-12 18:58:40 -04:00
|
|
|
|
|
|
|
std_files="ctype.h dirent.h errno.h curses.h fcntl.h grp.h locale.h math.h pwd.h setjmp.h signal.h stdio.h stdlib.h string.h sys/stat.h sys/times.h sys/resource.h sys/utsname.h sys/wait.h tar.h termios.h time.h unistd.h"
|
|
|
|
|
1993-07-25 20:00:23 -04:00
|
|
|
rel_target_dir=$1
|
1993-10-12 18:58:40 -04:00
|
|
|
# All files in $src_dir_all (normally same as $rel_target_dir) are
|
|
|
|
# processed.
|
|
|
|
src_dir_all=$2
|
|
|
|
# In $src_dir_std (normally same as /usr/include), only the
|
|
|
|
# "standard" ANSI/POSIX files listed in $std_files are processed.
|
|
|
|
src_dir_std=$3
|
1993-07-25 20:00:23 -04:00
|
|
|
|
|
|
|
if [ `expr $rel_target_dir : '\(.\)'` != '/' ] ; then
|
|
|
|
abs_target_dir=$original_dir/$rel_target_dir
|
|
|
|
else
|
|
|
|
abs_target_dir=$rel_target_dir
|
|
|
|
fi
|
|
|
|
|
1993-08-09 21:59:37 -04:00
|
|
|
# Determine whether this system has symbolic links.
|
|
|
|
if ln -s X $rel_target_dir/ShouldNotExist 2>/dev/null; then
|
|
|
|
rm -f $rel_target_dir/ShouldNotExist
|
|
|
|
LINKS=true
|
|
|
|
elif ln -s X /tmp/ShouldNotExist 2>/dev/null; then
|
|
|
|
rm -f /tmp/ShouldNotExist
|
|
|
|
LINKS=true
|
|
|
|
else
|
|
|
|
LINKS=false
|
|
|
|
fi
|
|
|
|
|
1993-07-25 20:00:23 -04:00
|
|
|
if [ \! -d $abs_target_dir ] ; then
|
|
|
|
echo $progname\: creating directory $rel_target_dir
|
|
|
|
mkdir $abs_target_dir
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo $progname\: populating \`$rel_target_dir\'
|
|
|
|
|
|
|
|
include_path=""
|
|
|
|
|
|
|
|
if [ `echo $* | wc -w` != 0 ] ; then
|
1993-10-12 18:58:40 -04:00
|
|
|
for rel_source_dir in $src_dir_all $src_dir_std; do
|
1993-07-25 20:00:23 -04:00
|
|
|
if [ `expr $rel_source_dir : '\(.\)'` != '/' ] ; then
|
|
|
|
abs_source_dir=$original_dir/$rel_source_dir
|
|
|
|
else
|
|
|
|
abs_source_dir=$rel_source_dir
|
|
|
|
fi
|
|
|
|
include_path="$include_path -I$abs_source_dir"
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
1993-08-09 21:59:37 -04:00
|
|
|
required_stdlib_h="abort abs atexit atof atoi atol bsearch calloc exit free getenv labs malloc qsort rand realloc srand strtod strtol strtoul system"
|
|
|
|
# "div ldiv", - ignored because these depend on div_t, ldiv_t
|
|
|
|
# ignore these: "mblen mbstowcs mbstowc wcstombs wctomb"
|
1993-12-22 14:31:24 -05:00
|
|
|
# Left out getgroups, because SunOS4 has incompatible BSD and SVR4 versions.
|
1993-08-09 21:59:37 -04:00
|
|
|
# Should perhaps also add NULL
|
1993-12-22 14:31:24 -05:00
|
|
|
required_unistd_h="_exit access alarm chdir chown close ctermid cuserid dup dup2 execl execle execlp execv execve execvp fork fpathconf getcwd getegid geteuid getgid getlogin getpgrp getpid getppid getuid isatty link lseek pathconf pause pipe read rmdir setgid setpgid setsid setuid sleep sysconf tcgetpgrp tcsetpgrp ttyname unlink write"
|
1993-08-09 21:59:37 -04:00
|
|
|
|
1993-07-25 20:00:23 -04:00
|
|
|
done_dirs=""
|
1993-08-09 21:59:37 -04:00
|
|
|
echo "" >fixproto.list
|
1993-07-25 20:00:23 -04:00
|
|
|
|
1993-10-12 18:58:40 -04:00
|
|
|
for code in ALL STD ; do
|
|
|
|
|
|
|
|
subdirs="."
|
|
|
|
|
|
|
|
case $code in
|
|
|
|
ALL)
|
|
|
|
rel_source_dir=$src_dir_all
|
1993-08-09 21:59:37 -04:00
|
|
|
|
1993-10-12 18:58:40 -04:00
|
|
|
dirs="."
|
|
|
|
levels=2
|
|
|
|
while $LINKS && test -n "$dirs" -a $levels -gt 0
|
|
|
|
do
|
|
|
|
levels=`expr $levels - 1`
|
|
|
|
newdirs=
|
|
|
|
for d in $dirs ; do
|
|
|
|
# Find all directories under $d, relative to $d, excluding $d itself.
|
1993-11-05 02:51:14 -05:00
|
|
|
# Assume directory names ending in CC or containing ++ are
|
|
|
|
# for C++, so skip those.
|
1993-10-12 18:58:40 -04:00
|
|
|
subdirs="$subdirs "`cd $rel_source_dir/$d; find . -type d -print | \
|
1993-11-05 02:51:14 -05:00
|
|
|
sed -e '/^\.$/d' -e "s|^\./|${d}/|" -e 's|^\./||' \
|
|
|
|
-e '/CC$/d' -e '/\+\+/d'`
|
1993-10-12 18:58:40 -04:00
|
|
|
links=
|
|
|
|
links=`cd $rel_source_dir; find $d/. -type l -print | \
|
1993-08-09 21:59:37 -04:00
|
|
|
sed -e "s|$d/./|$d/|" -e 's|^\./||'`
|
1993-10-12 18:58:40 -04:00
|
|
|
for link in $links --dummy-- ; do
|
|
|
|
test -d $rel_source_dir/$link/. && newdirs="$newdirs $link"
|
|
|
|
done
|
1993-08-09 21:59:37 -04:00
|
|
|
done
|
1993-10-12 18:58:40 -04:00
|
|
|
dirs="$newdirs"
|
|
|
|
subdirs="$subdirs $newdirs"
|
1993-07-25 20:00:23 -04:00
|
|
|
done
|
1993-10-12 18:58:40 -04:00
|
|
|
;;
|
|
|
|
STD)
|
|
|
|
rel_source_dir=$src_dir_std
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
if [ `expr $rel_source_dir : '\(.\)'` != '/' ] ; then
|
|
|
|
abs_source_dir=$original_dir/$rel_source_dir
|
|
|
|
else
|
|
|
|
abs_source_dir=$rel_source_dir
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ \! -d $abs_source_dir ] ; then
|
|
|
|
echo $progname\: warning\: no such directory\: \`$rel_source_dir\'
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
for rel_source_subdir in $subdirs; do
|
1993-08-09 21:59:37 -04:00
|
|
|
|
|
|
|
abs_target_subdir=${abs_target_dir}/${rel_source_subdir}
|
|
|
|
if [ \! -d $abs_target_subdir ] ; then
|
|
|
|
mkdir $abs_target_subdir
|
|
|
|
fi
|
|
|
|
# Append "/"; remove initial "./". Hence "." -> "" and "sys" -> "sys/".
|
|
|
|
rel_source_prefix=`echo $rel_source_subdir | sed -e 's|$|/|' -e 's|^./||'`
|
1993-07-25 20:00:23 -04:00
|
|
|
|
1993-10-12 18:58:40 -04:00
|
|
|
case $code in
|
|
|
|
ALL)
|
|
|
|
# The 'sed' is in case the *.h matches nothing, which yields "*.h"
|
|
|
|
# which would then get re-globbed in the current directory. Sigh.
|
|
|
|
rel_source_files=`cd ${abs_source_dir}/${rel_source_subdir}; echo *.h | sed -e 's|[*].h|NONE|'`
|
|
|
|
;;
|
|
|
|
|
|
|
|
STD)
|
|
|
|
files_to_check="$std_files"
|
|
|
|
rel_source_files=""
|
|
|
|
|
|
|
|
# Also process files #included by the $std_files.
|
|
|
|
while [ -n "${files_to_check}" ]
|
|
|
|
do
|
|
|
|
new_files_to_check=""
|
|
|
|
for file in $files_to_check ; do
|
1993-11-11 06:01:01 -05:00
|
|
|
xxfile=`echo $file | sed -e 's|/\([^/\.][^/\.]*\)/\.\./|/|'`
|
1993-11-27 06:11:23 -05:00
|
|
|
# Create the dir where this file will go when fixed.
|
|
|
|
xxdir=`echo ./$file | sed -e 's|/[^/]*$||'`
|
|
|
|
if [ \! -d $abs_target_subdir/$xxdir ] ; then
|
|
|
|
mkdir $abs_target_subdir/$xxdir
|
|
|
|
fi
|
1993-11-11 06:01:01 -05:00
|
|
|
# Just in case we have edited out a symbolic link
|
|
|
|
if [ -f $src_dir_std/$file -a -f $src_dir_std/$xxfile ] ; then
|
|
|
|
file=$xxfile
|
|
|
|
fi
|
1993-10-12 18:58:40 -04:00
|
|
|
case " $rel_source_files " in
|
|
|
|
*" ${file} "*)
|
|
|
|
# Already seen $file; nothing to do
|
|
|
|
;;
|
|
|
|
*)
|
1993-11-03 03:14:02 -05:00
|
|
|
if test -f $src_dir_std/$file ; then
|
|
|
|
rel_dir=`echo $file | sed -n -e 's|^\(.*/\)[^/]*$|\1|p'`
|
|
|
|
# For #include "foo.h", that might be either "foo.h"
|
|
|
|
# or "${rel_dir}foo.h (or something bogus).
|
|
|
|
new_files_to_check="$new_files_to_check "`sed -n \
|
1993-10-12 18:58:40 -04:00
|
|
|
-e 's@ @ @g' \
|
1993-11-03 03:14:02 -05:00
|
|
|
-e 's@^ *# *include *<\([^>]*\)>.*$@\1@p' -e \
|
|
|
|
's@^ *# *include *\"\([^\"]*\)\".*$@\1 '$rel_dir'\1@p'\
|
|
|
|
<$src_dir_std/$file`
|
|
|
|
rel_source_files="$rel_source_files $file"
|
|
|
|
fi
|
1993-10-12 18:58:40 -04:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
files_to_check="$new_files_to_check"
|
|
|
|
done
|
|
|
|
rel_source_files="$rel_source_files"
|
|
|
|
;;
|
|
|
|
esac
|
1993-07-25 20:00:23 -04:00
|
|
|
|
1993-08-09 21:59:37 -04:00
|
|
|
for filename in $rel_source_files ; do
|
|
|
|
rel_source_file=${rel_source_prefix}${filename}
|
1993-07-25 20:00:23 -04:00
|
|
|
abs_source_file=$abs_source_dir/$rel_source_file
|
|
|
|
abs_target_file=$abs_target_dir/$rel_source_file
|
|
|
|
|
1993-08-09 21:59:37 -04:00
|
|
|
if test "$filename" = 'NONE' ; then
|
|
|
|
echo "(No *.h files in $abs_source_dir/$rel_source_subdir)"
|
1993-07-25 20:00:23 -04:00
|
|
|
# If target file exists, check if was written while processing one
|
|
|
|
# of the earlier source directories; if so ignore it.
|
1993-08-09 21:59:37 -04:00
|
|
|
elif test -f $abs_target_file -a -n "$done_dirs" \
|
|
|
|
&& grep "$rel_source_file" fixproto.list >/dev/null
|
|
|
|
then true
|
1993-07-25 20:00:23 -04:00
|
|
|
else
|
|
|
|
# echo doing $rel_source_file from $abs_source_dir
|
1993-08-09 21:59:37 -04:00
|
|
|
required_list=
|
|
|
|
extra_check_list=
|
|
|
|
case $rel_source_file in
|
|
|
|
ctype.h)
|
|
|
|
required_list="isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper" ;;
|
|
|
|
dirent.h)
|
|
|
|
required_list="closedir opendir readdir rewinddir" ;;
|
|
|
|
errno.h)
|
|
|
|
extra_check_list="errno" ;;
|
|
|
|
curses.h)
|
|
|
|
required_list="box delwin endwin getcurx getcury initscr mvcur mvwprintw mvwscanw newwin overlay overwrite scroll subwin touchwin waddstr wclear wclrtobot wclrtoeol waddch wdelch wdeleteln werase wgetch wgetstr winsch winsertln wmove wprintw wrefresh wscanw wstandend wstandout" ;;
|
|
|
|
fcntl.h)
|
|
|
|
required_list="creat fcntl open" ;;
|
|
|
|
grp.h)
|
|
|
|
#Maybe also "getgrent fgetgrent setgrent endgrent" */
|
|
|
|
required_list="getgrgid getgrnam" ;;
|
|
|
|
limit.h)
|
|
|
|
required_list= /* Lots of macros */ ;;
|
|
|
|
locale.h)
|
|
|
|
required_list="localeconv setlocale" ;;
|
|
|
|
math.h)
|
|
|
|
required_list="acos asin atan atan2 ceil cos cosh exp fabs floor fmod frexp ldexp log10 log modf pow sin sinh sqrt tan tanh"
|
|
|
|
extra_check_list="HUGE_VAL" ;;
|
|
|
|
pwd.h)
|
|
|
|
required_list="getpwnam getpwuid" ;;
|
|
|
|
setjmp.h)
|
1993-11-01 22:21:17 -05:00
|
|
|
# Left out siglongjmp sigsetjmp - these depend on sigjmp_buf.
|
|
|
|
required_list="longjmp setjmp" ;;
|
1993-08-09 21:59:37 -04:00
|
|
|
signal.h)
|
|
|
|
# Left out signal() - its prototype is too complex for us!
|
1993-10-26 02:52:18 -04:00
|
|
|
# Also left out "sigaction sigaddset sigdelset sigemptyset
|
|
|
|
# sigfillset sigismember sigpending sigprocmask sigsuspend"
|
|
|
|
# because these need sigset_t or struct sigaction.
|
|
|
|
# Most systems that provide them will also declare them.
|
|
|
|
required_list="kill raise" ;;
|
1993-08-09 21:59:37 -04:00
|
|
|
stdio.h)
|
1993-11-21 05:11:51 -05:00
|
|
|
required_list="clearerr fclose feof ferror fflush fgetc fgetpos fgets fopen fprintf fputc fputs fread freopen fscanf fseek fsetpos ftell fwrite getc getchar gets perror printf putc putchar puts remove rename rewind scanf setbuf setvbuf sprintf sscanf vprintf vsprintf vfprintf tmpfile tmpnam ungetc"
|
1993-11-03 03:14:02 -05:00
|
|
|
if grep '[^_a-zA-Z0-9]_flsbuf' <$abs_source_file >/dev/null; then
|
1993-08-09 21:59:37 -04:00
|
|
|
required_list="$required_list _flsbuf _filbuf"
|
|
|
|
fi
|
|
|
|
# Should perhaps also handle NULL, EOF, ... ?
|
|
|
|
;;
|
|
|
|
stdlib.h)
|
|
|
|
required_list="$required_stdlib_h" ;;
|
|
|
|
string.h)
|
|
|
|
required_list="memchr memcmp memcpy memmove memset strcat strchr strcmp strcoll strcpy strcspn strerror strlen strncat strncmp" ;;
|
|
|
|
# Should perhaps also add NULL and size_t
|
|
|
|
sys/stat.h)
|
1994-02-05 07:05:24 -05:00
|
|
|
required_list="chmod fstat mkdir mkfifo stat lstat umask"
|
1993-08-09 21:59:37 -04:00
|
|
|
extra_check_list="S_ISDIR S_ISBLK S_ISCHR S_ISFIFO S_ISREG S_ISLNK S_IFDIR S_IFBLK S_IFCHR S_IFIFO S_IFREG S_IFLNK" ;;
|
|
|
|
sys/times.h)
|
|
|
|
required_list="times" ;;
|
|
|
|
# "sys/types.h" add types (not in old g++-include)
|
|
|
|
sys/utsname.h)
|
|
|
|
required_list="uname" ;;
|
|
|
|
sys/wait.h)
|
|
|
|
required_list="wait waitpid"
|
|
|
|
extra_check_list="WEXITSTATUS WIFEXITED WIFSIGNALED WIFSTOPPED WSTOPSIG WTERMSIG WNOHANG WNOTRACED" ;;
|
|
|
|
tar.h)
|
|
|
|
required_list= ;;
|
|
|
|
termios.h)
|
|
|
|
required_list="cfgetispeed cfgetospeed cfsetispeed cfsetospeed tcdrain tcflow tcflush tcgetattr tcsendbreak tcsetattr" ;;
|
|
|
|
time.h)
|
|
|
|
required_list="asctime clock ctime difftime gmtime localtime mktime strftime time tzset" ;;
|
|
|
|
unistd.h)
|
|
|
|
required_list="$required_unistd_h" ;;
|
|
|
|
esac
|
|
|
|
rm -f fixtmp.c fixtmp.i
|
|
|
|
echo "#include <${rel_source_file}>" >fixtmp.c
|
1993-07-25 20:00:23 -04:00
|
|
|
for macro in ${required_list} ${extra_check_list}
|
|
|
|
do
|
1993-08-09 21:59:37 -04:00
|
|
|
echo "#ifdef ${macro}" >>fixtmp.c
|
|
|
|
echo "__DEFINED_MACRO_${macro};" >>fixtmp.c
|
|
|
|
echo "#endif" >>fixtmp.c
|
1993-07-25 20:00:23 -04:00
|
|
|
done
|
1993-08-09 21:59:37 -04:00
|
|
|
if ${CPP} -D__STDC__ -D__cplusplus -D_POSIX_SOURCE $include_path fixtmp.c >fixtmp.i 2>/dev/null
|
1993-07-25 20:00:23 -04:00
|
|
|
then
|
1993-10-22 17:50:08 -04:00
|
|
|
$original_dir/fix-header $rel_source_file $abs_source_file $abs_target_file "$required_list" <fixtmp.i
|
1993-07-25 20:00:23 -04:00
|
|
|
else
|
1993-08-09 21:59:37 -04:00
|
|
|
echo "${progname}: cpp could not parse ${abs_source_file} (ignored)"
|
1993-07-25 20:00:23 -04:00
|
|
|
fi
|
1993-08-09 21:59:37 -04:00
|
|
|
echo "${rel_source_file}" >>fixproto.list
|
1993-07-25 20:00:23 -04:00
|
|
|
fi
|
|
|
|
done
|
1993-08-09 21:59:37 -04:00
|
|
|
rm -f fixtmp.c fixtmp.i
|
|
|
|
done
|
1993-07-25 20:00:23 -04:00
|
|
|
# check for broken assert.h that needs stdio.h
|
1994-02-08 19:21:44 -05:00
|
|
|
if test -f $abs_source_dir/assert.h -a \! -f $abs_target_dir/assert.h; then
|
|
|
|
if grep 'stderr' $abs_source_dir/assert.h >/dev/null ; then
|
|
|
|
if grep 'include.*stdio.h' $abs_source_dir/assert.h >/dev/null ; then
|
|
|
|
true
|
|
|
|
else
|
|
|
|
echo 'Fixing broken assert.h (needs stdio.h)'
|
|
|
|
cat $abs_source_dir/assert.h >$abs_target_dir/assert.h
|
|
|
|
echo '#include <stdio.h>' >>$abs_target_dir/assert.h
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if grep 'exit *(' $abs_source_dir/assert.h >/dev/null ||
|
|
|
|
grep 'abort *(' $abs_source_dir/assert.h >/dev/null ; then
|
|
|
|
if grep 'include.*stdlib.h' $abs_source_dir/assert.h >/dev/null ; then
|
|
|
|
true
|
|
|
|
else
|
|
|
|
echo 'Fixing broken assert.h (needs stdlib.h)'
|
|
|
|
if test ! -f $abs_target_dir/assert.h ; then
|
|
|
|
cat $abs_source_dir/assert.h >$abs_target_dir/assert.h
|
|
|
|
fi
|
|
|
|
echo '#include <stdlib.h>' >>$abs_target_dir/assert.h
|
|
|
|
fi
|
1993-07-25 20:00:23 -04:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done_dirs="$done_dir $rel_source_dir"
|
1993-10-12 18:58:40 -04:00
|
|
|
done
|
1993-07-25 20:00:23 -04:00
|
|
|
|
1993-08-09 21:59:37 -04:00
|
|
|
# This might be more cleanly moved into the main loop, by adding
|
|
|
|
# a <dummy> source directory at the end. FIXME!
|
1993-07-25 20:00:23 -04:00
|
|
|
for rel_source_file in unistd.h stdlib.h
|
|
|
|
do
|
1993-08-09 21:59:37 -04:00
|
|
|
if grep "$rel_source_file" fixproto.list >/dev/null
|
1993-07-25 20:00:23 -04:00
|
|
|
then true
|
|
|
|
else
|
|
|
|
echo Adding missing $rel_source_file
|
1993-08-09 21:59:37 -04:00
|
|
|
rel_source_ident=`echo $rel_source_file | tr ./ __`
|
1993-07-25 20:00:23 -04:00
|
|
|
required_list=`eval echo '${required_'${rel_source_ident}'-}'`
|
|
|
|
cat >tmp.h <<EOF
|
|
|
|
#ifndef ${rel_source_ident}
|
|
|
|
#define ${rel_source_ident}
|
|
|
|
#endif
|
|
|
|
EOF
|
1993-10-22 17:50:08 -04:00
|
|
|
$original_dir/fix-header $rel_source_file tmp.h $abs_target_dir/$rel_source_file "$required_list" </dev/null
|
1993-07-25 20:00:23 -04:00
|
|
|
rm tmp.h
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
exit 0
|