diff options
author | Tor Lillqvist <tml@iki.fi> | 2002-04-18 11:21:21 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2002-04-18 11:21:21 +0000 |
commit | 40d637ec03335d14e98bd3e752baa304f0efbc1f (patch) | |
tree | b32147eba468ad5181a5f7f6bd400b76c4a9310e /gdk-pixbuf | |
parent | a3045c84efae261c03ddde84df7f4ecf03a4c97b (diff) | |
download | gtk+-40d637ec03335d14e98bd3e752baa304f0efbc1f.tar.gz |
gdk-pixbuf/Makefile.am (uninstall-libtool-import-lib) Fix typo, thanks to
2002-04-18 Tor Lillqvist <tml@iki.fi>
* gdk-pixbuf/Makefile.am (uninstall-libtool-import-lib)
* gdk/Makefile.am (uninstall-libtool-import-lib): Fix typo,
thanks to David Sterba for noticing.
* gtk/gtkmain.h
* gtk/gtkmain.c (gtk_init_abi_check, gtk_init_check_abi_check): In
GTK+ 2.0 the GtkWindow struct actually is the same size in gcc on
Win32 whether compiled with -fnative-struct or not. Unfortunately
this wan't noticed until now. So, from now on, check some other
struct, too, for which the use of -fnative-struct still
matters. GtkBox is one such.
Diffstat (limited to 'gdk-pixbuf')
-rw-r--r-- | gdk-pixbuf/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk-pixbuf/Makefile.am b/gdk-pixbuf/Makefile.am index f33a3bbe04..7a6b2a2d1c 100644 --- a/gdk-pixbuf/Makefile.am +++ b/gdk-pixbuf/Makefile.am @@ -17,7 +17,7 @@ gdk_pixbuf-win32res.lo : gdk_pixbuf.rc install-libtool-import-lib: $(INSTALL) .libs/libgdk_pixbuf-$(GTK_API_VERSION).dll.a $(DESTDIR)$(libdir) uninstall-libtool-import-lib: - -rm $(DESTDIR)$(libdir)/libdk_pixbuf-$(GTK_API_VERSION).dll.a + -rm $(DESTDIR)$(libdir)/libgdk_pixbuf-$(GTK_API_VERSION).dll.a else install-libtool-import-lib: uninstall-libtool-import-lib: |