From: Michael Jerris Date: Mon, 7 Dec 2009 07:59:34 +0000 (+0000) Subject: automake mod_iax X-Git-Tag: v1.0.6~1138 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4d72cd6ba0af148bb28437d026601a8d6eae5e0b;p=thirdparty%2Ffreeswitch.git automake mod_iax git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15819 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/configure.in b/configure.in index e0fac313f4..d5d4969aa7 100644 --- a/configure.in +++ b/configure.in @@ -791,6 +791,7 @@ AC_CONFIG_FILES([Makefile src/mod/applications/mod_expr/Makefile src/mod/applications/mod_stress/Makefile src/mod/applications/mod_t38gateway/Makefile + src/mod/endpoints/mod_iax/Makefile src/mod/endpoints/mod_sofia/Makefile src/mod/asr_tts/mod_unimrcp/Makefile src/mod/languages/mod_java/Makefile diff --git a/src/mod/endpoints/mod_iax/Makefile b/src/mod/endpoints/mod_iax/Makefile deleted file mode 100644 index dbaa0e1e9f..0000000000 --- a/src/mod/endpoints/mod_iax/Makefile +++ /dev/null @@ -1,6 +0,0 @@ -BASE=../../../.. -LOCAL_CFLAGS=-I. -DNEWJB -DLIBIAX -DDEBUG_SUPPORT -LOCAL_OBJS=iax2-parser.o iax.o md5.o jitterbuf.o iax-mutex.o - -include $(BASE)/build/modmake.rules - diff --git a/src/mod/endpoints/mod_iax/Makefile.am b/src/mod/endpoints/mod_iax/Makefile.am new file mode 100644 index 0000000000..b9a4f767b1 --- /dev/null +++ b/src/mod/endpoints/mod_iax/Makefile.am @@ -0,0 +1,8 @@ +include $(top_srcdir)/build/modmake.rulesam +MODNAME=mod_iax + +mod_LTLIBRARIES = mod_iax.la +mod_iax_la_SOURCES = mod_iax.c iax2-parser.c iax.c md5.c jitterbuf.c iax-mutex.c +mod_iax_la_CFLAGS = $(AM_CFLAGS) -I. -DNEWJB -DLIBIAX -DDEBUG_SUPPORT +mod_iax_la_LIBADD = $(switch_builddir)/libfreeswitch.la +mod_iax_la_LDFLAGS = -avoid-version -module -no-undefined