diff options
author | Robert Ancell <robert.ancell@canonical.com> | 2010-12-22 15:01:50 +1100 |
---|---|---|
committer | Robert Ancell <robert.ancell@canonical.com> | 2010-12-22 15:01:50 +1100 |
commit | f4419be0d68c84ea94488bf1c75c4b6f767b8773 (patch) | |
tree | 349f386a4e6369a9092b5c00bce0cc083fcf25f9 | |
parent | e60eff282aaa6b0e3f79876e8414911a5b34c6cf (diff) | |
download | gtk+-f4419be0d68c84ea94488bf1c75c4b6f767b8773.tar.gz |
Fix DSO link issues
-rw-r--r-- | demos/Makefile.am | 1 | ||||
-rw-r--r-- | demos/gtk-demo/Makefile.am | 1 | ||||
-rw-r--r-- | docs/tools/Makefile.am | 2 | ||||
-rw-r--r-- | gtk/tests/Makefile.am | 1 | ||||
-rw-r--r-- | perf/Makefile.am | 1 | ||||
-rw-r--r-- | tests/Makefile.am | 1 |
6 files changed, 7 insertions, 0 deletions
diff --git a/demos/Makefile.am b/demos/Makefile.am index efdd0b1183..dc6fcb632b 100644 --- a/demos/Makefile.am +++ b/demos/Makefile.am @@ -16,6 +16,7 @@ DEPS = \ LDADDS = \ $(top_builddir)/gtk/libgtk-3.0.la \ + $(top_builddir)/gdk/libgdk-3.0.la \ $(GTK_DEP_LIBS) \ $(MATH_LIB) diff --git a/demos/gtk-demo/Makefile.am b/demos/gtk-demo/Makefile.am index 1a5a6770a5..5385dcbbb4 100644 --- a/demos/gtk-demo/Makefile.am +++ b/demos/gtk-demo/Makefile.am @@ -59,6 +59,7 @@ DEPS = \ LDADDS = \ $(top_builddir)/gtk/libgtk-3.0.la \ + $(top_builddir)/gdk/libgdk-3.0.la \ $(GTK_DEP_LIBS) \ -lm diff --git a/docs/tools/Makefile.am b/docs/tools/Makefile.am index d008afc1b4..c4a1c8bfcb 100644 --- a/docs/tools/Makefile.am +++ b/docs/tools/Makefile.am @@ -13,7 +13,9 @@ DEPS = \ LDADDS = \ $(top_builddir)/gtk/libgtk-3.0.la \ + $(top_builddir)/gdk/libgdk-3.0.la \ $(GTK_DEP_LIBS) \ + $(GDK_DEP_LIBS) \ -lm if USE_X11 diff --git a/gtk/tests/Makefile.am b/gtk/tests/Makefile.am index 35105d329f..34367ee4db 100644 --- a/gtk/tests/Makefile.am +++ b/gtk/tests/Makefile.am @@ -15,6 +15,7 @@ DEPS = \ progs_ldadd = \ $(top_builddir)/gtk/libgtk-3.0.la \ + $(top_builddir)/gdk/libgdk-3.0.la \ $(GTK_DEP_LIBS) noinst_PROGRAMS = $(TEST_PROGS) $(SAMPLE_PROGS) diff --git a/perf/Makefile.am b/perf/Makefile.am index 3b2c0b0c7b..18e45f40d0 100644 --- a/perf/Makefile.am +++ b/perf/Makefile.am @@ -15,6 +15,7 @@ DEPS = \ LDADDS = \ $(top_builddir)/gtk/libgtk-3.0.la \ + $(top_builddir)/gdk/libgdk-3.0.la \ $(GTK_DEP_LIBS) noinst_PROGRAMS = \ diff --git a/tests/Makefile.am b/tests/Makefile.am index 744796bb79..fc4b58e1d7 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -16,6 +16,7 @@ DEPS = \ LDADDS = \ $(top_builddir)/gtk/libgtk-3.0.la \ + $(top_builddir)/gdk/libgdk-3.0.la \ $(GTK_DEP_LIBS) \ -lm |