52cc0880db
All signal() calls have been changed to pending_signal() calls. pending_signal() is defined in the new sig.c file. It remembers the handler and traps the signal with a function that will remember the signal. main.c now calls handle_signals() to actually call the required handlers (if the above handler was called). If this doesn't close PR2662 (was PR2347), I'll cry. Joerg, I think this should go into 2.2, but I havn't done anything about it because I'm bound to botch it with the new sig.[ch] files. I've just "cvs add"'d sig.[ch] so far.... can you update to 2.2 and tell me what you did ? Thanks.
20 lines
576 B
Makefile
20 lines
576 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= ppp
|
|
SRCS= async.c auth.c ccp.c chap.c chat.c command.c filter.c fsm.c hdlc.c \
|
|
ip.c ipcp.c lcp.c lqr.c log.c main.c mbuf.c modem.c os.c \
|
|
pap.c pred.c route.c slcompress.c timer.c systems.c uucplock.c vars.c \
|
|
vjcomp.c arp.c alias.c alias_db.c alias_ftp.c alias_util.c \
|
|
passwdauth.c sig.c
|
|
#CFLAGS+= -DHAVE_SHELL_CMD_WITH_ANY_MODE
|
|
CFLAGS += -Wall -DUSE_PERROR -DMSEXT -DPASSWDAUTH
|
|
LDADD += -lmd -lcrypt -lutil
|
|
DPADD += ${LIBMD} ${LIBCRYPT} ${LIBUTIL}
|
|
MAN8= ppp.8
|
|
BINMODE=4555
|
|
BINOWN= root
|
|
|
|
.PATH: ${.CURDIR}/../../sbin/startslip
|
|
|
|
.include <bsd.prog.mk>
|