dnl Copyright (c) 2002-2015 dnl The Xfce development team. All rights reserved. dnl dnl Written for Xfce by Benedikt Meurer . dnl dnl This program is free software; you can redistribute it and/or modify dnl it under the terms of the GNU General Public License as published by dnl the Free Software Foundation; either version 2 of the License, or dnl (at your option) any later version. dnl dnl This program 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 dnl GNU General Public License for more details. dnl dnl You should have received a copy of the GNU General Public License along dnl with this program; if not, write to the Free Software Foundation, Inc., dnl 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. dnl dnl xdt-i18n dnl -------- dnl Internalization M4 macros. dnl dnl XDT_I18N([LINGUAS][, PACKAGE]) dnl dnl This macro takes care of setting up everything for i18n support. dnl dnl If LINGUAS isn't specified, it will automatically extract the linguas dnl from po/*.po. dnl dnl If PACKAGE isn't specified, it defaults to the package tarname; see dnl the description of AC_INIT() for an explanation of what makes up dnl the package tarname. Normally, you don't need to specify PACKAGE, dnl but you can stick with the default. dnl AC_DEFUN([XDT_I18N], [ dnl Substitute GETTEXT_PACKAGE variable GETTEXT_PACKAGE=m4_default([$2], [AC_PACKAGE_TARNAME()]) AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE], ["$GETTEXT_PACKAGE"], [Name of default gettext domain]) AC_SUBST([GETTEXT_PACKAGE]) dnl gettext and stuff ALL_LINGUAS="m4_ifblank( [$1], [esyscmd([echo $(for i in po/*.po; do test -e "$i" && basename -- "$i" .po; done) | tr -d '\n'])], [$1])" dnl This is required on some Linux systems AC_CHECK_FUNC([bind_textdomain_codeset]) dnl Determine where to install locale files AC_MSG_CHECKING([for locales directory]) AC_ARG_WITH([locales-dir], [ AS_HELP_STRING([--with-locales-dir=DIR],[Install locales into DIR]) ], [localedir=$withval], [ if test x"$CATOBJEXT" = x".mo"; then localedir=$libdir/locale else localedir=$datarootdir/locale fi ]) AC_MSG_RESULT([$localedir]) AC_SUBST([localedir]) ])