mirror of
https://github.com/opnsense/src.git
synced 2026-03-25 04:03:09 -04:00
o Use syslog
o Remove references to stdout/stderr (incl perror())
o Introduce VarTerm - the interactive terminal or zero
o Allow "set timeout" to affect current session
o Change "set debug" to "set log"
o Allow "set log [+|-]flag"
o Make MSEXT and PASSWDAUTH stuff the default
o Move all #ifdef DEBUG stuff into the code - this
shouldn't be too much overhead. It's now controlled
with "set log +debug"
o Add "set log command, debug, tun, warn, error, alert"
o Remove cdefs.h, and assume an ansi compiler.
o Improve all diagnostic output
o Don't trap SIGSEGV
o SIGHUP now terminates again (log files are controlled
by syslog)
o Call CloseModem() when changing devices
o Fix parsing of third arg of "delete"
I think this fixes the "magic is same" problems that some
people have been experiencing.
The man page is being rewritten. It'll follow soon.
15 lines
466 B
Makefile
15 lines
466 B
Makefile
# $Id: Makefile,v 1.20 1997/05/26 00:43:54 brian Exp $
|
|
|
|
PROG= ppp
|
|
SRCS= alias_cmd.c arp.c async.c auth.c ccp.c chap.c chat.c command.c \
|
|
filter.c fsm.c hdlc.c ip.c ipcp.c lcp.c loadalias.c log.c lqr.c \
|
|
main.c mbuf.c modem.c os.c pap.c passwdauth.c pred.c route.c sig.c \
|
|
slcompress.c systems.c timer.c vars.c vjcomp.c
|
|
CFLAGS+=-Wall
|
|
LDADD+= -lmd -lcrypt -lutil
|
|
DPADD+= ${LIBMD} ${LIBCRYPT} ${LIBUTIL}
|
|
MAN8= ppp.8
|
|
BINMODE=4555
|
|
BINOWN= root
|
|
|
|
.include <bsd.prog.mk>
|