diff options
author | Tim Mooney <enchanter@users.sourceforge.net> | 2008-11-13 22:32:22 +0100 |
---|---|---|
committer | Albert Astals Cid <aacid@kde.org> | 2008-11-13 22:32:22 +0100 |
commit | 03061fdae49842556c9ff48e61914fc88502e1d8 (patch) | |
tree | da713c74f5d2cb142f4fbdf30c968e93d689eaca /test/Makefile.am | |
parent | 17b18be4fd25f2ca2b4ed7382d9fda50410c44f1 (diff) |
Fix build on Solaris 10 + Sun Studio 12.
Fixes bug 17496
Diffstat (limited to 'test/Makefile.am')
-rw-r--r-- | test/Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/Makefile.am b/test/Makefile.am index 0ec255f6..6abef193 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -72,7 +72,8 @@ pdf_inspector_LDADD = \ $(top_builddir)/poppler/libpoppler.la \ $(CAIRO_LIBS) \ $(FREETYPE_LIBS) \ - $(GTK_TEST_LIBS) + $(GTK_TEST_LIBS) \ + $(X_EXTRA_LIBS) perf_test_SOURCES = \ perf-test.cc \ @@ -80,7 +81,8 @@ perf_test_SOURCES = \ perf_test_LDADD = \ $(top_builddir)/poppler/libpoppler.la \ - $(FREETYPE_LIBS) + $(FREETYPE_LIBS) \ + $(X_EXTRA_LIBS) pdf_fullrewrite_SOURCES = \ pdf-fullrewrite.cc |