summaryrefslogtreecommitdiff
path: root/sysutils/gentoo/patches/patch-aa
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2002-02-11 00:26:03 +0000
committerwiz <wiz@pkgsrc.org>2002-02-11 00:26:03 +0000
commit018ef2a1dbced3a14d2432e933bb494350cd8a69 (patch)
tree8cea969712c92aeebfaa28ac285877dc0bbd35bf /sysutils/gentoo/patches/patch-aa
parent05bda72852b8dfc1de50e83ccb3a7d660774c4eb (diff)
downloadpkgsrc-018ef2a1dbced3a14d2432e933bb494350cd8a69.tar.gz
Update to 0.11.19:
* Mouse bindings ignore all modifiers except shift, control and alt at all times. Reported by Martin Uddén. * Fixed sloppy pointer-to-int cast that gave warning on 64-bit systems (Alphas). Reported by Jesse Perry. * The Information command can now optionally display the output of 'file' in its window. Suggested by Christian Richter. Do note that this *requires* your 'file' command to support the "-f - -n" option combo. See configure.in for details. * If executing a child process fails, gentoo now sometimes shows an error rather than just dying. This is an improvement. * Added some more -W options to gcc, that scared out some sloppy code that got fixed (even in widgets/). I like killing warnings. * Updated About's copyright for the new year. Time flies. :) * RenameSeq no longer opens its window if there's no selection. * Should now compile on NetBSD, too. Thanks to Pehr Johansson for the original patch. * String input fields (created with '{Is}') can now be set to use asterisks to hide entered text. To do this, add an asterisk in the definition, after the label part, e.g.: '{Is:"Password"*}'. * gentoo now supplies the window manager with a prettier icon, and now also groups its windows, most of the time at least.
Diffstat (limited to 'sysutils/gentoo/patches/patch-aa')
-rw-r--r--sysutils/gentoo/patches/patch-aa13
1 files changed, 0 insertions, 13 deletions
diff --git a/sysutils/gentoo/patches/patch-aa b/sysutils/gentoo/patches/patch-aa
deleted file mode 100644
index ef728f8e6d7..00000000000
--- a/sysutils/gentoo/patches/patch-aa
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-aa,v 1.1.1.1 2002/01/29 12:37:16 wiz Exp $
-
---- src/cfg_paths.c.orig Sat Sep 22 20:59:50 2001
-+++ src/cfg_paths.c
-@@ -151,7 +151,7 @@
- page->path[i].path = gtk_entry_new();
- gtk_signal_connect(GTK_OBJECT(page->path[i].path), "changed", GTK_SIGNAL_FUNC(evt_path_changed), (gpointer) page);
- gtk_table_attach_defaults(GTK_TABLE(page->ptable), page->path[i].path, 1, 2, i, i+1);
--#if defined __OpenBSD__ || defined __FreeBSD__
-+#if defined __OpenBSD__ || defined __FreeBSD__ || defined __NetBSD__
- /* Mountlist and mounted fs files are non-configurable on BSD systems. */
- if(i == 2 || i == 3)
- gtk_widget_set_sensitive(page->path[i].path, FALSE);