[asterisk-commits] rizzo: trunk r90834 - /trunk/res/Makefile

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue Dec 4 05:50:05 CST 2007


Author: rizzo
Date: Tue Dec  4 05:50:05 2007
New Revision: 90834

URL: http://svn.digium.com/view/asterisk?view=rev&rev=90834
Log:
fix build on cygwin

Modified:
    trunk/res/Makefile

Modified: trunk/res/Makefile
URL: http://svn.digium.com/view/asterisk/trunk/res/Makefile?view=diff&rev=90834&r1=90833&r2=90834
==============================================================================
--- trunk/res/Makefile (original)
+++ trunk/res/Makefile Tue Dec  4 05:50:05 2007
@@ -26,10 +26,13 @@
 include $(ASTTOPDIR)/Makefile.moddir_rules
 
 ifneq ($(findstring $(OSARCH), mingw32 cygwin ),)
-  # order-only dependency: build res_monitor before res_features
+  # cygwin has some dependencies among res_ things.
+  # We use order-only dependencies, and then add the libraries as required.
   res_features.so: | res_monitor.so
-  # res_features uses some functions from res_monitor
   res_features.so_LIBS:= -lres_monitor.so
+  #
+  res_agi.so: | res_speech.so
+  res_agi.so_LIBS:= -lres_speech.so
 endif
 
 ael/ael_lex.o: ael/ael_lex.c ../include/asterisk/ael_structs.h ael/ael.tab.h




More information about the asterisk-commits mailing list