Add necessary libraries to make it compile with -no-undefined. (#159713,

2004-11-28  Matthias Clasen  <mclasen@redhat.com>

	* Makefile.am (LDADDS): Add necessary libraries to make
	it compile with -no-undefined.  (#159713, Robert Ögren)
This commit is contained in:
Matthias Clasen 2004-11-28 17:21:06 +00:00 committed by Matthias Clasen
parent c50066b452
commit de33692b05
2 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-11-28 Matthias Clasen <mclasen@redhat.com>
* Makefile.am (LDADDS): Add necessary libraries to make
it compile with -no-undefined. (#159713, Robert Ögren)
2004-11-15 Matthias Clasen <mclasen@redhat.com>
* pixbuf-render.c:

View File

@ -11,6 +11,12 @@ INCLUDES = \
-DGDK_DISABLE_DEPRECATED \
$(GTK_DEP_CFLAGS)
LDADDS = \
$(GTK_DEP_LIBS) \
$(top_builddir)/gdk-pixbuf/libgdk_pixbuf-2.0.la \
$(top_builddir)/gdk/$(gdktargetlib) \
$(top_builddir)/gtk/$(gtktargetlib)
enginedir = $(libdir)/gtk-2.0/$(GTK_BINARY_VERSION)/engines
engine_LTLIBRARIES = libpixmap.la
@ -25,5 +31,5 @@ libpixmap_la_SOURCES = \
pixbuf.h
libpixmap_la_LDFLAGS = -avoid-version -module $(no_undefined)
libpixmap_la_LIBADD = $(GTK_LIBS)
libpixmap_la_LIBADD = $(LDADDS)