diff options
author | Jonathan Blandford <jrb@redhat.com> | 2001-11-19 21:18:22 +0000 |
---|---|---|
committer | Jonathan Blandford <jrb@src.gnome.org> | 2001-11-19 21:18:22 +0000 |
commit | 94a097ef5d8aa475fdb38b1cdade87e72d068d8d (patch) | |
tree | fbcb5b4a8681899da6986157c073319910615dd9 /Makefile.am | |
parent | 650e82680a70721eca9a2f176f6fbd1824a3eb05 (diff) | |
download | gdk-pixbuf-94a097ef5d8aa475fdb38b1cdade87e72d068d8d.tar.gz |
Add a "resizable" property, to get rid of the
Mon Nov 19 15:30:51 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtktreeviewcolumn.c (gtk_tree_view_column_class_init): Add a
"resizable" property, to get rid of the
GTK_TREE_VIEW_COLUMN_RESIZABLE sizing flag.
(gtk_tree_view_column_set_resizable): New function to set resizable.
(gtk_tree_view_column_set_resizable): getter.
* tests/testtreecolumns.c (add_clicked): modify for above change.
* Makefile.am (install-data-hook): remove old .pc files before
installing the new one. We used to symlink this, and it will
break old installs.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.am b/Makefile.am index fbf33ab52..564984596 100644 --- a/Makefile.am +++ b/Makefile.am @@ -143,17 +143,17 @@ DISTCLEANFILES = \ gtk+-$(GDKTARGET)-2.0-uninstalled.pc \ gdk-$(GDKTARGET)-2.0-uninstalled.pc -## symlink gdk-2.0.pc and gtk+-2.0.pc to default target for the platform +## copy the default target for this platform to gdk-2.0.pc and gtk+-2.0.pc DEFAULT_GDKTARGET=x11 install-data-hook: (cd $(DESTDIR)$(pkgconfigdir) && \ test -e gdk-$(DEFAULT_GDKTARGET)-2.0.pc && \ test -e gtk+-$(DEFAULT_GDKTARGET)-2.0.pc && \ - cp -f gdk-$(DEFAULT_GDKTARGET)-2.0.pc gdk-2.0.pc && \ - cp -f gtk+-$(DEFAULT_GDKTARGET)-2.0.pc gtk+-2.0.pc) || \ + rm -f gdk-2.0.pc && cp -f gdk-$(DEFAULT_GDKTARGET)-2.0.pc gdk-2.0.pc && \ + rm -f gtk+-2.0.pc && cp -f gtk+-$(DEFAULT_GDKTARGET)-2.0.pc gtk+-2.0.pc) || \ (cd $(DESTDIR)$(pkgconfigdir) && \ - cp -f gdk-$(GDKTARGET)-2.0.pc gdk-2.0.pc && \ - cp -f gtk+-$(GDKTARGET)-2.0.pc gtk+-2.0.pc) + rm -f gdk-2.0.pc && cp -f gdk-$(GDKTARGET)-2.0.pc gdk-2.0.pc && \ + rm -f gtk+-2.0.pc && cp -f gtk+-$(GDKTARGET)-2.0.pc gtk+-2.0.pc) dist-hook: gtk+.spec if test -e $(srcdir)/INSTALL.in && test -e $(srcdir)/README.in ; then \ |