1999-08-27 21:35:59 -04:00
|
|
|
# $FreeBSD$
|
1999-01-28 10:16:38 -05:00
|
|
|
|
1995-01-31 01:29:58 -05:00
|
|
|
PROG= ppp
|
1999-05-08 07:07:56 -04:00
|
|
|
SRCS= acf.c arp.c async.c auth.c bundle.c cbcp.c ccp.c chap.c chat.c \
|
|
|
|
|
command.c datalink.c deflate.c defs.c exec.c filter.c fsm.c hdlc.c \
|
2000-08-17 20:01:44 -04:00
|
|
|
iface.c ip.c ipcp.c iplist.c lcp.c link.c log.c lqr.c main.c \
|
1999-05-08 07:07:56 -04:00
|
|
|
mbuf.c mp.c pap.c physical.c pred.c probe.c prompt.c proto.c route.c \
|
2000-11-28 08:18:35 -05:00
|
|
|
server.c sig.c slcompress.c sync.c systems.c tcp.c tcpmss.c \
|
|
|
|
|
throughput.c timer.c tty.c tun.c udp.c vjcomp.c
|
1998-05-21 19:38:08 -04:00
|
|
|
CFLAGS+=-Wall
|
1999-01-27 20:56:34 -05:00
|
|
|
LDADD+= -lcrypt -lmd -lutil -lz
|
|
|
|
|
DPADD+= ${LIBCRYPT} ${LIBMD} ${LIBUTIL} ${LIBZ}
|
2000-08-17 20:01:44 -04:00
|
|
|
.if defined(NOSUID) || defined(PPP_NOSUID)
|
|
|
|
|
BINMODE=554
|
|
|
|
|
.else
|
1999-08-27 03:47:17 -04:00
|
|
|
BINMODE=4554
|
1998-10-19 20:19:38 -04:00
|
|
|
BINOWN= root
|
2000-08-17 20:01:44 -04:00
|
|
|
.endif
|
1997-09-03 20:38:22 -04:00
|
|
|
BINGRP= network
|
1998-04-25 06:49:52 -04:00
|
|
|
MAN8= ppp.8
|
|
|
|
|
|
1998-01-28 19:44:15 -05:00
|
|
|
.if defined(RELEASE_CRUNCH)
|
|
|
|
|
CFLAGS+=-DRELEASE_CRUNCH
|
|
|
|
|
.endif
|
|
|
|
|
|
1999-09-21 20:44:45 -04:00
|
|
|
.if defined(NOKLDLOAD)
|
|
|
|
|
CFLAGS+=-DNOKLDLOAD
|
|
|
|
|
.endif
|
|
|
|
|
|
2000-03-14 14:33:13 -05:00
|
|
|
.if defined(NOINET6)
|
|
|
|
|
CFLAGS+=-DNOINET6
|
|
|
|
|
.endif
|
|
|
|
|
|
1999-08-23 19:13:59 -04:00
|
|
|
.if defined(NOALIAS) || defined(NONAT)
|
1999-08-22 19:17:57 -04:00
|
|
|
CFLAGS+=-DNONAT
|
1997-11-21 22:37:54 -05:00
|
|
|
.else
|
1998-06-27 10:17:28 -04:00
|
|
|
.if !defined(RELEASE_CRUNCH)
|
1999-09-08 03:34:52 -04:00
|
|
|
SRCS+= nat_cmd.c
|
1998-06-27 10:17:28 -04:00
|
|
|
LDADD+= -lalias
|
|
|
|
|
DPADD+= ${LIBALIAS}
|
|
|
|
|
.endif
|
1997-11-21 22:37:54 -05:00
|
|
|
.endif
|
|
|
|
|
|
2000-09-14 18:02:54 -04:00
|
|
|
.if defined(NOATM) || defined(RELEASE_CRUNCH)
|
|
|
|
|
CFLAGS+=-DNOATM
|
|
|
|
|
.else
|
|
|
|
|
SRCS+= atm.c
|
|
|
|
|
.endif
|
|
|
|
|
|
2000-08-17 20:01:44 -04:00
|
|
|
.if defined(NOSUID) || defined(PPP_NOSUID)
|
|
|
|
|
CFLAGS+=-DNOSUID
|
|
|
|
|
.else
|
|
|
|
|
.if !defined(RELEASE_CRUNCH)
|
|
|
|
|
SRCS+= id.c
|
|
|
|
|
.endif
|
|
|
|
|
.endif
|
|
|
|
|
|
2000-03-09 01:29:05 -05:00
|
|
|
.if exists(${.CURDIR}/../../secure) && !defined(NOCRYPT) && !defined(NOSECURE) && !defined(NO_OPENSSL) && !defined(RELEASE_CRUNCH)
|
2000-02-29 06:44:18 -05:00
|
|
|
DISTRIBUTION=crypto
|
1997-09-24 20:52:37 -04:00
|
|
|
CFLAGS+=-DHAVE_DES
|
2000-10-29 19:15:04 -05:00
|
|
|
SRCS+= chap_ms.c mppe.c
|
2000-02-24 16:10:28 -05:00
|
|
|
LDADD+= -lcrypto
|
|
|
|
|
DPADD+= ${LIBCRYPTO}
|
1997-09-24 20:52:37 -04:00
|
|
|
.endif
|
|
|
|
|
|
1999-01-27 20:56:34 -05:00
|
|
|
.if defined(NORADIUS)
|
|
|
|
|
CFLAGS+=-DNORADIUS
|
|
|
|
|
.else
|
|
|
|
|
.if !defined(RELEASE_CRUNCH)
|
|
|
|
|
SRCS+= radius.c
|
|
|
|
|
LDADD+= -lradius
|
|
|
|
|
DPADD+= ${LIBRADIUS}
|
|
|
|
|
.endif
|
|
|
|
|
.endif
|
|
|
|
|
|
1999-08-23 19:13:59 -04:00
|
|
|
.if defined(NOI4B) || ${MACHINE_ARCH} == "alpha"
|
1999-08-06 16:04:08 -04:00
|
|
|
CFLAGS+=-DNOI4B
|
|
|
|
|
.else
|
|
|
|
|
SRCS+= i4b.c
|
|
|
|
|
.endif
|
|
|
|
|
|
1999-11-06 17:50:59 -05:00
|
|
|
.if defined(NONETGRAPH)
|
|
|
|
|
CFLAGS+=-DNONETGRAPH
|
|
|
|
|
.else
|
|
|
|
|
SRCS+= ether.c
|
|
|
|
|
LDADD+= -lnetgraph
|
|
|
|
|
DPADD+= ${LIBNETGRAPH}
|
|
|
|
|
.endif
|
|
|
|
|
|
1998-01-17 09:21:21 -05:00
|
|
|
.if defined(RELEASE_CRUNCH)
|
1999-01-27 20:56:34 -05:00
|
|
|
# We must create these objects because crunchgen will link them,
|
1998-01-17 09:21:21 -05:00
|
|
|
# and we don't want any unused symbols to spoil the final link.
|
2000-08-17 20:01:44 -04:00
|
|
|
CFLAGS+=-DNONAT -DNORADIUS -DNOI4B -DNOSUID
|
2000-10-31 00:00:25 -05:00
|
|
|
OBJS+= chap_ms.o mppe.o id.o nat_cmd.o radius.o
|
|
|
|
|
chap_ms.o mppe.o id.o nat_cmd.o radius.o:
|
1998-06-09 01:36:48 -04:00
|
|
|
>null_${.PREFIX}.c
|
|
|
|
|
cc -c -o ${.TARGET} null_${.PREFIX}.c
|
1998-01-17 09:21:21 -05:00
|
|
|
.endif
|
|
|
|
|
|
1995-01-31 01:29:58 -05:00
|
|
|
.include <bsd.prog.mk>
|