diff options
author | eivind <eivind@FreeBSD.org> | 1997-12-16 18:28:07 +0000 |
---|---|---|
committer | eivind <eivind@FreeBSD.org> | 1997-12-16 18:28:07 +0000 |
commit | 786069b3cabdc776dbcebc85d1a1317237a37e73 (patch) | |
tree | 89aed1b22c9d6afba1bf46f863d88c6ff0909980 /sys | |
parent | 95d8dee8a02fe37d83b069197926d42985aacfdb (diff) | |
download | FreeBSD-src-786069b3cabdc776dbcebc85d1a1317237a37e73.zip FreeBSD-src-786069b3cabdc776dbcebc85d1a1317237a37e73.tar.gz |
Whoops - fix this after yesterday's IPX option changes. Also fix
minor buglet when neither bsdcomp, deflate or filter is used.
Pointed out by: Chris Timmons <skynyrd@opus.cts.cwu.edu>
Diffstat (limited to 'sys')
-rw-r--r-- | sys/modules/if_ppp/Makefile | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/sys/modules/if_ppp/Makefile b/sys/modules/if_ppp/Makefile index b29efdf..43ff42c 100644 --- a/sys/modules/if_ppp/Makefile +++ b/sys/modules/if_ppp/Makefile @@ -1,8 +1,9 @@ -# $Id: Makefile,v 1.7 1997/08/21 10:17:29 jmg Exp $ +# $Id: Makefile,v 1.8 1997/10/18 01:37:52 peter Exp $ .PATH: ${.CURDIR}/../../sys/net KMOD= if_ppp_mod -SRCS= bsd_comp.c if_ppp.c ppp_tty.c slcompress.c bpfilter.h ppp.h opt_ppp.h +SRCS= bsd_comp.c if_ppp.c ppp_tty.c slcompress.c bpfilter.h ppp.h \ + opt_ipx.h opt_ppp.h NOMAN= PSEUDO_LKM= CFLAGS+= -I. @@ -11,10 +12,11 @@ NPPP?= 2 PPP_BSDCOMP?= 1 # 0/1 PPP_DEFLATE?= 1 # 0/1 PPP_FILTER?= 0 # 0/1 - requires bpf 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 ppp.h opt_ppp.h +CLEANFILES+= bpfilter.h ppp.h opt_ipx.h opt_ppp.h bpfilter.h: echo "#define NBPFILTER ${PPP_FILTER}" > bpfilter.h @@ -22,7 +24,14 @@ bpfilter.h: ppp.h: echo "#define NPPP ${NPPP}" > ppp.h +opt_ipx.h: + touch opt_ipx.h +.if ${PPP_IPX} > 0 + echo "#define IPX ${PPP_BSDCOMP}" > opt_ipx.h +.endif + opt_ppp.h: + touch opt_ppp.h .if ${PPP_BSDCOMP} > 0 echo "#define PPP_BSDCOMP ${PPP_BSDCOMP}" > opt_ppp.h .endif |