[asterisk-commits] mjordan: branch 11 r432341 - in /branches/11: apps/Makefile channels/Makefile
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Feb 25 22:56:30 CST 2015
Author: mjordan
Date: Wed Feb 25 22:56:28 2015
New Revision: 432341
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=432341
Log:
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
Modified:
branches/11/apps/Makefile
branches/11/channels/Makefile
Modified: branches/11/apps/Makefile
URL: http://svnview.digium.com/svn/asterisk/branches/11/apps/Makefile?view=diff&rev=432341&r1=432340&r2=432341
==============================================================================
--- branches/11/apps/Makefile (original)
+++ branches/11/apps/Makefile Wed Feb 25 22:56:28 2015
@@ -34,7 +34,7 @@
$(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
Modified: branches/11/channels/Makefile
URL: http://svnview.digium.com/svn/asterisk/branches/11/channels/Makefile?view=diff&rev=432341&r1=432340&r2=432341
==============================================================================
--- branches/11/channels/Makefile (original)
+++ branches/11/channels/Makefile Wed Feb 25 22:56:28 2015
@@ -54,7 +54,7 @@
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),)
More information about the asterisk-commits
mailing list