2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-29 21:38:10 +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-- ##--irix--
## HP-UX ## HP-UX
##--hpux-- ##--hpux-cc--
#COPTS = $(BINDDEF) #COPTS = $(BINDDEF)
#LFLAGS = -Wl,+vnocompatwarnings #LFLAGS = -Wl,+vnocompatwarnings
#INSTALL = install -i #INSTALL = install -i
#MANINSTALL = install -i #MANINSTALL = install -i
##--hpux ##--hpux-cc
## HP-UX with gcc ## HP-UX with gcc
#--hpux-gcc-- #--hpux-gcc--
@ -410,4 +410,4 @@ MINORVERSION=MinorVersion
#ADMMANEXT = .8 #ADMMANEXT = .8
#FFMANEXT = .5 #FFMANEXT = .5
#MANINSTALL = install -i -m 444 #MANINSTALL = install -i -m 444
#--hpux-gcc-- ##--hpux-gcc--

9
configure vendored
View File

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