2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-29 21:38:10 +00:00

SCO changes.

This commit is contained in:
Ted Lemon 2001-04-09 00:31:48 +00:00
parent fcebfc39d8
commit f1431de313

19
configure vendored
View File

@ -1,5 +1,7 @@
#!/bin/sh
#sysname=$1
while [ $# != 0 ]; do
if [ x$1 = x--with-nsupdate ]; then
echo "nsupdate is always built now."
@ -22,6 +24,22 @@ machine=`uname -m`
if [ "$sysname" = "" ]; then
case $uname in
SCO_SV)
IFS=":"
for foo in $PATH; do
if [ x$gcc_path = x ] && [ -x $foo/gcc ]; then
gcc_path=$foo/gcc
fi
done
IFS=" "
if [ x$gcc_path = x ]; then
sysname=sco-cc
sysname_print=sco
else
sysname=sco-gcc
sysname_print=sco
fi
;;
AIX)
sysname=aix;;
Rhapsody)
@ -163,6 +181,7 @@ if [ "$sysname" = "" ]; then
echo " hpux HP-UX"
echo " qnx QNX 4.2 or higher"
echo " NEXTSTEP NeXTSTEP"
echo " sco SCO Open Server"
exit 1;
fi
fi