summaryrefslogtreecommitdiff
path: root/x11-wm
diff options
context:
space:
mode:
authorJeremy Messenger <mezz@FreeBSD.org>2007-03-22 16:35:24 +0000
committerJeremy Messenger <mezz@FreeBSD.org>2007-03-22 16:35:24 +0000
commitc6701d97168d78d2446e6cfc0e4a36c06aabc8f3 (patch)
tree252a618c3e6f9f4406c83d97ee00d07842ae444b /x11-wm
parent- Update to new development release 35b04 (diff)
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
Notes
Notes: svn path=/head/; revision=188037
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;
- }