[svn-commits] sruffell: linux/trunk r9328 - /linux/trunk/include/dahdi/dahdi_config.h
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Tue Sep 14 10:40:28 CDT 2010
Author: sruffell
Date: Tue Sep 14 10:40:17 2010
New Revision: 9328
URL: http://svnview.digium.com/svn/dahdi?view=rev&rev=9328
Log:
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)
Modified:
linux/trunk/include/dahdi/dahdi_config.h
Modified: linux/trunk/include/dahdi/dahdi_config.h
URL: http://svnview.digium.com/svn/dahdi/linux/trunk/include/dahdi/dahdi_config.h?view=diff&rev=9328&r1=9327&r2=9328
==============================================================================
--- linux/trunk/include/dahdi/dahdi_config.h (original)
+++ linux/trunk/include/dahdi/dahdi_config.h Tue Sep 14 10:40:17 2010
@@ -75,7 +75,7 @@
#endif
#endif
-#ifdef CONFIG_PPP
+#if defined(CONFIG_PPP) || defined(CONFIG_PPP_MODULE)
#define CONFIG_DAHDI_PPP
#endif
More information about the svn-commits
mailing list