From: Luigi Rizzo Date: Tue, 20 Nov 2007 07:42:38 +0000 (+0000) Subject: initial makefile changes to build loadable modules under cygwin X-Git-Tag: 1.6.0-beta1~3^2~758 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a7a0ca9f93b94a04af2688c1ddc4faf0b833c684;p=thirdparty%2Fasterisk.git initial makefile changes to build loadable modules under cygwin (not complete yet - still need to sort out dependecies on res_*) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@89443 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/Makefile b/Makefile index 7730cdf9ba..538ef8e686 100644 --- a/Makefile +++ b/Makefile @@ -277,10 +277,6 @@ ifeq ($(OSARCH),SunOS) SOLINK=-shared -fpic -L/usr/local/ssl/lib endif -ifneq ($(findstring $(OSARCH), mingw32 cygwin ),) - SOLINK=-Xlinker -r -endif - # This is used when generating the doxygen documentation ifneq ($(DOT),:) HAVEDOT=yes @@ -298,7 +294,7 @@ else endif # comment to print directories during submakes -PRINT_DIR:= --no-print-directory +PRINT_DIR?= --no-print-directory all: _all @echo " +--------- Asterisk Build Complete ---------+" diff --git a/Makefile.moddir_rules b/Makefile.moddir_rules index 17924be56d..54113de741 100644 --- a/Makefile.moddir_rules +++ b/Makefile.moddir_rules @@ -63,6 +63,13 @@ modules.link: $(addsuffix .eo,$(filter $(EMBEDDED_MODS),$(C_MODS))) ifneq ($(LOADABLE_MODS),) _all: $(LOADABLE_MODS:%=%.so) +ifneq ($(findstring $(OSARCH), mingw32 cygwin ),) + # linker options and extra libraries for cygwin + SOLINK=-Wl,--out-implib=lib$@.a -shared + LIBS+=-L../main -lasterisk -L../res + # additional libraries in res/ + LIBS_RES:= -lres_monitor -lres_adsi -lres_features +endif endif ifneq ($(EMBEDDED_MODS),) diff --git a/main/Makefile b/main/Makefile index 9790b5c04f..b9894e7ab4 100644 --- a/main/Makefile +++ b/main/Makefile @@ -87,7 +87,7 @@ endif ifneq ($(findstring $(OSARCH), mingw32 cygwin ),) AST_LIBS+=-lminires -ldl - ASTLINK+= -shared -Wl,--out-implib,asterisk.dll + ASTLINK+= -shared -Wl,--out-implib,libasterisk.a endif ifeq ($(OSARCH),NetBSD) AST_LIBS+=-lpthread -lcrypto -lm -L/usr/pkg/lib $(EDITLINE_LIB)