From: Emden R. Gansner Date: Sat, 13 Feb 2016 20:51:21 +0000 (-0500) Subject: Add additional dependency when using libgvplugin_pango_C. X-Git-Tag: TRAVIS_CI_BUILD_EXPERIMENTAL~37 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a00dd858a77c394ddd04d668fda2136d94cfb5bb;p=graphviz Add additional dependency when using libgvplugin_pango_C. --- diff --git a/ChangeLog b/ChangeLog index aeb6582ff..bd81b6d9c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,10 @@ February 13, 2016 - Add cylinder shape for databases. - Free installed plugins + - Update makefile for dot so that the using libpanco_C in the static build include PANGOFT2 + as well as PANGOCAIRO_LIBS + - Update makefile for dot so that the using libpanco_C in the static build include PANGOFT2 + as well as PANGOCAIRO_LIBS (needed for some versions of Ubuntu) September 9, 2014 - Add plain shape for use with HTML-like labels. August 12, 2014 diff --git a/cmd/dot/Makefile.am b/cmd/dot/Makefile.am index c1a61cff0..d7edc7ba5 100644 --- a/cmd/dot/Makefile.am +++ b/cmd/dot/Makefile.am @@ -111,7 +111,7 @@ if WITH_WEBP dot_static_LDADD += $(top_builddir)/plugin/webp/.libs/libgvplugin_webp_C.a $(WEBP_LIBS) dot_builtins_LDADD += $(top_builddir)/plugin/webp/libgvplugin_webp.la $(WEBP_LIBS) endif -dot_static_LDADD += $(top_builddir)/plugin/pango/.libs/libgvplugin_pango_C.a $(PANGOCAIRO_LIBS) +dot_static_LDADD += $(top_builddir)/plugin/pango/.libs/libgvplugin_pango_C.a $(PANGOCAIRO_LIBS) $(PANGOFT2_LIBS) dot_builtins_LDADD += $(top_builddir)/plugin/pango/libgvplugin_pango.la $(PANGOCAIRO_LIBS) if WITH_WEBP dot_static_LDADD += $(top_builddir)/plugin/webp/.libs/libgvplugin_webp_C.a $(WEBP_LIBS)