diff options
author | Owen Taylor <otaylor@redhat.com> | 2000-07-06 15:50:54 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2000-07-06 15:50:54 +0000 |
commit | 166ba89af8b086218b1b66c53d0b898cd7951ebd (patch) | |
tree | be3adf124eeb7642a3f2fe2ada161c359599eae5 /gdk-pixbuf | |
parent | f3d8cf9252152036ac2cc776e723fea8f6335c3c (diff) | |
download | gtk+-166ba89af8b086218b1b66c53d0b898cd7951ebd.tar.gz |
Use GTK+ version soname scheme for gdk-pixbuf.
Thu Jul 6 11:49:47 2000 Owen Taylor <otaylor@redhat.com>
* Makefile.am (libgdk_pixbuf_la_LDFLAGS): Use GTK+ version
soname scheme for gdk-pixbuf.
Diffstat (limited to 'gdk-pixbuf')
-rw-r--r-- | gdk-pixbuf/ChangeLog | 5 | ||||
-rw-r--r-- | gdk-pixbuf/Makefile.am | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/gdk-pixbuf/ChangeLog b/gdk-pixbuf/ChangeLog index c014e6b933..c6f78223ce 100644 --- a/gdk-pixbuf/ChangeLog +++ b/gdk-pixbuf/ChangeLog @@ -1,3 +1,8 @@ +Thu Jul 6 11:49:47 2000 Owen Taylor <otaylor@redhat.com> + + * Makefile.am (libgdk_pixbuf_la_LDFLAGS): Use GTK+ version + soname scheme for gdk-pixbuf. + 2000-06-21 Havoc Pennington <hp@pobox.com> * gdk-pixbuf.c: Convert GdkPixbuf to GObject, leaving it opaque diff --git a/gdk-pixbuf/Makefile.am b/gdk-pixbuf/Makefile.am index b66e2ef54d..8bb61b676a 100644 --- a/gdk-pixbuf/Makefile.am +++ b/gdk-pixbuf/Makefile.am @@ -155,7 +155,10 @@ libgdk_pixbuf_la_SOURCES = \ gdk-pixbuf-util.c \ $(extra_sources) -libgdk_pixbuf_la_LDFLAGS = -version-info 2:0:0 $(GLIB_LIBS) +libgdk_pixbuf_la_LDFLAGS = \ + -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \ + -release $(LT_RELEASE) \ + $(GLIB_LIBS) libgdk_pixbuf_la_LIBADD = pixops/libpixops.la libgdk_pixbufinclude_HEADERS = \ |