diff options
author | Daniel P. Berrangé <berrange@redhat.com> | 2019-02-20 15:19:43 +0000 |
---|---|---|
committer | Daniel P. Berrangé <berrange@redhat.com> | 2019-03-12 11:49:38 +0000 |
commit | 8089cddfcbf0e4446e2d17088ca45e35b2ff28ab (patch) | |
tree | 0f655698b12b2f11cdcbbc5790d0b0d6845c76cd /m4 | |
parent | cebaaa22ffae6b7548f9ed723e80c80573ad45f2 (diff) |
po: provide custom make rules for po file management
Historically we have relied on intltool to install a standard
po/Makefile.in.in which has very limited scope for customization.
intltool is deprecated in favour of standard gettextize tools,
but these share the same disadvantages.
Writing make rules for po file management is no more difficult
than any other rules virt-viewer has, so stop using intltool
and don't use gettextize ether.
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Diffstat (limited to 'm4')
-rw-r--r-- | m4/virt-nls.m4 | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/m4/virt-nls.m4 b/m4/virt-nls.m4 new file mode 100644 index 0000000..6f94bcd --- /dev/null +++ b/m4/virt-nls.m4 @@ -0,0 +1,45 @@ +dnl gettext utilities +dnl +dnl Copyright (C) 2018 Red Hat, Inc. +dnl +dnl This library is free software; you can redistribute it and/or +dnl modify it under the terms of the GNU Lesser General Public +dnl License as published by the Free Software Foundation; either +dnl version 2.1 of the License, or (at your option) any later version. +dnl +dnl This library is distributed in the hope that it will be useful, +dnl but WITHOUT ANY WARRANTY; without even the implied warranty of +dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +dnl Lesser General Public License for more details. +dnl +dnl You should have received a copy of the GNU Lesser General Public +dnl License along with this library. If not, see +dnl <http://www.gnu.org/licenses/>. +dnl + +AC_DEFUN([VIRT_VIEWER_ARG_NLS],[ + m4_divert_text([DEFAULTS], [[enable_nls=yes]]) + AC_ARG_ENABLE([nls], + [AS_HELP_STRING([--enable-nls], + [NLS @<:@default=yes@:>@])]) +]) + +AC_DEFUN([VIRT_VIEWER_CHECK_NLS],[ + dnl GNU gettext tools (optional). + AC_CHECK_PROG([XGETTEXT], [xgettext], [xgettext], [no]) + AC_CHECK_PROG([MSGFMT], [msgfmt], [msgfmt], [no]) + AC_CHECK_PROG([MSGMERGE], [msgmerge], [msgmerge], [no]) + + dnl Check they are the GNU gettext tools. + AC_MSG_CHECKING([msgfmt is GNU tool]) + if $MSGFMT --version >/dev/null 2>&1 && $MSGFMT --version | grep -q 'GNU gettext'; then + msgfmt_is_gnu=yes + else + msgfmt_is_gnu=no + fi + AC_MSG_RESULT([$msgfmt_is_gnu]) + AM_CONDITIONAL([ENABLE_NLS], [test "x$enable_nls" = "xyes"]) + AM_CONDITIONAL([HAVE_GNU_GETTEXT_TOOLS], + [test "x$XGETTEXT" != "xno" && test "x$MSGFMT" != "xno" && \ + test "x$MSGMERGE" != "xno" && test "x$msgfmt_is_gnu" != "xno"]) +]) |