blob: 35cb9bec6a9d85cad9305a27ae5c78fee84acddb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
From 319c39458e72be82ed1ce60f0a386a146964f507 Mon Sep 17 00:00:00 2001
From: Sylvestre Ledru <sylvestre@debian.org>
Date: Sun, 13 Mar 2011 19:00:15 +0100
Subject: [PATCH] Fix underlinking (required to build with gold link editor)
See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=554753
---
mathmlps/Makefile.am | 1 +
mathmlsvg/Makefile.am | 2 ++
viewer/Makefile.am | 3 +++
3 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/mathmlps/Makefile.am b/mathmlps/Makefile.am
index 201f410..717cd20 100644
--- a/mathmlps/Makefile.am
+++ b/mathmlps/Makefile.am
@@ -17,6 +17,7 @@ mathmlps_LDADD = \
$(GLIB_LIBS) \
$(top_builddir)/src/backend/ps/libmathview_backend_ps.la \
$(top_builddir)/src/view/libmathview_frontend_libxml2.la \
+ $(top_builddir)/src/libmathview.la \
$(NULL)
INCLUDES = \
diff --git a/mathmlsvg/Makefile.am b/mathmlsvg/Makefile.am
index 2290230..8007350 100644
--- a/mathmlsvg/Makefile.am
+++ b/mathmlsvg/Makefile.am
@@ -30,6 +30,8 @@ mathmlsvg_LDADD = \
$(GLIB_LIBS) \
$(top_builddir)/src/backend/svg/libmathview_backend_svg.la \
$(top_builddir)/src/view/libmathview_frontend_libxml2.la \
+ $(top_builddir)/src/libmathview.la \
+ -lxml2 \
$(NULL)
INCLUDES = \
diff --git a/viewer/Makefile.am b/viewer/Makefile.am
index 7b950a0..67220b4 100644
--- a/viewer/Makefile.am
+++ b/viewer/Makefile.am
@@ -31,6 +31,7 @@ mathmlviewer_static_LDADD = \
$(DOM_LIBS) \
$(GTK_LIBS) \
$(top_builddir)/src/widget/libgtkmathview_gmetadom.la \
+ $(top_builddir)/src/engine/boxml/libboxml.la \
$(T1_LIBS) \
$(T1_LIBS_X) \
$(NULL)
@@ -88,6 +89,8 @@ test_rendering_LDADD = \
$(T1_LIBS_X) \
$(GLIB_LIBS) \
$(top_builddir)/src/backend/gtk/libmathview_backend_gtk.la \
+ $(top_builddir)/src/libmathview.la \
+ $(top_builddir)/src/engine/boxml/libboxml.la \
$(top_builddir)/src/view/libmathview_frontend_libxml2.la \
$(NULL)
--
1.7.8
|