From cbb03e22e5dcafb8a58cbe7a53c5f5d601bc2da6 Mon Sep 17 00:00:00 2001 From: Ben Langfeld Date: Tue, 7 Jan 2014 15:23:52 -0200 Subject: [PATCH] Depend on iksemel --- Makefile.am | 4 ++-- README | 4 ++++ configure.ac | 1 + 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 215e708..c9ad4e3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -7,8 +7,8 @@ AUTOMAKE_OPTIONS = subdir-objects ## to provide a way for the user to supply additional arguments. ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS} -libcspeech_CFLAGS = $(PCRE_CFLAGS) -libcspeech_LIBADD = $(PCRE_LIBS) +libcspeech_CFLAGS = $(PCRE_CFLAGS) $(IKSEMEL_CFLAGS) +libcspeech_LIBADD = $(PCRE_LIBS) $(IKSEMEL_LIBS) ## Define a libtool archive target "libcspeech-@CSPEECH_API_VERSION@.la", with ## @CSPEECH_API_VERSION@ substituted into the generated Makefile at configure diff --git a/README b/README index ffea04e..e0cda37 100644 --- a/README +++ b/README @@ -2,3 +2,7 @@ cspeech ======= Speech document (SSML, SRGS, NLSML) modelling and matching for C + +# Dependencies + +* [iksemel](https://code.google.com/p/iksemel/) diff --git a/configure.ac b/configure.ac index c9e679f..edb0a5f 100644 --- a/configure.ac +++ b/configure.ac @@ -4,6 +4,7 @@ AC_PREREQ([2.59]) AM_INIT_AUTOMAKE([1.10 -Wall no-define]) PKG_CHECK_MODULES([PCRE], [libpcre]) +PKG_CHECK_MODULES([IKSEMEL], [iksemel]) # Generate two configuration headers; one for building the library itself with # an autogenerated template, and a second one that will be installed alongside