mirror of https://gitee.com/openkylin/ppp.git
zzz_config
Debian-specific changes. Gbp-Pq: Name zzz_config
This commit is contained in:
parent
f78107dad8
commit
eba663cf22
|
@ -61,14 +61,14 @@ HAVE_MULTILINK=y
|
|||
USE_TDB=y
|
||||
|
||||
HAS_SHADOW=y
|
||||
#USE_PAM=y
|
||||
USE_PAM=y
|
||||
HAVE_INET6=y
|
||||
|
||||
# Enable plugins
|
||||
PLUGIN=y
|
||||
|
||||
# Enable Microsoft proprietary Callback Control Protocol
|
||||
#CBCP=y
|
||||
CBCP=y
|
||||
|
||||
# Enable EAP SRP-SHA1 authentication (requires libsrp)
|
||||
#USE_SRP=y
|
||||
|
@ -182,11 +182,9 @@ LIBS += -ldl
|
|||
endif
|
||||
|
||||
ifdef FILTER
|
||||
ifneq ($(wildcard /usr/include/pcap-bpf.h),)
|
||||
LIBS += -lpcap
|
||||
CFLAGS += -DPPP_FILTER
|
||||
endif
|
||||
endif
|
||||
|
||||
ifdef HAVE_INET6
|
||||
PPPDSRCS += ipv6cp.c eui64.c
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#define _PATH_AUTHUP _ROOT_PATH "/etc/ppp/auth-up"
|
||||
#define _PATH_AUTHDOWN _ROOT_PATH "/etc/ppp/auth-down"
|
||||
#define _PATH_TTYOPT _ROOT_PATH "/etc/ppp/options."
|
||||
#define _PATH_CONNERRS _ROOT_PATH "/etc/ppp/connect-errors"
|
||||
#define _PATH_CONNERRS _ROOT_PATH "/var/log/ppp-connect-errors"
|
||||
#define _PATH_PEERFILES _ROOT_PATH "/etc/ppp/peers/"
|
||||
#define _PATH_RESOLV _ROOT_PATH "/etc/ppp/resolv.conf"
|
||||
|
||||
|
|
|
@ -870,7 +870,7 @@ extern void (*snoop_send_hook) __P((unsigned char *p, int len));
|
|||
|| defined(DEBUGCHAP) || defined(DEBUG) || defined(DEBUGIPV6CP)
|
||||
#define LOG_PPP LOG_LOCAL2
|
||||
#else
|
||||
#define LOG_PPP LOG_DAEMON
|
||||
#define LOG_PPP LOG_LOCAL2
|
||||
#endif
|
||||
#endif /* LOG_PPP */
|
||||
|
||||
|
|
|
@ -2,9 +2,9 @@ DESTDIR = $(INSTROOT)@DESTDIR@
|
|||
BINDIR = $(DESTDIR)/sbin
|
||||
MANDIR = $(DESTDIR)/share/man/man8
|
||||
|
||||
DO_DEFLATE=y
|
||||
#DO_DEFLATE=y
|
||||
DO_BSD_COMPRESS=y
|
||||
HAVE_ZLIB=n
|
||||
HAVE_ZLIB=y
|
||||
|
||||
COPTS=-O2 -g
|
||||
CFLAGS= $(COPTS) -I../include/net
|
||||
|
|
Loading…
Reference in New Issue