summaryrefslogtreecommitdiff
path: root/misc/metatheme/files/patch-af
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2002-08-30 15:56:50 +0000
committerMaxim Sobolev <sobomax@FreeBSD.org>2002-08-30 15:56:50 +0000
commitf2921c2f2ac59b5d9b54329ed0e9b61cc95e2fe3 (patch)
treecb21b00cf9f7a27e712c3958add1256f21c5b0ea /misc/metatheme/files/patch-af
parentBIND version 9 Nameserver, with DLZ extensions (diff)
Send ports/misc/metatheme to Valhalla - it have been dead for too long now.
Notes
Notes: svn path=/head/; revision=65319
Diffstat (limited to '')
-rw-r--r--misc/metatheme/files/patch-af21
1 files changed, 0 insertions, 21 deletions
diff --git a/misc/metatheme/files/patch-af b/misc/metatheme/files/patch-af
deleted file mode 100644
index 572e38b524b2..000000000000
--- a/misc/metatheme/files/patch-af
+++ /dev/null
@@ -1,21 +0,0 @@
---- plugins/gtk/gtk-plugin.c 2000/11/26 21:25:12 1.1
-+++ plugins/gtk/gtk-plugin.c 2000/11/26 21:27:39
-@@ -375,15 +375,15 @@
-
- /* This should be more robust.
- * Perhaps we could make this user-configurable somehow. */
-- pipe = popen ("gtk-config --prefix", "r");
-+ pipe = popen ("%%GTK_CONFIG%% --prefix", "r");
- if (pipe == NULL)
-- return g_strdup ("/usr");
-+ return g_strdup ("%%X11BASE%%");
-
- fgets (prefix, 1000, pipe);
- pclose (pipe);
-
- if (prefix == NULL)
-- return g_strdup ("/usr");
-+ return g_strdup ("%%X11BASE%%");
-
- return g_strchomp (g_strdup (prefix));
- }