[asterisk-commits] rizzo: branch rizzo/cygwin_build r87952 - /team/rizzo/cygwin_build/main/

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Wed Oct 31 18:39:01 CDT 2007


Author: rizzo
Date: Wed Oct 31 18:39:00 2007
New Revision: 87952

URL: http://svn.digium.com/view/asterisk?view=rev&rev=87952
Log:
more compat stuff

Modified:
    team/rizzo/cygwin_build/main/Makefile
    team/rizzo/cygwin_build/main/loader.c

Modified: team/rizzo/cygwin_build/main/Makefile
URL: http://svn.digium.com/view/asterisk/team/rizzo/cygwin_build/main/Makefile?view=diff&rev=87952&r1=87951&r2=87952
==============================================================================
--- team/rizzo/cygwin_build/main/Makefile (original)
+++ team/rizzo/cygwin_build/main/Makefile Wed Oct 31 18:39:00 2007
@@ -88,6 +88,10 @@
   AST_LIBS+=-lcrypto
 endif
 
+ifeq ($(OSARCH),cygwin)
+  AST_LIBS+=-lminires
+endif
+
 ifeq ($(OSARCH),NetBSD)
   AST_LIBS+=-lpthread -lcrypto -lm -L/usr/pkg/lib $(EDITLINE_LIB)
 endif

Modified: team/rizzo/cygwin_build/main/loader.c
URL: http://svn.digium.com/view/asterisk/team/rizzo/cygwin_build/main/loader.c?view=diff&rev=87952&r1=87951&r2=87952
==============================================================================
--- team/rizzo/cygwin_build/main/loader.c (original)
+++ team/rizzo/cygwin_build/main/loader.c Wed Oct 31 18:39:00 2007
@@ -64,6 +64,9 @@
 #ifndef RTLD_NOW
 #define RTLD_NOW 0
 #endif
+#ifndef RTLD_LOCAL
+#define RTLD_LOCAL 0
+#endif
 
 struct ast_module_user {
 	struct ast_channel *chan;




More information about the asterisk-commits mailing list