From 4b9bd9736e97d84a86bb52844a99e74f157980c0 Mon Sep 17 00:00:00 2001 From: Frederic Bassaler Date: Wed, 3 Aug 2011 19:23:01 +0200 Subject: package: add Fluxbox 1.3.1 window manager [Peter: fix build without iconv, whitespace fixes] Signed-off-by: Frederic Bassaler Signed-off-by: Peter Korsgaard --- package/fluxbox/fluxbox-1.3.1-iconv.patch | 37 +++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 package/fluxbox/fluxbox-1.3.1-iconv.patch (limited to 'package/fluxbox/fluxbox-1.3.1-iconv.patch') diff --git a/package/fluxbox/fluxbox-1.3.1-iconv.patch b/package/fluxbox/fluxbox-1.3.1-iconv.patch new file mode 100644 index 000000000..82b4507f1 --- /dev/null +++ b/package/fluxbox/fluxbox-1.3.1-iconv.patch @@ -0,0 +1,37 @@ +From 3ed2d03446cdf53fd10c8ad056d9f86db9923666 Mon Sep 17 00:00:00 2001 +From: Peter Korsgaard +Date: Fri, 9 Sep 2011 20:35:49 +0200 +Subject: [PATCH] FbString: fix build without iconv + +Commit 690d926 (introduced FbTk::BidiString) broke building without +HAVE_ICONV, because of wrong variable name and use of iconv_t type. + +Signed-off-by: Peter Korsgaard +--- + src/FbTk/FbString.cc | 3 ++- + 1 files changed, 2 insertions(+), 1 deletions(-) + +diff --git a/src/FbTk/FbString.cc b/src/FbTk/FbString.cc +index fd34693..5295a66 100644 +--- a/src/FbTk/FbString.cc ++++ b/src/FbTk/FbString.cc +@@ -150,6 +150,7 @@ enum ConvType { FB2X = 0, X2FB, LOCALE2FB, FB2LOCALE, CONVSIZE }; + #ifdef HAVE_ICONV + static iconv_t *iconv_convs = 0; + #else ++typedef int iconv_t; + static int iconv_convs[CONVSIZE]; + #endif // HAVE_ICONV + +@@ -292,7 +293,7 @@ string recode(iconv_t cd, const string &in) { + + return ret; + #else +- return str; ++ return in; + #endif // HAVE_ICONV + } + +-- +1.7.5.4 + -- cgit v1.2.3