summaryrefslogtreecommitdiff
path: root/m4macros
diff options
context:
space:
mode:
authorBenedikt Meurer <benny@xfce.org>2007-01-15 17:47:49 +0000
committerBenedikt Meurer <benny@xfce.org>2007-01-15 17:47:49 +0000
commit65fa5840a9987a654dfbe0ede3433025fe36eae2 (patch)
treed4e9037bef4c3c2832111ccf6da6186387200aef /m4macros
parent169553b0ef74ca49546d1bcd6d01fd0ad4a4728b (diff)
downloadxfce4-dev-tools-65fa5840a9987a654dfbe0ede3433025fe36eae2.tar.gz
2007-01-15 Benedikt Meurer <benny@xfce.org>
* scripts/xdt-autogen.in: Apply patch from Olivier Fourdan <fourdan@xfce.org> to update xdt-autogen to use the latest GNU autotools if available. Bug #2755. * m4macros/xdt-i18n.m4(XDT_I18N): Make sure xgettext treats source code as UTF-8. (Old svn revision: 24486)
Diffstat (limited to 'm4macros')
-rw-r--r--m4macros/xdt-i18n.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/m4macros/xdt-i18n.m4 b/m4macros/xdt-i18n.m4
index ae81c8c..34f2126 100644
--- a/m4macros/xdt-i18n.m4
+++ b/m4macros/xdt-i18n.m4
@@ -67,9 +67,9 @@ AC_DEFUN([XDT_I18N],
dnl Determine additional xgettext flags
AC_MSG_CHECKING([for additional xgettext flags])
if test x"$XGETTEXT_ARGS" = x""; then
- XGETTEXT_ARGS="--keyword=Q_";
+ XGETTEXT_ARGS="--keyword=Q_ --from-code=UTF-8";
else
- XGETTEXT_ARGS="$XGETTEXT_ARGS --keyword=Q_";
+ XGETTEXT_ARGS="$XGETTEXT_ARGS --keyword=Q_ --from-code=UTF-8";
fi
AC_SUBST([XGETTEXT_ARGS])
AC_MSG_RESULT([$XGETTEXT_ARGS])