]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
make: Remove 'res_features' from libraries to link against with cygwin/mingw32
authorMatthew Jordan <mjordan@digium.com>
Thu, 26 Feb 2015 04:56:28 +0000 (04:56 +0000)
committerMatthew Jordan <mjordan@digium.com>
Thu, 26 Feb 2015 04:56:28 +0000 (04:56 +0000)
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

apps/Makefile
channels/Makefile

index 7f8e7c9c29ea44e612b4931438e03ede27d9bf76..ec17b11692aef991c85bfa690e2a20ca4e0fdc13 100644 (file)
@@ -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
 
index f9b5b3ad7881cf2873d374d29e69c47b14d2a375..12a09d75fc4e85e5c65933371d4ec1f6d0264d32 100644 (file)
@@ -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),)