mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 00:34:33 -05:00
MD4Update(), but our version in libmd expects a byte count. This code is not currently compiled or linked into pppd, so I'm reasonably sure I didn't break anything. :-) I added the necessary statements to the Makefile, but left them commented out because we are in feature freeze. When the code is enabled, we must be careful to build it only if the DES library is available.
36 lines
714 B
Makefile
36 lines
714 B
Makefile
# $Id: Makefile,v 1.11 1998/09/19 22:42:11 obrien Exp $
|
|
|
|
CFLAGS+= -DHAVE_PATHS_H
|
|
|
|
PROG= pppd
|
|
SRCS= main.c magic.c fsm.c lcp.c ipcp.c ipxcp.c upap.c chap.c ccp.c \
|
|
demand.c auth.c options.c sys-bsd.c
|
|
MAN8= pppd.8
|
|
BINMODE=4555
|
|
|
|
# as per handbook policies section
|
|
MAINTAINER= peter@freebsd.org
|
|
|
|
LDADD= -lcrypt -lutil -lmd
|
|
DPADD= ${LIBCRYPT} ${LIBUTIL} ${LIBMD}
|
|
|
|
# Support SPX/IPX - not quite ready
|
|
#CFLAGS+=-DIPX_CHANGE
|
|
#SRCS+= ipxcp.c
|
|
|
|
# Callback Control Protocol
|
|
CFLAGS+=-DCBCP_SUPPORT
|
|
SRCS+= cbcp.c
|
|
|
|
# Filter support
|
|
CFLAGS+=-DPPP_FILTER
|
|
LDADD+= -lpcap
|
|
DPADD+= ${LIBPCAP}
|
|
|
|
# MS-CHAP support. Requires the DES library.
|
|
#CFLAGS+=-DCHAPMS
|
|
#SRCS+= chap_ms.c
|
|
#LDADD+= -ldes
|
|
#DPADD+= ${LIBDES}
|
|
|
|
.include <bsd.prog.mk>
|