summaryrefslogtreecommitdiff
path: root/apps/Makefile
diff options
context:
space:
mode:
authorMatthew Jordan <mjordan@digium.com>2015-02-26 04:58:38 +0000
committerMatthew Jordan <mjordan@digium.com>2015-02-26 04:58:38 +0000
commit8a16c2f0c24925877ba9e2d38fd0b38248a4ab9e (patch)
treef15ee4ce49ab6ca20bf867060b0aa582c40ce5cb /apps/Makefile
parent3725173b9e18374e84af2fed59c245d5d15eb4bb (diff)
make: Remove 'res_features' from libraries to link against with cygwin/mingw32
Both the apps and channels Makefiles still listed 'res_features' as modules to link against when compiling for cygwin or mingw32. This module hasn't existed for quite some time. ASTERISK-18105 #close Reported by: feyfre ........ Merged revisions 432341 from http://svn.asterisk.org/svn/asterisk/branches/11 ........ Merged revisions 432342 from http://svn.asterisk.org/svn/asterisk/branches/13 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@432343 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/Makefile')
-rw-r--r--apps/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/Makefile b/apps/Makefile
index 1d5d2b38d..1dfe8c838 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -34,6 +34,6 @@ $(if $(filter app_confbridge,$(EMBEDDED_MODS)),modules.link,app_confbridge.so):
$(subst .c,.o,$(wildcard confbridge/*.c)): _ASTCFLAGS+=$(call MOD_ASTCFLAGS,app_confbridge)
ifneq ($(findstring $(OSARCH), mingw32 cygwin ),)
- LIBS+= -lres_features.so -lres_ael_share.so -lres_monitor.so -lres_speech.so
+ LIBS+= -lres_ael_share.so -lres_monitor.so -lres_speech.so
LIBS+= -lres_smdi.so
endif