aboutsummaryrefslogtreecommitdiffstats
path: root/x11-wm
diff options
context:
space:
mode:
authormezz <mezz@FreeBSD.org>2007-03-23 00:35:24 +0800
committermezz <mezz@FreeBSD.org>2007-03-23 00:35:24 +0800
commit7102caf149dbdec236c3bc7970484e212da7a60e (patch)
tree4c731a89f4650c8249fbf4680e5f987b1d55aae5 /x11-wm
parentdbed9eb005b9677ccec207df7de530eb88d3465a (diff)
downloadfreebsd-ports-gnome-7102caf149dbdec236c3bc7970484e212da7a60e.tar.gz
freebsd-ports-gnome-7102caf149dbdec236c3bc7970484e212da7a60e.tar.zst
freebsd-ports-gnome-7102caf149dbdec236c3bc7970484e212da7a60e.zip
Write 'cvs rm foobar' 500 times on the blackboard... Forgot to run 'cvs rm'
to remove this patch to allow anyone to build it. Reported by: several
Diffstat (limited to 'x11-wm')
-rw-r--r--x11-wm/fluxbox/files/patch-fix_iconvmenu_crash13
1 files changed, 0 insertions, 13 deletions
diff --git a/x11-wm/fluxbox/files/patch-fix_iconvmenu_crash b/x11-wm/fluxbox/files/patch-fix_iconvmenu_crash
deleted file mode 100644
index fc655e7839b6..000000000000
--- a/x11-wm/fluxbox/files/patch-fix_iconvmenu_crash
+++ /dev/null
@@ -1,13 +0,0 @@
-diff -I'^// \$Id' -Naur --exclude-from diff-exclude trunk.orig/src/FbTk/FbString.cc trunk.tabs/src/FbTk/FbString.cc
---- src/FbTk/FbString.cc 2006-06-26 20:55:59.000000000 +1000
-+++ src/FbTk/FbString.cc 2006-07-05 09:37:16.000000000 +1000
-@@ -261,7 +261,8 @@
- if (newiconv == ((iconv_t)(-1)))
- return false;
- else {
-- iconv_close(m_iconv);
-+ if (m_iconv != ((iconv_t)-1))
-+ iconv_close(m_iconv);
- m_iconv = newiconv;
- return true;
- }