Skip to content
Snippets Groups Projects
Commit 270b6d97 authored by Luigi Rizzo's avatar Luigi Rizzo
Browse files

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)



git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@89366 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 130b6291
No related branches found
No related tags found
No related merge requests found
...@@ -36,6 +36,11 @@ ifeq ($(OSARCH),NetBSD) ...@@ -36,6 +36,11 @@ ifeq ($(OSARCH),NetBSD)
H323LIB=-lh323_NetBSD_x86_r H323LIB=-lh323_NetBSD_x86_r
endif 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),) ifeq ($(wildcard h323/libchanh323.a),)
CC_MODS:=$(filter-out chan_h323,$(CC_MODS)) CC_MODS:=$(filter-out chan_h323,$(CC_MODS))
endif endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment