]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
fix file refrences that subdir-objects doesn't like
authorMichael Jerris <mike@jerris.com>
Sun, 9 Mar 2014 20:06:02 +0000 (16:06 -0400)
committerMichael Jerris <mike@jerris.com>
Sun, 9 Mar 2014 20:06:02 +0000 (16:06 -0400)
src/mod/codecs/mod_silk/Makefile.am
src/mod/event_handlers/mod_cdr_mongodb/Makefile.am
src/mod/formats/mod_portaudio_stream/Makefile.am

index b73a8d194751afdf98535785ec02711841d95bea..b1e1062f8a2ee42741a099e501a57463e29992af 100644 (file)
@@ -6,7 +6,7 @@ SILK_BUILDDIR=$(switch_builddir)/libs/silk
 SILK_LA=$(SILK_BUILDDIR)/.libs/libSKP_SILK_SDK.la
 
 mod_LTLIBRARIES = mod_silk.la
-mod_silk_la_SOURCES  = mod_silk.c $(switch_srcdir)/libs/stfu/stfu.c
+mod_silk_la_SOURCES  = mod_silk.c ../../../../libs/stfu/stfu.c
 mod_silk_la_CFLAGS   = $(AM_CFLAGS) -I$(SILK_DIR)/src  -I$(SILK_DIR)/interface
 mod_silk_la_LIBADD   = $(switch_builddir)/libfreeswitch.la $(SILK_LA)
 mod_silk_la_LDFLAGS  = -avoid-version -module -no-undefined -shared
index 87cb8d4d6c9da719ab782e7e70c538b54d5bcb3e..68f5d3814bb2875452517ac339e4d22aa8e2e9c0 100644 (file)
@@ -2,7 +2,7 @@ include $(top_srcdir)/build/modmake.rulesam
 MODNAME=mod_cdr_mongodb
 MONGODB_DRIVER=./driver/src
 mod_LTLIBRARIES = mod_cdr_mongodb.la
-mod_cdr_mongodb_la_SOURCES  = mod_cdr_mongodb.c $(MONGODB_DRIVER)/encoding.c $(MONGODB_DRIVER)/env_posix.c $(MONGODB_DRIVER)/bson.c $(MONGODB_DRIVER)/md5.c $(MONGODB_DRIVER)/mongo.c $(MONGODB_DRIVER)/numbers.c
+mod_cdr_mongodb_la_SOURCES  = mod_cdr_mongodb.c ./driver/src/encoding.c ./driver/src/env_posix.c ./driver/src/bson.c ./driver/src/md5.c ./driver/src/mongo.c ./driver/src/numbers.c
 mod_cdr_mongodb_la_CFLAGS   = $(AM_CFLAGS)
 mod_cdr_mongodb_la_CPPFLAGS = -I$(MONGODB_DRIVER) -I$(switch_srcdir)/libs/stfu/ -I$(switch_srcdir)/libs/libteletone/src/ -D_GNU_SOURCE                          
 mod_cdr_mongodb_la_LIBADD   = $(switch_builddir)/libfreeswitch.la
index ae9896a7b06534f793e00f99fb09dde0402396d2..4ca5d8075700f58543eaa2359740c7c5ca215708 100644 (file)
@@ -6,7 +6,7 @@ PALA=$(switch_builddir)/libs/portaudio/lib/libportaudio.la
 MODPA_DIR=$(switch_srcdir)/src/mod/endpoints/mod_portaudio
 
 mod_LTLIBRARIES = mod_portaudio_stream.la
-mod_portaudio_stream_la_SOURCES = mod_portaudio_stream.c $(MODPA_DIR)/pablio.c $(MODPA_DIR)/pa_ringbuffer.c
+mod_portaudio_stream_la_SOURCES = mod_portaudio_stream.c ../../endpoints/mod_portaudio/pablio.c ../../endpoints/mod_portaudio/pa_ringbuffer.c
 mod_portaudio_stream_la_CFLAGS = -I. -I$(PA_DIR)/include -D__EXTENSION__=1 -I$(MODPA_DIR) $(AM_CFLAGS)
 mod_portaudio_stream_la_LIBADD = $(switch_builddir)/libfreeswitch.la $(PALA)
 mod_portaudio_stream_la_LDFLAGS = -avoid-version -module -no-undefined -shared $(PA_LIBS)