mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-06 19:58:34 +00:00
[apr] Backport APR_RING_FOREACH and APR_RING_FOREACH_SAFE macros to APR for unimrcp compatibility. [unimrcp] configure.gnu - need full path, not relative path for library paths [unimrcp] added uni_revision.h - couldn't get it to autogenerate from build [mod_unimrcp] add better logging and error checking on module load. Currently dumps core on MRCPv1 TTS attempt [mod_unimrcp] don't configure MRCPv1 session with a connection agent- causes crash
17 lines
680 B
Makefile
17 lines
680 B
Makefile
AM_CPPFLAGS = -I$(top_srcdir)/platforms/unimrcp-client/include \
|
|
$(UNIMRCP_CLIENTAPP_INCLUDES)
|
|
|
|
bin_PROGRAMS = unimrcpclient
|
|
|
|
unimrcpclient_SOURCES = src/main.c \
|
|
src/demo_framework.c \
|
|
src/demo_synth_application.c \
|
|
src/demo_recog_application.c \
|
|
src/demo_bypass_application.c \
|
|
src/demo_discover_application.c \
|
|
src/demo_util.c
|
|
unimrcpclient_LDADD = $(UNIMRCP_CLIENTAPP_LIBS)
|
|
unimrcpclient_LDFLAGS = $(UNIMRCP_CLIENTAPP_OPTS)
|
|
|
|
include $(top_srcdir)/build/rules/uniclientapp.am
|