]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
Add dhcpctl and omapi subdirectories
authorTed Lemon <source@isc.org>
Thu, 2 Sep 1999 00:29:52 +0000 (00:29 +0000)
committerTed Lemon <source@isc.org>
Thu, 2 Sep 1999 00:29:52 +0000 (00:29 +0000)
Makefile.dist
configure

index a96d277e2c30ef427e532140865bb3e6c56deca3..b2708947c11c26948cde1a36f2fb66bcfbf84f82 100644 (file)
@@ -17,7 +17,7 @@
 # http://www.isc.org for more information.
 #
 
-SUBDIRS=       common server client relay
+SUBDIRS=       common omapip server client relay dhcpctl
 
 all:
        @for dir in ${SUBDIRS}; do \
index 438fc83a75398c9dc9e663d3b6ef17b243213684..11205c2daa4330eea90d950fb651884fee6d06c4 100755 (executable)
--- a/configure
+++ b/configure
@@ -57,6 +57,8 @@ if [ "$sysname" = "" ]; then
       esac;;
     NetBSD)
       sysname=netbsd;;
+    OpenBSD)
+      sysname=openbsd;;
     FreeBSD)
       sysname=freebsd;;
     hpux)
@@ -67,6 +69,8 @@ if [ "$sysname" = "" ]; then
       sysname=qnx;;
     NEXTSTEP)
       sysname=nextstep;;
+    UnixWare)
+      sysname=uw7;;
   esac
 fi
 
@@ -88,6 +92,7 @@ if [ "$sysname" = "" ]; then
   echo "   sunos5-gcc  Solaris 2.4 or higher with gcc"
   echo "   netbsd      NetBSD 1.1 or higher"
   echo "   freebsd     FreeBSD"
+  echo "   openbsd      OpenBSD (i386/alpha)"
   echo "   hpux                HP-UX"
   echo "   qnx         QNX 4.2 or higher"
   echo "   NEXTSTEP     NeXTSTEP"
@@ -101,7 +106,7 @@ if [ x$major != x ] && [ x$minor != x ]; then
   minversubst="-e /^##--minver--/,/^##--minver--/s/MinorVersion/$minor/"
 fi
 
-for foo in . client server relay common; do
+for foo in . client server relay common omapip dhcpctl; do
         (sed $nsupdate $majversubst $minversubst \
              -e "/^##--${sysname}--/,/^##--${sysname}--/s/^#//" \
                <Makefile.conf; cat site.conf; cat $foo/Makefile.dist)  \