1998-10-16 03:00:18 -04:00
|
|
|
#! /bin/sh
|
|
|
|
|
|
|
|
machine=$1
|
|
|
|
if [ -z "$machine" ]
|
|
|
|
then
|
|
|
|
echo No machine name given
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
1999-03-03 02:41:52 -05:00
|
|
|
target=../fixinc.sh
|
|
|
|
|
|
|
|
echo constructing ${target} for $machine
|
|
|
|
fixincludes="${target}"
|
1998-10-16 03:00:18 -04:00
|
|
|
|
|
|
|
case $machine in
|
1999-03-10 03:00:12 -05:00
|
|
|
i[34567]86-*-linux-gnu*)
|
|
|
|
fixincludes=fixinc.x86-linux-gnu
|
1998-10-16 03:00:18 -04:00
|
|
|
;;
|
|
|
|
|
|
|
|
*-*-sysv4*)
|
|
|
|
fixincludes=fixinc.svr4
|
|
|
|
;;
|
|
|
|
|
|
|
|
mips-dec-bsd*)
|
|
|
|
:
|
|
|
|
;;
|
|
|
|
|
|
|
|
i[34567]86-*-sysv5* | \
|
|
|
|
i[34567]86-*-udk* | \
|
|
|
|
i[34567]86-*-solaris2.[0-4] | \
|
|
|
|
powerpcle-*-solaris2.[0-4] | \
|
|
|
|
sparc-*-solaris2.[0-4] )
|
|
|
|
fixincludes=fixinc.svr4
|
|
|
|
;;
|
|
|
|
|
1999-04-13 18:02:20 -04:00
|
|
|
i[34567]86-*-interix* | \
|
|
|
|
alpha-*-interix*)
|
1999-04-02 05:50:42 -05:00
|
|
|
fixincludes=fixinc.interix
|
|
|
|
;;
|
|
|
|
|
1998-10-16 03:00:18 -04:00
|
|
|
*-*-netbsd* | \
|
|
|
|
alpha*-*-linux-gnulibc1* | \
|
|
|
|
i[34567]86-*-freebsd* | \
|
|
|
|
i[34567]86-*-netbsd* | i[34567]86-*-openbsd* | \
|
|
|
|
i[34567]86-*-solaris2* | \
|
|
|
|
sparcv9-*-solaris2* | \
|
|
|
|
powerpcle-*-solaris2* | \
|
|
|
|
sparc-*-solaris2* )
|
|
|
|
fixincludes=fixinc.wrap
|
|
|
|
;;
|
|
|
|
|
|
|
|
alpha*-*-winnt* | \
|
|
|
|
i[34567]86-*-winnt3*)
|
|
|
|
fixincludes=fixinc.winnt
|
|
|
|
;;
|
|
|
|
|
|
|
|
i[34567]86-sequent-ptx* | i[34567]86-sequent-sysv[34]*)
|
|
|
|
fixincludes=fixinc.ptx
|
|
|
|
;;
|
|
|
|
|
|
|
|
i[34567]86-*-sco3.2v5* | \
|
|
|
|
i[34567]86-*-sco3.2v4*)
|
|
|
|
fixincludes=fixinc.sco
|
|
|
|
;;
|
|
|
|
|
|
|
|
alpha*-*-linux-gnu* | \
|
|
|
|
alpha*-dec-vms* | \
|
|
|
|
arm-semi-aout | armel-semi-aout | \
|
|
|
|
arm-semi-aof | armel-semi-aof | \
|
1999-03-10 03:00:12 -05:00
|
|
|
arm-*-gnu* | \
|
1998-10-16 03:00:18 -04:00
|
|
|
c*-convex-* | \
|
|
|
|
hppa1.1-*-osf* | \
|
|
|
|
hppa1.0-*-osf* | \
|
|
|
|
hppa1.1-*-bsd* | \
|
|
|
|
hppa1.0-*-bsd* | \
|
|
|
|
hppa*-*-lites* | \
|
|
|
|
*-*-linux-gnu* | \
|
1999-05-14 22:21:35 -04:00
|
|
|
*-*-gnu* | \
|
1998-10-16 03:00:18 -04:00
|
|
|
i[34567]86-moss-msdos* | i[34567]86-*-moss* | \
|
|
|
|
i[34567]86-*-osf1* | \
|
|
|
|
i[34567]86-*-win32 | \
|
1999-03-24 17:26:54 -05:00
|
|
|
i[34567]86-*-pe | i[34567]86-*-cygwin* | \
|
1998-10-16 03:00:18 -04:00
|
|
|
i[34567]86-*-mingw32* | \
|
|
|
|
mips-sgi-irix5cross64 | \
|
|
|
|
powerpc-*-eabiaix* | \
|
|
|
|
powerpc-*-eabisim* | \
|
|
|
|
powerpc-*-eabi* | \
|
|
|
|
powerpc-*-rtems* | \
|
|
|
|
powerpcle-*-eabisim* | \
|
|
|
|
powerpcle-*-eabi* | \
|
|
|
|
powerpcle-*-winnt* | \
|
1999-03-24 17:26:54 -05:00
|
|
|
powerpcle-*-pe | powerpcle-*-cygwin* | \
|
1998-10-16 03:00:18 -04:00
|
|
|
thumb-*-coff* | thumbel-*-coff* )
|
|
|
|
fixincludes=
|
|
|
|
;;
|
|
|
|
|
|
|
|
*-sgi-irix*)
|
|
|
|
fixincludes=fixinc.irix
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
1999-03-03 02:41:52 -05:00
|
|
|
# IF there is no include fixing,
|
|
|
|
# THEN create a no-op fixer and exit
|
|
|
|
#
|
1998-10-16 03:00:18 -04:00
|
|
|
if test -z "$fixincludes"
|
|
|
|
then
|
1999-03-29 03:28:23 -05:00
|
|
|
(echo "#! /bin/sh" ; echo "exit 0" ) > ${target}
|
1999-04-28 10:42:03 -04:00
|
|
|
chmod 755 ${target}
|
1998-10-16 03:00:18 -04:00
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
1999-03-03 02:41:52 -05:00
|
|
|
# IF the fixer is supplied in our source directory,
|
|
|
|
# THEN copy that into place
|
|
|
|
#
|
|
|
|
if test -f ${srcdir}/"${fixincludes}"
|
1998-10-16 03:00:18 -04:00
|
|
|
then
|
1999-03-03 02:41:52 -05:00
|
|
|
echo copying ${srcdir}/$fixincludes to ${target}
|
|
|
|
cp ${srcdir}/$fixincludes ${target}
|
1999-04-28 10:42:03 -04:00
|
|
|
chmod 755 ${target}
|
1998-10-16 03:00:18 -04:00
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
1999-03-03 02:41:52 -05:00
|
|
|
# OK. We gotta make the thing.
|
|
|
|
#
|
|
|
|
echo $MAKE SHELL=\"$SHELL\" install
|
|
|
|
|
|
|
|
# make and install either the binary or the default script
|
|
|
|
#
|
1999-04-28 10:42:03 -04:00
|
|
|
$MAKE SHELL="$SHELL" install && chmod 755 ${target} && exit 0
|
1999-03-03 02:41:52 -05:00
|
|
|
|
|
|
|
# Where is our inclhack script? That is the backup
|
|
|
|
# in case we are unable to make a working binary.
|
|
|
|
#
|
|
|
|
if test -f ./inclhack.sh
|
|
|
|
then
|
|
|
|
INCLHACK=./inclhack.sh
|
|
|
|
else
|
|
|
|
INCLHACK=${srcdir}/inclhack.sh
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo Could not install binary fixincludes.
|
|
|
|
echo Installing shell script instead.
|
|
|
|
|
|
|
|
cp ${INCLHACK} ${target}
|
1999-04-28 10:42:03 -04:00
|
|
|
chmod 755 ${target}
|