summaryrefslogtreecommitdiff
path: root/x11/libgnome/files/patch-help-converters::info::main.c
diff options
context:
space:
mode:
authorAlexander Nedotsukov <bland@FreeBSD.org>2003-09-18 12:55:46 +0000
committerAlexander Nedotsukov <bland@FreeBSD.org>2003-09-18 12:55:46 +0000
commite715af8986a576eec90d432e8ec26d621827b089 (patch)
tree4136babd726d84d805c57028b8dd50cda38f6d78 /x11/libgnome/files/patch-help-converters::info::main.c
parentkaffe-devel doesn't know about amd64 CPUs. (diff)
Update to 2.4.0
This was accidently missed from recent mega GNOME 2.2 -> 2.4 update. Reported by: Pav Lucistnik <pav@oook.cz>
Notes
Notes: svn path=/head/; revision=89048
Diffstat (limited to 'x11/libgnome/files/patch-help-converters::info::main.c')
-rw-r--r--x11/libgnome/files/patch-help-converters::info::main.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/x11/libgnome/files/patch-help-converters::info::main.c b/x11/libgnome/files/patch-help-converters::info::main.c
deleted file mode 100644
index cd3f6f1c8363..000000000000
--- a/x11/libgnome/files/patch-help-converters::info::main.c
+++ /dev/null
@@ -1,22 +0,0 @@
---- help-converters/info/main.c.orig Mon Aug 5 14:06:06 2002
-+++ help-converters/info/main.c Wed Aug 7 01:52:35 2002
-@@ -104,13 +104,15 @@
- char buf[PATH_MAX];
-
- /* First, find the directory that the info file is in. */
-- dirs[0] = "/usr/info";
-- dirs[1] = "/usr/share/info";
-+ dirs[0] = "/usr/share/info";
-+ dirs[1] = PREFIX "/info";
-+ dirs[2] = LOCALBASE "/info";
-+ dirs[3] = X11BASE "/info";
- /* We now have at least one directory to look in. This is
- * necessary because we may not have an 'INFOPATH' set */
-- ndirs = 2;
-+ ndirs = 4;
- if(infopath) {
-- for (ndirs = 2, ctmp = strtok(infopath, ":"); ndirs < 64 && ctmp; ndirs++, ctmp = strtok(NULL, ":")) {
-+ for (ndirs = 4, ctmp = strtok(infopath, ":"); ndirs < 64 && ctmp; ndirs++, ctmp = strtok(NULL, ":")) {
- dirs[ndirs] = strdup(ctmp);
- }
- }