[svn-commits] sruffell: branch linux/2.4 r9669 - /linux/branches/2.4/include/dahdi/

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Jan 20 23:29:36 CST 2011


Author: sruffell
Date: Thu Jan 20 23:29:32 2011
New Revision: 9669

URL: http://svnview.digium.com/svn/dahdi?view=rev&rev=9669
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)

Origin: http://svnview.digium.com/svn/dahdi?view=rev&rev=9328

Modified:
    linux/branches/2.4/include/dahdi/dahdi_config.h

Modified: linux/branches/2.4/include/dahdi/dahdi_config.h
URL: http://svnview.digium.com/svn/dahdi/linux/branches/2.4/include/dahdi/dahdi_config.h?view=diff&rev=9669&r1=9668&r2=9669
==============================================================================
--- linux/branches/2.4/include/dahdi/dahdi_config.h (original)
+++ linux/branches/2.4/include/dahdi/dahdi_config.h Thu Jan 20 23:29:32 2011
@@ -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