diff options
author | Pino Toscano <pino@kde.org> | 2012-08-15 18:59:15 +0200 |
---|---|---|
committer | Pino Toscano <pino@kde.org> | 2012-08-15 18:59:15 +0200 |
commit | 2df57857000c5adbee6b029ff7a79acc707786a0 (patch) | |
tree | 34baa66e1eb0d536ec776016fbfac2dfc2086c11 /test | |
parent | 3e802949264d9310df057daff891a3fccb2eb8d3 (diff) |
build: remove extra fontconfig CFLAGS and LIBS
fontconfig is used only in .cpp sources inside the 'poppler' subdirectory, so there is no need to add the include paths for it in other directories;
likewise, do not to link to it if not needed
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile.am | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/Makefile.am b/test/Makefile.am index 02529116..619d6718 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -39,8 +39,7 @@ INCLUDES = \ -I$(top_srcdir)/glib \ -I$(top_builddir)/glib \ $(cairo_includes) \ - $(GTK_TEST_CFLAGS) \ - $(FONTCONFIG_CFLAGS) + $(GTK_TEST_CFLAGS) noinst_PROGRAMS = $(pdf_inspector) $(perf_test) $(pdf_fullrewrite) $(gtk_test) @@ -53,8 +52,7 @@ gtk_test_LDADD = \ $(top_builddir)/poppler/libpoppler.la \ $(top_builddir)/glib/libpoppler-glib.la \ $(CAIRO_LIBS) \ - $(GTK_TEST_LIBS) \ - $(FONTCONFIG_LIBS) + $(GTK_TEST_LIBS) pdf_inspector_SOURCES = \ |