From cfd46b51a2224467c809bd12bb58356fd688d24c Mon Sep 17 00:00:00 2001 From: Shaun Ruffell Date: Fri, 21 Jan 2011 05:29:32 +0000 Subject: [PATCH] dahdi: Fix for when PPP support is compiled as a kernel module. When compiling dahdi-linux I expect ppp support to be compiled in even if the kernel config has PPP configured as a module. (closes issue #17990) Reported by: jkroon Patches: dahdi-config-ppp.diff uploaded by jkroon (license 714) Origin: http://svnview.digium.com/svn/dahdi?view=rev&rev=9328 git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/branches/2.4@9669 a0bf4364-ded3-4de4-8d8a-66a801d63aff --- include/dahdi/dahdi_config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/dahdi/dahdi_config.h b/include/dahdi/dahdi_config.h index ca16ded..d477c71 100644 --- a/include/dahdi/dahdi_config.h +++ b/include/dahdi/dahdi_config.h @@ -75,7 +75,7 @@ #endif #endif -#ifdef CONFIG_PPP +#if defined(CONFIG_PPP) || defined(CONFIG_PPP_MODULE) #define CONFIG_DAHDI_PPP #endif