diff options
author | eivind <eivind@FreeBSD.org> | 1998-01-09 01:01:21 +0000 |
---|---|---|
committer | eivind <eivind@FreeBSD.org> | 1998-01-09 01:01:21 +0000 |
commit | 7b61fe3f84118cce43345d2934168de0c490c149 (patch) | |
tree | 8ab5b9ba6bb5ffd75fc9fbd85cb694a81eded6f2 /sys/modules/if_ppp | |
parent | 6df58d9bc96fd65bf7987aa61783dc7873ce960f (diff) | |
download | FreeBSD-src-7b61fe3f84118cce43345d2934168de0c490c149.zip FreeBSD-src-7b61fe3f84118cce43345d2934168de0c490c149.tar.gz |
Minor fixups after INET option change.
Diffstat (limited to 'sys/modules/if_ppp')
-rw-r--r-- | sys/modules/if_ppp/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/modules/if_ppp/Makefile b/sys/modules/if_ppp/Makefile index 4a49e1d..3f3072d 100644 --- a/sys/modules/if_ppp/Makefile +++ b/sys/modules/if_ppp/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.10 1997/12/16 22:50:18 eivind Exp $ +# $Id: Makefile,v 1.11 1998/01/08 23:50:18 eivind Exp $ .PATH: ${.CURDIR}/../../sys/net KMOD= if_ppp_mod @@ -14,7 +14,6 @@ PPP_DEFLATE?= 1 # 0/1 PPP_FILTER?= 0 # 0/1 - requires bpf to be configured in kernel PPP_INET?= 1 # 0/1 - requires INET to be configured in kernel PPP_IPX?= 0 # 0/1 - requires IPX to be configured in kernel -PROTOS?= -DINET # add -DIPX if you have IPX in the kernel CFLAGS+= ${PROTOS} CLEANFILES+= bpfilter.h opt_inet.h opt_ipx.h opt_ppp.h ppp.h @@ -28,7 +27,7 @@ ppp.h: opt_inet.h: touch opt_inet.h .if ${PPP_INET} > 0 - echo "#define IPX ${PPP_INET}" > opt_inet.h + echo "#define INET 1" > opt_inet.h .endif opt_ipx.h: |