[asterisk-commits] mjordan: branch 13 r432342 - in /branches/13: ./ apps/Makefile channels/Makefile
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Feb 25 22:58:21 CST 2015
Author: mjordan
Date: Wed Feb 25 22:58:19 2015
New Revision: 432342
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=432342
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
........
Merged revisions 432341 from http://svn.asterisk.org/svn/asterisk/branches/11
Modified:
branches/13/ (props changed)
branches/13/apps/Makefile
branches/13/channels/Makefile
Propchange: branches/13/
------------------------------------------------------------------------------
Binary property 'branch-11-merged' - no diff available.
Modified: branches/13/apps/Makefile
URL: http://svnview.digium.com/svn/asterisk/branches/13/apps/Makefile?view=diff&rev=432342&r1=432341&r2=432342
==============================================================================
--- branches/13/apps/Makefile (original)
+++ branches/13/apps/Makefile Wed Feb 25 22:58:19 2015
@@ -34,6 +34,6 @@
$(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/13/channels/Makefile
URL: http://svnview.digium.com/svn/asterisk/branches/13/channels/Makefile?view=diff&rev=432342&r1=432341&r2=432342
==============================================================================
--- branches/13/channels/Makefile (original)
+++ branches/13/channels/Makefile Wed Feb 25 22:58:19 2015
@@ -20,7 +20,7 @@
include $(ASTTOPDIR)/Makefile.moddir_rules
ifneq ($(findstring $(OSARCH), mingw32 cygwin ),)
- LIBS+= -lres_monitor.so -lres_features.so
+ LIBS+= -lres_monitor.so
endif
clean::
More information about the asterisk-commits
mailing list