From: Ted Lemon Date: Wed, 3 Feb 1999 18:53:36 +0000 (+0000) Subject: Add entry for Linux 2.2. X-Git-Tag: V2-BETA-1-PATCH-9~12 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a57a58ab98e6dddc1da2e236818d3597c5049d31;p=thirdparty%2Fdhcp.git Add entry for Linux 2.2. --- diff --git a/Makefile.conf b/Makefile.conf index 951114c37..07931cb4b 100644 --- a/Makefile.conf +++ b/Makefile.conf @@ -213,6 +213,19 @@ VARDB = /var/db #SCRIPT=linux ##--linux-2.1-- +## Linux 2.2 +##--linux-2.2-- +#COPTS = -DLINUX_MAJOR=2 -DLINUX_MINOR=2 +#CF = cf/linux.h +#ADMMANDIR = /usr/man/man8 +#ADMMANEXT = .8 +#FFMANDIR = /usr/man/man5 +#FFMANEXT = .5 +#VARRUN = /var/run +#VARDB = /var/dhcpd +#SCRIPT=linux +##--linux-2.2-- + ## SCO ##--sco-- #CF = cf/sco.h diff --git a/configure b/configure index 8858d31a2..956fd2627 100755 --- a/configure +++ b/configure @@ -21,6 +21,7 @@ if [ "$sysname" = "" ]; then case `uname -r` in 1*) sysname=linux-1 ;; 2.1*) sysname=linux-2.1 ;; + 2.2*) sysname=linux-2.2 ;; 2*) sysname=linux-2.0 ;; esac;; SunOS)