2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-29 13:28:14 +00:00

Fix up hp-ux config hacks.

This commit is contained in:
Ted Lemon 2000-11-30 20:49:41 +00:00
parent eec641ca22
commit cfb8d21408
2 changed files with 10 additions and 5 deletions

View File

@ -395,12 +395,12 @@ MINORVERSION=MinorVersion
##--irix--
## HP-UX
##--hpux--
##--hpux-cc--
#COPTS = $(BINDDEF)
#LFLAGS = -Wl,+vnocompatwarnings
#INSTALL = install -i
#MANINSTALL = install -i
##--hpux
##--hpux-cc
## HP-UX with gcc
#--hpux-gcc--
@ -410,4 +410,4 @@ MINORVERSION=MinorVersion
#ADMMANEXT = .8
#FFMANEXT = .5
#MANINSTALL = install -i -m 444
#--hpux-gcc--
##--hpux-gcc--

9
configure vendored
View File

@ -89,13 +89,18 @@ if [ "$sysname" = "" ]; then
FreeBSD)
sysname=freebsd;;
hpux)
sysname=hpux;;
set `which gcc`
if [ $# = 1 ]; then
sysname=hpux-gcc
else
sysname=hpux-cc
fi;;
HP-UX)
set `which gcc`
if [ $# = 1 ]; then
sysname=hpux-gcc
else
sysname=hpux
sysname=hpux-cc
fi;;
QNX)
sysname=qnx;;