# HG changeset patch # User Aki Tuomi # Date 1452157790 -7200 # Node ID d7bce1945b52eabd21141fbe80424b10fb645483 # Parent 8bb95d42e5eacdfb0b9e6dad9b074260918fb87c lib-fts: Add lib-fts to CPPFLAGS as include dir Without this, VPATH builds fail because the includes cannot be found as they are not on same directory. diff -r 8bb95d42e5ea -r d7bce1945b52 src/lib-fts/Makefile.am --- a/src/lib-fts/Makefile.am Fri Jan 15 18:03:11 2016 +0200 +++ b/src/lib-fts/Makefile.am Thu Jan 07 11:09:50 2016 +0200 @@ -1,9 +1,13 @@ noinst_LTLIBRARIES = libfts.la +# I$(top_srcdir)/src/lib-fts needed to include +# word-break-data.c and word-boundary-data.c +# in fts-tokenizer-generic.c AM_CPPFLAGS = \ -I$(top_srcdir)/src/lib \ -I$(top_srcdir)/src/lib-test \ -I$(top_srcdir)/src/lib-mail \ + -I$(top_srcdir)/src/lib-fts \ $(LIBEXTTEXTCAT_CFLAGS) \ $(LIBICU_CFLAGS) \ -DUDHRDIR=\""$(top_srcdir)/src/lib-fts"\" \