diff options
author | Murray Cumming <murrayc@murrayc.com> | 2012-03-12 10:19:58 +0100 |
---|---|---|
committer | Murray Cumming <murrayc@murrayc.com> | 2012-03-12 10:19:58 +0100 |
commit | afb74f258886813e99e6d3ffdfcf8df6df31f110 (patch) | |
tree | be90764e60e61b9ac974d665283ec444f165fbf9 | |
parent | 4f0140b706b11a4f7fa40277a7b76376babe68d9 (diff) |
Fix linker problem with the examples.
* examples/Makefile.am: Add CAIROMM_LIBS.
This is needed now to a change in behaviour of the linker
in recent distro versions.
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | examples/Makefile.am | 2 |
2 files changed, 9 insertions, 1 deletions
@@ -1,3 +1,11 @@ +2012-03-12 Murray Cumming <murrayc@murrayc.com> + + Fix linker problem with the examples. + + * examples/Makefile.am: Add CAIROMM_LIBS. + This is needed now to a change in behaviour of the linker + in recent distro versions. + 2010-11-03 Mark Vender <markv743@yahoo.co.uk> Update the documentation. diff --git a/examples/Makefile.am b/examples/Makefile.am index e0d3fbc..5f3418e 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -11,7 +11,7 @@ check_PROGRAMS = surfaces/pdf-surface \ AM_CPPFLAGS = -I$(top_builddir) $(if $(srcdir:.=),-I$(top_srcdir)) $(CAIROMM_CFLAGS) AM_CXXFLAGS = $(CAIROMM_WXXFLAGS) -LDADD = $(top_builddir)/cairomm/libcairomm-$(CAIROMM_API_VERSION).la +LDADD = $(CAIROMM_LIBS) $(top_builddir)/cairomm/libcairomm-$(CAIROMM_API_VERSION).la surfaces_pdf_surface_SOURCES = surfaces/pdf-surface.cc surfaces_ps_surface_SOURCES = surfaces/ps-surface.cc |