]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
fix portaudio build with jack
authorMichael Jerris <mike@jerris.com>
Fri, 11 Dec 2009 18:12:55 +0000 (18:12 +0000)
committerMichael Jerris <mike@jerris.com>
Fri, 11 Dec 2009 18:12:55 +0000 (18:12 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15911 d0543943-73ff-0310-b7d9-9358b9ac24b2

configure.in
src/mod/endpoints/mod_portaudio/Makefile.am
src/mod/formats/mod_portaudio_stream/Makefile.am

index ae778edb661cb82554c1868fa96011b792711876..4e10533359b4615962655a9625a4399b8ef77132 100644 (file)
@@ -305,11 +305,19 @@ if test "x$enable_zrtp" = "xyes" ; then
    APR_ADDTO(SWITCH_AM_CFLAGS, -DENABLE_ZRTP)
 fi
 
+PA_LIBS=
+
+PKG_CHECK_MODULES(JACK, jack, have_jack=yes, have_jack=no)
+if test "x$have_jack" = "xyes" ; then
+PA_LIBS+=$JACK_LIBS
+fi
+
 AC_CHECK_LIB(asound, snd_pcm_open, have_alsa=yes, have_alsa=no)
 if test "x$have_alsa" = "xyes"  ; then
-ALSA_LIBS=-lasound
+PA_LIBS+=-lasound
 fi
-AC_SUBST(ALSA_LIBS)
+
+AC_SUBST(PA_LIBS)
 
 AM_CONDITIONAL([ENABLE_ZRTP],[test "x$enable_zrtp" != "xno"])
 
index 76c1f738a55d7a85d5a4dc938ca5e27d3c35973d..56f82daf79c5ad972a656526d1c40fbeda751e9a 100644 (file)
@@ -9,7 +9,7 @@ mod_portaudio_la_SOURCES = mod_portaudio.c pablio.c pa_ringbuffer.c
 mod_portaudio_la_CFLAGS  = $(AM_CFLAGS)
 mod_portaudio_la_CFLAGS += -I. -I$(PA_DIR)/include -D__EXTENSION__=1 
 mod_portaudio_la_LIBADD = $(switch_builddir)/libfreeswitch.la $(PALA)
-mod_portaudio_la_LDFLAGS = -avoid-version -module -no-undefined -shared $(ALSA_LIBS)
+mod_portaudio_la_LDFLAGS = -avoid-version -module -no-undefined -shared $(PA_LIBS)
 
 if ISMAC
 mod_portaudio_la_LDFLAGS += -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon
index abb9f2e4b65e3eff06719e1cbbceab99548404ba..9b9900c03ae642cb852634488356ba763805cbcc 100644 (file)
@@ -10,7 +10,7 @@ mod_portaudio_stream_la_SOURCES = mod_portaudio_stream.c $(MODPA_DIR)/pablio.c $
 mod_portaudio_stream_la_CFLAGS  = $(AM_CFLAGS)
 mod_portaudio_stream_la_CFLAGS += -I. -I$(PA_DIR)/include -D__EXTENSION__=1 -I$(MODPA_DIR)
 mod_portaudio_stream_la_LIBADD = $(switch_builddir)/libfreeswitch.la $(PALA)
-mod_portaudio_stream_la_LDFLAGS = -avoid-version -module -no-undefined -shared $(ALSA_LIBS)
+mod_portaudio_stream_la_LDFLAGS = -avoid-version -module -no-undefined -shared $(PA_LIBS)
 
 if ISMAC
 mod_portaudio_stream_la_LDFLAGS += -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework Carbon