[asterisk-commits] rizzo: trunk r89366 - /trunk/channels/Makefile

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Sat Nov 17 03:48:45 CST 2007


Author: rizzo
Date: Sat Nov 17 03:48:45 2007
New Revision: 89366

URL: http://svn.digium.com/view/asterisk?view=rev&rev=89366
Log:
filter out modules that do not compile under windows
(this should be handled with the dependencies generated by
configure and menuselect, but will be fixed later)


Modified:
    trunk/channels/Makefile

Modified: trunk/channels/Makefile
URL: http://svn.digium.com/view/asterisk/trunk/channels/Makefile?view=diff&rev=89366&r1=89365&r2=89366
==============================================================================
--- trunk/channels/Makefile (original)
+++ trunk/channels/Makefile Sat Nov 17 03:48:45 2007
@@ -34,6 +34,11 @@
 ifeq ($(OSARCH),NetBSD)
   PTLIB=-lpt_NetBSD_x86_r
   H323LIB=-lh323_NetBSD_x86_r
+endif
+
+ifneq ($(findstring $(OSARCH), mingw32 cygwin ),)
+  C_MODS:=$(filter-out chan_oss,$(C_MODS))
+  C_MODS:=$(filter-out chan_unistim,$(C_MODS))
 endif
 
 ifeq ($(wildcard h323/libchanh323.a),)




More information about the asterisk-commits mailing list