aboutsummaryrefslogtreecommitdiff
path: root/textproc/uim
diff options
context:
space:
mode:
authorMANTANI Nobutaka <nobutaka@FreeBSD.org>2014-03-09 03:07:51 +0000
committerMANTANI Nobutaka <nobutaka@FreeBSD.org>2014-03-09 03:07:51 +0000
commitb9e311bc895a335adbc2d305085d6cdf62fc347c (patch)
treea7a159b23243353bcdb4bf28ee28c397d79684f3 /textproc/uim
parent724b7077623dc554910aaef94d5a2683a6177c70 (diff)
downloadports-b9e311bc895a335adbc2d305085d6cdf62fc347c.tar.gz
ports-b9e311bc895a335adbc2d305085d6cdf62fc347c.zip
Fix build error of uim-qt4 on 10-stable and beyond.
PR: ports/187198 Submitted by: rakuco
Notes
Notes: svn path=/head/; revision=347550
Diffstat (limited to 'textproc/uim')
-rw-r--r--textproc/uim/files/patch-qt4_immodule_plugin.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/textproc/uim/files/patch-qt4_immodule_plugin.cpp b/textproc/uim/files/patch-qt4_immodule_plugin.cpp
new file mode 100644
index 000000000000..79b5b551db23
--- /dev/null
+++ b/textproc/uim/files/patch-qt4_immodule_plugin.cpp
@@ -0,0 +1,23 @@
+commit 5900b14a2bf367203f6d417bc51b59ab5ecc2129
+Author: Raphael Kubo da Costa <rakuco@FreeBSD.org>
+Date: Sun Mar 2 13:26:18 2014 +0200
+
+ qt4 immodule: Add missing <clocale> include.
+
+ * qt4/immodule/plugin.cpp
+ - Stop relying on implicit includes that may not always work and
+ explicitly include <clocale> for the setlocale(3) call.
+
+diff --git a/qt4/immodule/plugin.cpp b/qt4/immodule/plugin.cpp
+index cb5863a..be2b9f2 100644
+--- qt4/immodule/plugin.cpp
++++ qt4/immodule/plugin.cpp
+@@ -34,6 +34,8 @@
+
+ #include "plugin.h"
+
++#include <clocale>
++
+ #include <QtCore/QStringList>
+ #ifdef Q_WS_X11
+ # include <QtGui/QX11Info>