2012-06-20 01:03:24 +08:00
|
|
|
pppd: tune Linux config defaults for OpenWrt
|
|
|
|
|
|
|
|
This patch adjusts a number defaults to properly match the OpenWrt environment.
|
|
|
|
It is not intended for upstream.
|
|
|
|
|
|
|
|
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
|
|
|
|
|
2009-05-21 18:49:21 +08:00
|
|
|
--- a/pppd/Makefile.linux
|
|
|
|
+++ b/pppd/Makefile.linux
|
2010-02-22 10:26:32 +08:00
|
|
|
@@ -48,7 +48,7 @@ MPPE=y
|
2005-05-19 02:05:44 +08:00
|
|
|
# Uncomment the next line to include support for PPP packet filtering.
|
|
|
|
# This requires that the libpcap library and headers be installed
|
|
|
|
# and that the kernel driver support PPP packet filtering.
|
|
|
|
-FILTER=y
|
|
|
|
+#FILTER=y
|
|
|
|
|
|
|
|
# Uncomment the next line to enable multilink PPP (enabled by default)
|
|
|
|
# Linux distributions: Please leave multilink ENABLED in your builds
|
2014-06-16 04:55:17 +08:00
|
|
|
@@ -58,7 +58,7 @@ HAVE_MULTILINK=y
|
2005-05-19 02:05:44 +08:00
|
|
|
# Uncomment the next line to enable the TDB database (enabled by default.)
|
|
|
|
# If you enable multilink, then TDB is automatically enabled also.
|
|
|
|
# Linux distributions: Please leave TDB ENABLED in your builds.
|
|
|
|
-USE_TDB=y
|
|
|
|
+#USE_TDB=y
|
|
|
|
|
2014-06-16 04:55:17 +08:00
|
|
|
HAS_SHADOW=y
|
2005-05-19 02:05:44 +08:00
|
|
|
#USE_PAM=y
|
2014-06-16 04:55:17 +08:00
|
|
|
@@ -80,7 +80,7 @@ MAXOCTETS=y
|
2005-05-19 02:05:44 +08:00
|
|
|
|
|
|
|
INCLUDE_DIRS= -I../include
|
|
|
|
|
|
|
|
-COMPILE_FLAGS= -DHAVE_PATHS_H -DIPX_CHANGE -DHAVE_MMAP
|
|
|
|
+COMPILE_FLAGS= -DHAVE_PATHS_H -DHAVE_MMAP
|
|
|
|
|
2009-05-21 06:36:38 +08:00
|
|
|
CFLAGS= $(COPTS) $(COMPILE_FLAGS) $(INCLUDE_DIRS) '-DDESTDIR="@DESTDIR@"'
|
2005-05-19 02:05:44 +08:00
|
|
|
|
2014-06-16 04:55:17 +08:00
|
|
|
@@ -120,10 +120,10 @@ CFLAGS += -DHAS_SHADOW
|
2005-05-19 02:05:44 +08:00
|
|
|
#LIBS += -lshadow $(LIBS)
|
|
|
|
endif
|
|
|
|
|
|
|
|
-ifneq ($(wildcard /usr/include/crypt.h),)
|
|
|
|
+#ifneq ($(wildcard /usr/include/crypt.h),)
|
2009-05-21 06:36:38 +08:00
|
|
|
CFLAGS += -DHAVE_CRYPT_H=1
|
2005-05-19 02:05:44 +08:00
|
|
|
LIBS += -lcrypt
|
|
|
|
-endif
|
|
|
|
+#endif
|
|
|
|
|
2014-06-16 04:55:17 +08:00
|
|
|
ifdef USE_LIBUTIL
|
|
|
|
CFLAGS += -DHAVE_LOGWTMP=1
|