]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
Add support for gcc on hp-ux V3-BETA-2-PATCH-11
authorTed Lemon <source@isc.org>
Thu, 30 Nov 2000 14:42:51 +0000 (14:42 +0000)
committerTed Lemon <source@isc.org>
Thu, 30 Nov 2000 14:42:51 +0000 (14:42 +0000)
Makefile.conf
configure

index 37c3c2d3645803809b930ad26653553dc3b38e81..2af36bd6b64f2ffa70d5affa5e5823ba7cb5e2ff 100644 (file)
@@ -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--
index 4beec7be5c8fb08178fd431a6f2c916ad8f4bc0c..b7d9d42c477ef010fb4a6111a9609b136ea13d95 100755 (executable)
--- 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)