3 # fixinc.sco -- Install modified versions of SCO system include
6 # Based on fixinc.svr4 script by Ron Guilmette (rfg@ncd.com) (SCO
7 # modifications by Ian Lance Taylor (ian@airs.com)).
9 # Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
11 # This file is part of GNU CC.
13 # GNU CC is free software; you can redistribute it and/or modify
14 # it under the terms of the GNU General Public License as published by
15 # the Free Software Foundation; either version 2, or (at your option)
18 # GNU CC is distributed in the hope that it will be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 # GNU General Public License for more details.
23 # You should have received a copy of the GNU General Public License
24 # along with GNU CC; see the file COPYING. If not, write to
25 # the Free Software Foundation, 59 Temple Place - Suite 330,
26 # Boston, MA 02111-1307, USA.
28 # This script munges the native include files provided with SCO
29 # 3.2v4 systems so as to provide a reasonable namespace when
30 # compiling with gcc. The header files by default do not
31 # provide many essential definitions and declarations if
32 # __STDC__ is 1. This script modifies the header files to check
33 # for __STRICT_ANSI__ being defined instead. Once munged, the
34 # resulting new system include files are placed in a directory
35 # that GNU C will search *before* searching the /usr/include
36 # directory. This script should work properly for most SCO
37 # 3.2v4 systems. For other types of systems, you should use the
38 # `fixincludes' or the `fixinc.svr4' script instead.
40 # See README-fixinc for more information.
42 # Directory containing the original header files.
43 INPUT=${2-${INPUT-/usr/include}}
45 # Fail if no arg to specify a directory for the output.
47 then echo fixincludes: no output directory specified
51 # Directory in which to store the results.
52 LIB=${1?"fixincludes: output directory not specified"}
54 # Make sure it exists.
55 if [ ! -d $LIB ]; then
61 # Make LIB absolute if it is relative.
62 # Don't do this if not necessary, since may screw up automounters.
67 cd $LIB; LIB=`${PWDCMD-pwd}`
71 echo 'Building fixincludes in ' ${LIB}
73 # Determine whether this filesystem has symbolic links.
74 if ln -s X $LIB/ShouldNotExist 2>/dev/null; then
75 rm -f $LIB/ShouldNotExist
81 echo 'Making directories:'
84 files=`ls -LR | sed -n s/:$//p`
86 files=`find . -type d -print | sed '/^.$/d'`
88 for file in $files; do
90 if [ ! -d $LIB/$file ]
95 # treetops gets an alternating list
96 # of old directories to copy
97 # and the new directories to copy to.
98 treetops="${INPUT} ${LIB}"
101 echo 'Making internal symbolic directory links'
102 for file in $files; do
103 dest=`ls -ld $file | sed -n 's/.*-> //p'`
106 # In case $dest is relative, get to $file's dir first.
108 cd `echo ./$file | sed -n 's&[^/]*$&&p'`
109 # Check that the target directory exists.
110 # Redirections changed to avoid bug in sh on Ultrix.
111 (cd $dest) > /dev/null 2>&1
114 # X gets the dir that the link actually leads to.
116 # If link leads back into ${INPUT},
117 # make a similar link here.
118 if expr $x : "${INPUT}/.*" > /dev/null; then
119 # Y gets the actual target dir name, relative to ${INPUT}.
120 y=`echo $x | sed -n "s&${INPUT}/&&p"`
121 echo $file '->' $y ': Making link'
122 rm -fr ${LIB}/$file > /dev/null 2>&1
123 ln -s ${LIB}/$y ${LIB}/$file > /dev/null 2>&1
125 # If the link is to outside ${INPUT},
126 # treat this directory as if it actually contained the files.
127 # This line used to have $dest instead of $x.
128 # $dest seemed to be wrong for links found in subdirectories
129 # of ${INPUT}. Does this change break anything?
130 treetops="$treetops $x ${LIB}/$file"
139 while [ $# != 0 ]; do
140 # $1 is an old directory to copy, and $2 is the new directory to copy to.
141 echo "Finding header files in $1:"
144 files=`find . -name '*.h' -type f -print`
145 echo 'Checking header files:'
146 for file in $files; do
147 if egrep '!__STDC__' $file >/dev/null; then
148 if [ -r $file ]; then
149 cp $file $2/$file >/dev/null 2>&1 || echo "Can't copy $file"
153 # The following have been removed from the sed command below
154 # because it is more useful to leave these things in.
155 # The only reason to remove them was for -pedantic,
156 # which isn't much of a reason. -- rms.
160 s/!__STDC__/!defined (__STRICT_ANSI__)/g
161 ' $2/$file > $2/$file.sed
162 mv $2/$file.sed $2/$file
163 if cmp $file $2/$file >/dev/null 2>&1; then
174 # We shouldn't stay in the directory we just copied.
177 # Fix first broken decl of getcwd present on some svr4 systems.
180 base=`basename $file`
181 if [ -r ${LIB}/$file ]; then
182 file_to_fix=${LIB}/$file
184 if [ -r ${INPUT}/$file ]; then
185 file_to_fix=${INPUT}/$file
190 if [ \! -z "$file_to_fix" ]; then
191 echo Checking $file_to_fix
192 sed -e 's/getcwd(char \{0,\}\*, int)/getcwd(char *, size_t)/' $file_to_fix > /tmp/$base
193 if cmp $file_to_fix /tmp/$base >/dev/null 2>&1; then \
196 echo Fixed $file_to_fix
198 cp /tmp/$base ${LIB}/$file
199 chmod a+r ${LIB}/$file
204 # Fix second broken decl of getcwd present on some svr4 systems. Also
205 # fix the incorrect decl of profil present on some svr4 systems.
208 base=`basename $file`
209 if [ -r ${LIB}/$file ]; then
210 file_to_fix=${LIB}/$file
212 if [ -r ${INPUT}/$file ]; then
213 file_to_fix=${INPUT}/$file
218 if [ \! -z "$file_to_fix" ]; then
219 echo Checking $file_to_fix
220 sed -e 's/getcwd(char \*, int)/getcwd(char *, size_t)/' $file_to_fix \
221 | sed -e 's/profil(unsigned short \*, unsigned int, unsigned int, unsigned int)/profil(unsigned short *, size_t, int, unsigned)/' > /tmp/$base
222 if cmp $file_to_fix /tmp/$base >/dev/null 2>&1; then \
225 echo Fixed $file_to_fix
227 cp /tmp/$base ${LIB}/$file
228 chmod a+r ${LIB}/$file
233 # Fix third broken decl of getcwd on SCO. Also fix incorrect decl of
236 base=`basename $file`
237 if [ -r ${LIB}/$file ]; then
238 file_to_fix=${LIB}/$file
240 if [ -r ${INPUT}/$file ]; then
241 file_to_fix=${INPUT}/$file
246 if [ \! -z "$file_to_fix" ]; then
247 echo Checking $file_to_fix
248 sed -e 's/getcwd(char \*, int)/getcwd(char *, size_t)/' $file_to_fix \
249 | sed -e 's/const int link(const char \*, char \*)/extern int link(const char *, const char *)/' > /tmp/$base
250 if cmp $file_to_fix /tmp/$base >/dev/null 2>&1; then \
253 echo Fixed $file_to_fix
255 cp /tmp/$base ${LIB}/$file
256 chmod a+r ${LIB}/$file
261 # Fix an error in this file: the #if says _cplusplus, not the double
262 # underscore __cplusplus that it should be
264 if [ -r $file ] && [ ! -r ${LIB}/$file ]; then
265 mkdir ${LIB}/rpcsvc 2>/dev/null
266 cp $file ${LIB}/$file >/dev/null 2>&1 || echo "Can't copy $file"
267 chmod +w ${LIB}/$file 2>/dev/null
268 chmod a+r ${LIB}/$file 2>/dev/null
271 if [ -r ${LIB}/$file ]; then
272 echo Fixing $file, __cplusplus macro
273 sed -e 's/[ ]_cplusplus/ __cplusplus/' ${LIB}/$file > ${LIB}/${file}.sed
274 rm -f ${LIB}/$file; mv ${LIB}/${file}.sed ${LIB}/$file
275 if cmp $file ${LIB}/$file >/dev/null 2>&1; then
280 # Fix prototype declaration of utime in sys/times.h. In 3.2v4.0 the
283 if [ -r $file ] && [ ! -r ${LIB}/$file ]; then
284 cp $file ${LIB}/$file >/dev/null 2>&1 || echo "Can't copy $file"
285 chmod +w ${LIB}/$file 2>/dev/null
286 chmod a+r ${LIB}/$file 2>/dev/null
289 if [ -r ${LIB}/$file ]; then
290 echo Fixing $file, utime prototype
291 sed -e 's/(const char \*, struct utimbuf \*);/(const char *, const struct utimbuf *);/' ${LIB}/$file > ${LIB}/${file}.sed
292 rm -f ${LIB}/$file; mv ${LIB}/${file}.sed ${LIB}/$file
293 if cmp $file ${LIB}/$file >/dev/null 2>&1; then
298 # This function is borrowed from fixinclude.svr4
299 # The OpenServer math.h defines struct exception, which conflicts with
300 # the class exception defined in the C++ file std/stdexcept.h. We
301 # redefine it to __math_exception. This is not a great fix, but I
302 # haven't been able to think of anything better.
304 # OpenServer's math.h declares abs as inline int abs... Unfortunately,
305 # we blow over that one (with C++ linkage) and stick a new one in stdlib.h
306 # with C linkage. So we eat the one out of math.h.
308 base=`basename $file`
309 if [ -r ${LIB}/$file ]; then
310 file_to_fix=${LIB}/$file
312 if [ -r ${INPUT}/$file ]; then
313 file_to_fix=${INPUT}/$file
318 if [ \! -z "$file_to_fix" ]; then
319 echo Checking $file_to_fix
320 sed -e '/struct exception/i\
322 #define exception __math_exception\
324 -e '/struct exception/a\
328 -e 's@inline int abs(int [a-z][a-z]*) {.*}@extern "C" int abs(int);@' \
329 $file_to_fix > /tmp/$base
330 if cmp $file_to_fix /tmp/$base >/dev/null 2>&1; then \
333 echo Fixed $file_to_fix
335 cp /tmp/$base ${LIB}/$file
336 chmod a+r ${LIB}/$file
342 # Also, the static functions lstat() and fchmod() in <sys/stat.h>
343 # cause G++ grief since they're not wrapped in "if __cplusplus".
347 if [ -r $file ] && [ ! -r ${LIB}/$file ]; then
348 cp $file ${LIB}/$file >/dev/null 2>&1 || echo "Can't copy $file"
349 chmod +w ${LIB}/$file 2>/dev/null
350 chmod a+r ${LIB}/$file 2>/dev/null
353 if [ -r ${LIB}/$file ]; then
354 echo Fixing $file, static definitions not C++-aware.
355 sed -e '/^static int[ ]*/i\
359 #endif /* __cplusplus */ \
364 #endif /* __cplusplus */ \
365 ' ${LIB}/$file > ${LIB}/${file}.sed
366 rm -f ${LIB}/$file; mv ${LIB}/${file}.sed ${LIB}/$file
367 if cmp $file ${LIB}/$file >/dev/null 2>&1; then
372 # This fix has the regex modified from the from fixinc.wrap
373 # Avoid the definition of the bool type in the following files when using
374 # g++, since it's now an official type in the C++ language.
375 for file in term.h tinfo.h
377 if [ -r $INPUT/$file ]; then
378 echo Checking $INPUT/$file
380 if grep "typedef$w.*char$w.*bool$w*;" $INPUT/$file >/dev/null
384 cat <<'__EOF__' >$LIB/$file
385 #ifndef _CURSES_H_WRAPPER
387 # define bool __curses_bool_t
389 #include_next <curses.h>
393 #define _CURSES_H_WRAPPER
394 #endif /* _CURSES_H_WRAPPER */
396 # Define _CURSES_H_WRAPPER at the end of the wrapper, not the start,
397 # so that if #include_next gets another instance of the wrapper,
398 # this will follow the #include_next chain until we arrive at
399 # the real <curses.h>.
405 echo 'Removing unneeded directories:'
407 files=`find . -type d -print | sort -r`
408 for file in $files; do
409 rmdir $LIB/$file > /dev/null 2>&1
413 echo 'Making internal symbolic non-directory links'
415 files=`find . -type l -print`
416 for file in $files; do
417 dest=`ls -ld $file | sed -n 's/.*-> //p'`
418 if expr "$dest" : '[^/].*' > /dev/null; then
419 target=${LIB}/`echo file | sed "s|[^/]*\$|$dest|"`
420 if [ -f $target ]; then
421 ln -s $dest ${LIB}/$file >/dev/null 2>&1