freebsd_amp_hwpstate/usr.sbin/xntpd/scripts/makeconfig.sh

86 lines
2.0 KiB
Bash
Executable File

#!/bin/sh
MACHINE=${1-${OS}}
COMPILER=${2-${CC}}
#
# Figure out which compiler to use. Stolen from Jeff Johnson.
#
if [ "0$COMPILER" = "0" ]; then
COMPILER="cc"
set dummy gcc; word=$2
IFS="${IFS= }"; saveifs="$IFS"; IFS="${IFS}:"
for dir in $PATH; do
test -z "$dir" && dir=.
if test -f $dir/$word; then
COMPILER="gcc"
break
fi
done
IFS="$saveifs"
fi
#
# Figure out the byte order and word size.
#
if (cd util && rm -f longsize && $COMPILER -o longsize longsize.c ); then
if util/longsize >/dev/null 2>&1; then
LONG=`util/longsize`
else
echo "TROUBLE: executables built by your compiler don't work - bug your vendor"
exit 1
fi
else
echo "TROUBLE: could not compile !"
echo "TROUBLE: either your compiler does not work / is not present"
echo "TROUBLE: or you have mangled the file tree"
exit 1
fi
(cd util && rm -f byteorder && $COMPILER -o byteorder byteorder.c $LONG )
BYTE=`util/byteorder `
if [ "0$BYTE" = "0" ]; then
BYTE="XNTP_BIG_ENDIAN"
fi
(cd util && rm -f byteorder longsize)
#
# Figure out which machine we have.
#
if [ "0$MACHINE" = "0" ]; then
GUESS=`scripts/Guess.sh`
if [ "0$GUESS" = "0none" ]; then
echo ' '
echo "I don't know your system!"
echo "I do know about the following systems:"
(cd machines && ls -C *)
echo "Choose a system and type \"make OS=<system>\""
exit 1
else
if [ -f machines/$GUESS ]; then
MACHINE=$GUESS
else
if [ -f machines/$GUESS.posix ]; then
MACHINE="$GUESS.posix"
else
MACHINE="$GUESS.bsd"
fi
fi
fi
fi
echo "Configuring machines/$MACHINE compilers/$MACHINE.$COMPILER"
if [ -f machines/$MACHINE ]; then
cat machines/$MACHINE >Config ;
if [ -f compilers/$MACHINE.$COMPILER ]; then
cat compilers/$MACHINE.$COMPILER >>Config
else
echo "COMPILER= $COMPILER" >>Config
fi
echo "LIBDEFS= -D$BYTE" >>Config
cat Config.local >>Config
else
echo "Don't know how to build xntpd for machine $MACHINE " ;
exit 1
fi