[svn-commits] file: branch 1.4 r47380 - in /branches/1.4: ./ channels/chan_phone.c

svn-commits at lists.digium.com svn-commits at lists.digium.com
Thu Nov 9 09:53:26 MST 2006


Author: file
Date: Thu Nov  9 10:53:25 2006
New Revision: 47380

URL: http://svn.digium.com/view/asterisk?view=rev&rev=47380
Log:
Merged revisions 47379 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.2

........
r47379 | file | 2006-11-09 11:48:05 -0500 (Thu, 09 Nov 2006) | 2 lines

Don't include compiler.h on kernels 2.6.18 and higher as, well, it's apparently going to be removed. This should make all you FC6 fans happy as your Asterisk will now build without any mods.

........

Modified:
    branches/1.4/   (props changed)
    branches/1.4/channels/chan_phone.c

Propchange: branches/1.4/
------------------------------------------------------------------------------
Binary property 'branch-1.2-merged' - no diff available.

Modified: branches/1.4/channels/chan_phone.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/channels/chan_phone.c?view=diff&rev=47380&r1=47379&r2=47380
==============================================================================
--- branches/1.4/channels/chan_phone.c (original)
+++ branches/1.4/channels/chan_phone.c Thu Nov  9 10:53:25 2006
@@ -49,7 +49,9 @@
 /* Still use some IXJ specific stuff */
 #include <linux/version.h>
 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18)
 # include <linux/compiler.h>
+#endif
 #endif
 #include <linux/ixjuser.h>
 



More information about the svn-commits mailing list