27 lines
802 B
Diff
27 lines
802 B
Diff
|
From 582cb0f14eb9f145bd2a2f5c9fda12309ae0229f Mon Sep 17 00:00:00 2001
|
||
|
From: Manish Singh <yosh@gimp.org>
|
||
|
Date: Sun, 24 May 2009 17:42:39 +0000
|
||
|
Subject: Explicitly specify library dependencies at link time, so we can use gold.
|
||
|
|
||
|
---
|
||
|
(limited to 'libgimpthumb/Makefile.am')
|
||
|
|
||
|
diff --git a/libgimpthumb/Makefile.am b/libgimpthumb/Makefile.am
|
||
|
index a78a83a..98acd24 100644
|
||
|
--- a/libgimpthumb/Makefile.am
|
||
|
+++ b/libgimpthumb/Makefile.am
|
||
|
@@ -86,7 +86,10 @@ noinst_PROGRAMS = gimp-thumbnail-list
|
||
|
|
||
|
gimp_thumbnail_list_SOURCES = gimp-thumbnail-list.c
|
||
|
|
||
|
-gimp_thumbnail_list_LDADD = libgimpthumb-$(GIMP_API_VERSION).la
|
||
|
+gimp_thumbnail_list_LDADD = \
|
||
|
+ libgimpthumb-$(GIMP_API_VERSION).la \
|
||
|
+ $(GDK_PIXBUF_LIBS) \
|
||
|
+ $(GLIB_LIBS)
|
||
|
|
||
|
|
||
|
install-data-local: install-ms-lib install-libtool-import-lib
|
||
|
--
|
||
|
cgit v0.9.0.2
|