Deleted Added
full compact
Makefile (93448) Makefile (115157)
1# $FreeBSD: head/usr.sbin/ppp/Makefile 93448 2002-03-30 17:57:51Z ru $
1# $FreeBSD: head/usr.sbin/ppp/Makefile 115157 2003-05-19 15:52:01Z des $
2
3PROG= ppp
4MAN= ppp.8
5SRCS= acf.c arp.c async.c auth.c bundle.c cbcp.c ccp.c chap.c chat.c \
6 command.c datalink.c deflate.c defs.c exec.c filter.c fsm.c hdlc.c \
7 iface.c ip.c ipcp.c ipv6cp.c iplist.c lcp.c link.c log.c lqr.c main.c \
8 mbuf.c mp.c ncp.c ncpaddr.c pap.c physical.c pred.c probe.c prompt.c \
9 proto.c route.c server.c sig.c slcompress.c sync.c systems.c tcp.c \
10 tcpmss.c throughput.c timer.c tty.c tun.c udp.c vjcomp.c
11.if defined(RELEASE_CRUNCH)
12CFLAGS+=-DRELEASE_CRUNCH
13NOATM= true
14NOI4B= true
15NONAT= true
16NOKLDLOAD= true
17NORADIUS= true
2
3PROG= ppp
4MAN= ppp.8
5SRCS= acf.c arp.c async.c auth.c bundle.c cbcp.c ccp.c chap.c chat.c \
6 command.c datalink.c deflate.c defs.c exec.c filter.c fsm.c hdlc.c \
7 iface.c ip.c ipcp.c ipv6cp.c iplist.c lcp.c link.c log.c lqr.c main.c \
8 mbuf.c mp.c ncp.c ncpaddr.c pap.c physical.c pred.c probe.c prompt.c \
9 proto.c route.c server.c sig.c slcompress.c sync.c systems.c tcp.c \
10 tcpmss.c throughput.c timer.c tty.c tun.c udp.c vjcomp.c
11.if defined(RELEASE_CRUNCH)
12CFLAGS+=-DRELEASE_CRUNCH
13NOATM= true
14NOI4B= true
15NONAT= true
16NOKLDLOAD= true
17NORADIUS= true
18NOSECURE= true
19NOSUID= true
20.endif
21
22.if defined(NOSUID) || defined(PPP_NOSUID)
23BINMODE=554
24.else
25BINMODE=4554
26BINOWN= root

--- 38 unchanged lines hidden (view full) ---

65.endif
66
67.if defined(NOSUID) || defined(PPP_NOSUID)
68CFLAGS+=-DNOSUID
69.else
70SRCS+= id.c
71.endif
72
18NOSUID= true
19.endif
20
21.if defined(NOSUID) || defined(PPP_NOSUID)
22BINMODE=554
23.else
24BINMODE=4554
25BINOWN= root

--- 38 unchanged lines hidden (view full) ---

64.endif
65
66.if defined(NOSUID) || defined(PPP_NOSUID)
67CFLAGS+=-DNOSUID
68.else
69SRCS+= id.c
70.endif
71
73.if !exists(${.CURDIR}/../../secure) || defined(NOCRYPT) || defined(NOSECURE) || defined(NO_OPENSSL) || defined(NODES)
72.if !exists(${.CURDIR}/../../crypto) || defined(NOCRYPT) || defined(NO_OPENSSL) || defined(NODES)
74CFLAGS+=-DNODES
75.else
76DISTRIBUTION=crypto
77SRCS+= chap_ms.c mppe.c
78LDADD+= -lcrypto
79DPADD+= ${LIBCRYPTO}
80.endif
81

--- 27 unchanged lines hidden ---
73CFLAGS+=-DNODES
74.else
75DISTRIBUTION=crypto
76SRCS+= chap_ms.c mppe.c
77LDADD+= -lcrypto
78DPADD+= ${LIBCRYPTO}
79.endif
80

--- 27 unchanged lines hidden ---