From: Ted Lemon Date: Thu, 30 Nov 2000 14:42:51 +0000 (+0000) Subject: Add support for gcc on hp-ux X-Git-Tag: V3-BETA-2-PATCH-11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa2dbe432de415276a0f22e5c38a03aa636915d6;p=thirdparty%2Fdhcp.git Add support for gcc on hp-ux --- diff --git a/Makefile.conf b/Makefile.conf index 37c3c2d36..2af36bd6b 100644 --- a/Makefile.conf +++ b/Makefile.conf @@ -401,3 +401,13 @@ MINORVERSION=MinorVersion #INSTALL = install -i #MANINSTALL = install -i ##--hpux + +## HP-UX with gcc +#--hpux-gcc-- +#CC = gcc +#CF = cf/hpux.h +#INSTALL = install -i +#ADMMANEXT = .8 +#FFMANEXT = .5 +#MANINSTALL = install -i -m 444 +#--hpux-gcc-- diff --git a/configure b/configure index 4beec7be5..b7d9d42c4 100755 --- a/configure +++ b/configure @@ -91,7 +91,12 @@ if [ "$sysname" = "" ]; then hpux) sysname=hpux;; HP-UX) - sysname=hpux;; + set `which gcc` + if [ $# = 1 ]; then + sysname=hpux-gcc + else + sysname=hpux + fi;; QNX) sysname=qnx;; NEXTSTEP)