From: Matthew Jordan Date: Thu, 26 Feb 2015 04:56:28 +0000 (+0000) Subject: make: Remove 'res_features' from libraries to link against with cygwin/mingw32 X-Git-Tag: 11.17.0-rc1~25 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8bb48e1f5076c8593891265875696eedfb439590;p=thirdparty%2Fasterisk.git 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 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/11@432341 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/Makefile b/apps/Makefile index 7f8e7c9c29..ec17b11692 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -34,7 +34,7 @@ $(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 diff --git a/channels/Makefile b/channels/Makefile index f9b5b3ad78..12a09d75fc 100644 --- a/channels/Makefile +++ b/channels/Makefile @@ -54,7 +54,7 @@ all: _all include $(ASTTOPDIR)/Makefile.moddir_rules ifneq ($(findstring $(OSARCH), mingw32 cygwin ),) - LIBS+= -lres_monitor.so -lres_features.so + LIBS+= -lres_monitor.so endif ifneq ($(wildcard h323/Makefile.ast),)