455aabc3f8
o The FSM layering is now more sane. o Move a lot of the NCP stuff into our ipcpstate rather than having it in the bundle, including control of the configured IP addresses. We don't need hacks like the global `linkup' variable any more as the FSM decides when our ppp.link* files get run. This is going to eventually be configurable based on FSM events anyway. o Fix a few inconsistencies when both sides require authentication. o We now have "Ppp..." and "PPp" prompts, reflecting authentication and network phase. We don't print loads of spurious prompts as we change phases any more. o Our phase is part of the bundle now. o Fix a bug where the FSM wasn't calling LayerFinish. o Close the FSM down correctly with a signal rather than slamming it down as if the line was dropped (the undocumented ``down'' command is still available though). o Remove the forgotten `tunno' variable and fix references to it.
44 lines
1.2 KiB
Makefile
44 lines
1.2 KiB
Makefile
# $Id: Makefile,v 1.36.2.4 1998/02/06 02:23:26 brian Exp $
|
|
|
|
PROG= ppp
|
|
SRCS= arp.c async.c auth.c bundle.c ccp.c chap.c chat.c command.c deflate.c \
|
|
defs.c filter.c fsm.c hdlc.c id.c ip.c ipcp.c iplist.c lcp.c \
|
|
link.c log.c lqr.c main.c mbuf.c modem.c pap.c physical.c \
|
|
pred.c route.c server.c sig.c slcompress.c systems.c throughput.c \
|
|
timer.c tun.c vars.c vjcomp.c
|
|
CFLAGS+=-Wall -Wpointer-arith
|
|
LDADD+= -lmd -lcrypt -lutil -lz
|
|
DPADD+= ${LIBMD} ${LIBCRYPT} ${LIBUTIL} ${LIBZ}
|
|
MAN8= ppp.8
|
|
BINMODE=4550
|
|
BINOWN= root
|
|
BINGRP= network
|
|
|
|
.if defined(RELEASE_CRUNCH)
|
|
CFLAGS+=-DRELEASE_CRUNCH
|
|
.endif
|
|
|
|
.if defined(NOALIAS) || defined(RELEASE_CRUNCH)
|
|
CFLAGS+=-DNOALIAS
|
|
.else
|
|
SRCS+= alias_cmd.c loadalias.c
|
|
.endif
|
|
|
|
.if exists(${.CURDIR}/../../secure) && !defined(NOCRYPT) && !defined(NOSECURE) && !defined(RELEASE_CRUNCH)
|
|
CFLAGS+=-DHAVE_DES
|
|
SRCS+= chap_ms.c
|
|
LDADD+= -ldes
|
|
DPADD+= ${LIBDES}
|
|
.endif
|
|
|
|
.if defined(RELEASE_CRUNCH)
|
|
# We must create these objects because the crunchgen will link them,
|
|
# and we don't want any unused symbols to spoil the final link.
|
|
SRCS+= alias_cmd.c loadalias.c chap_ms.c
|
|
chap_ms.o alias_cmd.o loadalias.o:
|
|
>null_$*.c
|
|
cc -c -o $@ null_$*.c
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|