Blame build/m4/gettext.m4

Packit Service 3749ba
# gettext.m4 serial 70 (gettext-0.20)
Packit Service 3749ba
dnl Copyright (C) 1995-2014, 2016, 2018 Free Software Foundation, Inc.
Packit Service 3749ba
dnl This file is free software; the Free Software Foundation
Packit Service 3749ba
dnl gives unlimited permission to copy and/or distribute it,
Packit Service 3749ba
dnl with or without modifications, as long as this notice is preserved.
Packit Service 3749ba
dnl
Packit Service 3749ba
dnl This file can be used in projects which are not available under
Packit Service 3749ba
dnl the GNU General Public License or the GNU Library General Public
Packit Service 3749ba
dnl License but which still want to provide support for the GNU gettext
Packit Service 3749ba
dnl functionality.
Packit Service 3749ba
dnl Please note that the actual code of the GNU gettext library is covered
Packit Service 3749ba
dnl by the GNU Library General Public License, and the rest of the GNU
Packit Service 3749ba
dnl gettext package is covered by the GNU General Public License.
Packit Service 3749ba
dnl They are *not* in the public domain.
Packit Service 3749ba
Packit Service 3749ba
dnl Authors:
Packit Service 3749ba
dnl   Ulrich Drepper <drepper@cygnus.com>, 1995-2000.
Packit Service 3749ba
dnl   Bruno Haible <haible@clisp.cons.org>, 2000-2006, 2008-2010.
Packit Service 3749ba
Packit Service 3749ba
dnl Macro to add for using GNU gettext.
Packit Service 3749ba
Packit Service 3749ba
dnl Usage: AM_GNU_GETTEXT([INTLSYMBOL], [NEEDSYMBOL], [INTLDIR]).
Packit Service 3749ba
dnl INTLSYMBOL must be one of 'external', 'use-libtool'.
Packit Service 3749ba
dnl    INTLSYMBOL should be 'external' for packages other than GNU gettext, and
Packit Service 3749ba
dnl    'use-libtool' for the packages 'gettext-runtime' and 'gettext-tools'.
Packit Service 3749ba
dnl    If INTLSYMBOL is 'use-libtool', then a libtool library
Packit Service 3749ba
dnl    $(top_builddir)/intl/libintl.la will be created (shared and/or static,
Packit Service 3749ba
dnl    depending on --{enable,disable}-{shared,static} and on the presence of
Packit Service 3749ba
dnl    AM-DISABLE-SHARED).
Packit Service 3749ba
dnl If NEEDSYMBOL is specified and is 'need-ngettext', then GNU gettext
Packit Service 3749ba
dnl    implementations (in libc or libintl) without the ngettext() function
Packit Service 3749ba
dnl    will be ignored.  If NEEDSYMBOL is specified and is
Packit Service 3749ba
dnl    'need-formatstring-macros', then GNU gettext implementations that don't
Packit Service 3749ba
dnl    support the ISO C 99 <inttypes.h> formatstring macros will be ignored.
Packit Service 3749ba
dnl INTLDIR is used to find the intl libraries.  If empty,
Packit Service 3749ba
dnl    the value '$(top_builddir)/intl/' is used.
Packit Service 3749ba
dnl
Packit Service 3749ba
dnl The result of the configuration is one of three cases:
Packit Service 3749ba
dnl 1) GNU gettext, as included in the intl subdirectory, will be compiled
Packit Service 3749ba
dnl    and used.
Packit Service 3749ba
dnl    Catalog format: GNU --> install in $(datadir)
Packit Service 3749ba
dnl    Catalog extension: .mo after installation, .gmo in source tree
Packit Service 3749ba
dnl 2) GNU gettext has been found in the system's C library.
Packit Service 3749ba
dnl    Catalog format: GNU --> install in $(datadir)
Packit Service 3749ba
dnl    Catalog extension: .mo after installation, .gmo in source tree
Packit Service 3749ba
dnl 3) No internationalization, always use English msgid.
Packit Service 3749ba
dnl    Catalog format: none
Packit Service 3749ba
dnl    Catalog extension: none
Packit Service 3749ba
dnl If INTLSYMBOL is 'external', only cases 2 and 3 can occur.
Packit Service 3749ba
dnl The use of .gmo is historical (it was needed to avoid overwriting the
Packit Service 3749ba
dnl GNU format catalogs when building on a platform with an X/Open gettext),
Packit Service 3749ba
dnl but we keep it in order not to force irrelevant filename changes on the
Packit Service 3749ba
dnl maintainers.
Packit Service 3749ba
dnl
Packit Service 3749ba
AC_DEFUN([AM_GNU_GETTEXT],
Packit Service 3749ba
[
Packit Service 3749ba
  dnl Argument checking.
Packit Service 3749ba
  ifelse([$1], [], , [ifelse([$1], [external], , [ifelse([$1], [use-libtool], ,
Packit Service 3749ba
    [errprint([ERROR: invalid first argument to AM_GNU_GETTEXT
Packit Service 3749ba
])])])])
Packit Service 3749ba
  ifelse(ifelse([$1], [], [old])[]ifelse([$1], [no-libtool], [old]), [old],
Packit Service 3749ba
    [errprint([ERROR: Use of AM_GNU_GETTEXT without [external] argument is no longer supported.
Packit Service 3749ba
])])
Packit Service 3749ba
  ifelse([$2], [], , [ifelse([$2], [need-ngettext], , [ifelse([$2], [need-formatstring-macros], ,
Packit Service 3749ba
    [errprint([ERROR: invalid second argument to AM_GNU_GETTEXT
Packit Service 3749ba
])])])])
Packit Service 3749ba
  define([gt_included_intl],
Packit Service 3749ba
    ifelse([$1], [external], [no], [yes]))
Packit Service 3749ba
  gt_NEEDS_INIT
Packit Service 3749ba
  AM_GNU_GETTEXT_NEED([$2])
Packit Service 3749ba
Packit Service 3749ba
  AC_REQUIRE([AM_PO_SUBDIRS])dnl
Packit Service 3749ba
  ifelse(gt_included_intl, yes, [
Packit Service 3749ba
    AC_REQUIRE([AM_INTL_SUBDIR])dnl
Packit Service 3749ba
  ])
Packit Service 3749ba
Packit Service 3749ba
  dnl Prerequisites of AC_LIB_LINKFLAGS_BODY.
Packit Service 3749ba
  AC_REQUIRE([AC_LIB_PREPARE_PREFIX])
Packit Service 3749ba
  AC_REQUIRE([AC_LIB_RPATH])
Packit Service 3749ba
Packit Service 3749ba
  dnl Sometimes libintl requires libiconv, so first search for libiconv.
Packit Service 3749ba
  dnl Ideally we would do this search only after the
Packit Service 3749ba
  dnl      if test "$USE_NLS" = "yes"; then
Packit Service 3749ba
  dnl        if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then
Packit Service 3749ba
  dnl tests. But if configure.in invokes AM_ICONV after AM_GNU_GETTEXT
Packit Service 3749ba
  dnl the configure script would need to contain the same shell code
Packit Service 3749ba
  dnl again, outside any 'if'. There are two solutions:
Packit Service 3749ba
  dnl - Invoke AM_ICONV_LINKFLAGS_BODY here, outside any 'if'.
Packit Service 3749ba
  dnl - Control the expansions in more detail using AC_PROVIDE_IFELSE.
Packit Service 3749ba
  dnl Since AC_PROVIDE_IFELSE is not documented, we avoid it.
Packit Service 3749ba
  ifelse(gt_included_intl, yes, , [
Packit Service 3749ba
    AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY])
Packit Service 3749ba
  ])
Packit Service 3749ba
Packit Service 3749ba
  dnl Sometimes, on Mac OS X, libintl requires linking with CoreFoundation.
Packit Service 3749ba
  gt_INTL_MACOSX
Packit Service 3749ba
Packit Service 3749ba
  dnl Set USE_NLS.
Packit Service 3749ba
  AC_REQUIRE([AM_NLS])
Packit Service 3749ba
Packit Service 3749ba
  ifelse(gt_included_intl, yes, [
Packit Service 3749ba
    BUILD_INCLUDED_LIBINTL=no
Packit Service 3749ba
    USE_INCLUDED_LIBINTL=no
Packit Service 3749ba
  ])
Packit Service 3749ba
  LIBINTL=
Packit Service 3749ba
  LTLIBINTL=
Packit Service 3749ba
  POSUB=
Packit Service 3749ba
Packit Service 3749ba
  dnl Add a version number to the cache macros.
Packit Service 3749ba
  case " $gt_needs " in
Packit Service 3749ba
    *" need-formatstring-macros "*) gt_api_version=3 ;;
Packit Service 3749ba
    *" need-ngettext "*) gt_api_version=2 ;;
Packit Service 3749ba
    *) gt_api_version=1 ;;
Packit Service 3749ba
  esac
Packit Service 3749ba
  gt_func_gnugettext_libc="gt_cv_func_gnugettext${gt_api_version}_libc"
Packit Service 3749ba
  gt_func_gnugettext_libintl="gt_cv_func_gnugettext${gt_api_version}_libintl"
Packit Service 3749ba
Packit Service 3749ba
  dnl If we use NLS figure out what method
Packit Service 3749ba
  if test "$USE_NLS" = "yes"; then
Packit Service 3749ba
    gt_use_preinstalled_gnugettext=no
Packit Service 3749ba
    ifelse(gt_included_intl, yes, [
Packit Service 3749ba
      AC_MSG_CHECKING([whether included gettext is requested])
Packit Service 3749ba
      AC_ARG_WITH([included-gettext],
Packit Service 3749ba
        [  --with-included-gettext use the GNU gettext library included here],
Packit Service 3749ba
        nls_cv_force_use_gnu_gettext=$withval,
Packit Service 3749ba
        nls_cv_force_use_gnu_gettext=no)
Packit Service 3749ba
      AC_MSG_RESULT([$nls_cv_force_use_gnu_gettext])
Packit Service 3749ba
Packit Service 3749ba
      nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext"
Packit Service 3749ba
      if test "$nls_cv_force_use_gnu_gettext" != "yes"; then
Packit Service 3749ba
    ])
Packit Service 3749ba
        dnl User does not insist on using GNU NLS library.  Figure out what
Packit Service 3749ba
        dnl to use.  If GNU gettext is available we use this.  Else we have
Packit Service 3749ba
        dnl to fall back to GNU NLS library.
Packit Service 3749ba
Packit Service 3749ba
        if test $gt_api_version -ge 3; then
Packit Service 3749ba
          gt_revision_test_code='
Packit Service 3749ba
#ifndef __GNU_GETTEXT_SUPPORTED_REVISION
Packit Service 3749ba
#define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1)
Packit Service 3749ba
#endif
Packit Service 3749ba
changequote(,)dnl
Packit Service 3749ba
typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1];
Packit Service 3749ba
changequote([,])dnl
Packit Service 3749ba
'
Packit Service 3749ba
        else
Packit Service 3749ba
          gt_revision_test_code=
Packit Service 3749ba
        fi
Packit Service 3749ba
        if test $gt_api_version -ge 2; then
Packit Service 3749ba
          gt_expression_test_code=' + * ngettext ("", "", 0)'
Packit Service 3749ba
        else
Packit Service 3749ba
          gt_expression_test_code=
Packit Service 3749ba
        fi
Packit Service 3749ba
Packit Service 3749ba
        AC_CACHE_CHECK([for GNU gettext in libc], [$gt_func_gnugettext_libc],
Packit Service 3749ba
         [AC_LINK_IFELSE(
Packit Service 3749ba
            [AC_LANG_PROGRAM(
Packit Service 3749ba
               [[
Packit Service 3749ba
#include <libintl.h>
Packit Service 3749ba
#ifndef __GNU_GETTEXT_SUPPORTED_REVISION
Packit Service 3749ba
extern int _nl_msg_cat_cntr;
Packit Service 3749ba
extern int *_nl_domain_bindings;
Packit Service 3749ba
#define __GNU_GETTEXT_SYMBOL_EXPRESSION (_nl_msg_cat_cntr + *_nl_domain_bindings)
Packit Service 3749ba
#else
Packit Service 3749ba
#define __GNU_GETTEXT_SYMBOL_EXPRESSION 0
Packit Service 3749ba
#endif
Packit Service 3749ba
$gt_revision_test_code
Packit Service 3749ba
               ]],
Packit Service 3749ba
               [[
Packit Service 3749ba
bindtextdomain ("", "");
Packit Service 3749ba
return * gettext ("")$gt_expression_test_code + __GNU_GETTEXT_SYMBOL_EXPRESSION
Packit Service 3749ba
               ]])],
Packit Service 3749ba
            [eval "$gt_func_gnugettext_libc=yes"],
Packit Service 3749ba
            [eval "$gt_func_gnugettext_libc=no"])])
Packit Service 3749ba
Packit Service 3749ba
        if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then
Packit Service 3749ba
          dnl Sometimes libintl requires libiconv, so first search for libiconv.
Packit Service 3749ba
          ifelse(gt_included_intl, yes, , [
Packit Service 3749ba
            AM_ICONV_LINK
Packit Service 3749ba
          ])
Packit Service 3749ba
          dnl Search for libintl and define LIBINTL, LTLIBINTL and INCINTL
Packit Service 3749ba
          dnl accordingly. Don't use AC_LIB_LINKFLAGS_BODY([intl],[iconv])
Packit Service 3749ba
          dnl because that would add "-liconv" to LIBINTL and LTLIBINTL
Packit Service 3749ba
          dnl even if libiconv doesn't exist.
Packit Service 3749ba
          AC_LIB_LINKFLAGS_BODY([intl])
Packit Service 3749ba
          AC_CACHE_CHECK([for GNU gettext in libintl],
Packit Service 3749ba
            [$gt_func_gnugettext_libintl],
Packit Service 3749ba
           [gt_save_CPPFLAGS="$CPPFLAGS"
Packit Service 3749ba
            CPPFLAGS="$CPPFLAGS $INCINTL"
Packit Service 3749ba
            gt_save_LIBS="$LIBS"
Packit Service 3749ba
            LIBS="$LIBS $LIBINTL"
Packit Service 3749ba
            dnl Now see whether libintl exists and does not depend on libiconv.
Packit Service 3749ba
            AC_LINK_IFELSE(
Packit Service 3749ba
              [AC_LANG_PROGRAM(
Packit Service 3749ba
                 [[
Packit Service 3749ba
#include <libintl.h>
Packit Service 3749ba
#ifndef __GNU_GETTEXT_SUPPORTED_REVISION
Packit Service 3749ba
extern int _nl_msg_cat_cntr;
Packit Service 3749ba
extern
Packit Service 3749ba
#ifdef __cplusplus
Packit Service 3749ba
"C"
Packit Service 3749ba
#endif
Packit Service 3749ba
const char *_nl_expand_alias (const char *);
Packit Service 3749ba
#define __GNU_GETTEXT_SYMBOL_EXPRESSION (_nl_msg_cat_cntr + *_nl_expand_alias (""))
Packit Service 3749ba
#else
Packit Service 3749ba
#define __GNU_GETTEXT_SYMBOL_EXPRESSION 0
Packit Service 3749ba
#endif
Packit Service 3749ba
$gt_revision_test_code
Packit Service 3749ba
                 ]],
Packit Service 3749ba
                 [[
Packit Service 3749ba
bindtextdomain ("", "");
Packit Service 3749ba
return * gettext ("")$gt_expression_test_code + __GNU_GETTEXT_SYMBOL_EXPRESSION
Packit Service 3749ba
                 ]])],
Packit Service 3749ba
              [eval "$gt_func_gnugettext_libintl=yes"],
Packit Service 3749ba
              [eval "$gt_func_gnugettext_libintl=no"])
Packit Service 3749ba
            dnl Now see whether libintl exists and depends on libiconv.
Packit Service 3749ba
            if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" != yes; } && test -n "$LIBICONV"; then
Packit Service 3749ba
              LIBS="$LIBS $LIBICONV"
Packit Service 3749ba
              AC_LINK_IFELSE(
Packit Service 3749ba
                [AC_LANG_PROGRAM(
Packit Service 3749ba
                   [[
Packit Service 3749ba
#include <libintl.h>
Packit Service 3749ba
#ifndef __GNU_GETTEXT_SUPPORTED_REVISION
Packit Service 3749ba
extern int _nl_msg_cat_cntr;
Packit Service 3749ba
extern
Packit Service 3749ba
#ifdef __cplusplus
Packit Service 3749ba
"C"
Packit Service 3749ba
#endif
Packit Service 3749ba
const char *_nl_expand_alias (const char *);
Packit Service 3749ba
#define __GNU_GETTEXT_SYMBOL_EXPRESSION (_nl_msg_cat_cntr + *_nl_expand_alias (""))
Packit Service 3749ba
#else
Packit Service 3749ba
#define __GNU_GETTEXT_SYMBOL_EXPRESSION 0
Packit Service 3749ba
#endif
Packit Service 3749ba
$gt_revision_test_code
Packit Service 3749ba
                   ]],
Packit Service 3749ba
                   [[
Packit Service 3749ba
bindtextdomain ("", "");
Packit Service 3749ba
return * gettext ("")$gt_expression_test_code + __GNU_GETTEXT_SYMBOL_EXPRESSION
Packit Service 3749ba
                   ]])],
Packit Service 3749ba
                [LIBINTL="$LIBINTL $LIBICONV"
Packit Service 3749ba
                 LTLIBINTL="$LTLIBINTL $LTLIBICONV"
Packit Service 3749ba
                 eval "$gt_func_gnugettext_libintl=yes"
Packit Service 3749ba
                ])
Packit Service 3749ba
            fi
Packit Service 3749ba
            CPPFLAGS="$gt_save_CPPFLAGS"
Packit Service 3749ba
            LIBS="$gt_save_LIBS"])
Packit Service 3749ba
        fi
Packit Service 3749ba
Packit Service 3749ba
        dnl If an already present or preinstalled GNU gettext() is found,
Packit Service 3749ba
        dnl use it.  But if this macro is used in GNU gettext, and GNU
Packit Service 3749ba
        dnl gettext is already preinstalled in libintl, we update this
Packit Service 3749ba
        dnl libintl.  (Cf. the install rule in intl/Makefile.in.)
Packit Service 3749ba
        if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" = "yes"; } \
Packit Service 3749ba
           || { { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; } \
Packit Service 3749ba
                && test "$PACKAGE" != gettext-runtime \
Packit Service 3749ba
                && test "$PACKAGE" != gettext-tools; }; then
Packit Service 3749ba
          gt_use_preinstalled_gnugettext=yes
Packit Service 3749ba
        else
Packit Service 3749ba
          dnl Reset the values set by searching for libintl.
Packit Service 3749ba
          LIBINTL=
Packit Service 3749ba
          LTLIBINTL=
Packit Service 3749ba
          INCINTL=
Packit Service 3749ba
        fi
Packit Service 3749ba
Packit Service 3749ba
    ifelse(gt_included_intl, yes, [
Packit Service 3749ba
        if test "$gt_use_preinstalled_gnugettext" != "yes"; then
Packit Service 3749ba
          dnl GNU gettext is not found in the C library.
Packit Service 3749ba
          dnl Fall back on included GNU gettext library.
Packit Service 3749ba
          nls_cv_use_gnu_gettext=yes
Packit Service 3749ba
        fi
Packit Service 3749ba
      fi
Packit Service 3749ba
Packit Service 3749ba
      if test "$nls_cv_use_gnu_gettext" = "yes"; then
Packit Service 3749ba
        dnl Mark actions used to generate GNU NLS library.
Packit Service 3749ba
        BUILD_INCLUDED_LIBINTL=yes
Packit Service 3749ba
        USE_INCLUDED_LIBINTL=yes
Packit Service 3749ba
        LIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.la $LIBICONV $LIBTHREAD"
Packit Service 3749ba
        LTLIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.la $LTLIBICONV $LTLIBTHREAD"
Packit Service 3749ba
        LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'`
Packit Service 3749ba
      fi
Packit Service 3749ba
Packit Service 3749ba
      CATOBJEXT=
Packit Service 3749ba
      if test "$gt_use_preinstalled_gnugettext" = "yes" \
Packit Service 3749ba
         || test "$nls_cv_use_gnu_gettext" = "yes"; then
Packit Service 3749ba
        dnl Mark actions to use GNU gettext tools.
Packit Service 3749ba
        CATOBJEXT=.gmo
Packit Service 3749ba
      fi
Packit Service 3749ba
    ])
Packit Service 3749ba
Packit Service 3749ba
    if test -n "$INTL_MACOSX_LIBS"; then
Packit Service 3749ba
      if test "$gt_use_preinstalled_gnugettext" = "yes" \
Packit Service 3749ba
         || test "$nls_cv_use_gnu_gettext" = "yes"; then
Packit Service 3749ba
        dnl Some extra flags are needed during linking.
Packit Service 3749ba
        LIBINTL="$LIBINTL $INTL_MACOSX_LIBS"
Packit Service 3749ba
        LTLIBINTL="$LTLIBINTL $INTL_MACOSX_LIBS"
Packit Service 3749ba
      fi
Packit Service 3749ba
    fi
Packit Service 3749ba
Packit Service 3749ba
    if test "$gt_use_preinstalled_gnugettext" = "yes" \
Packit Service 3749ba
       || test "$nls_cv_use_gnu_gettext" = "yes"; then
Packit Service 3749ba
      AC_DEFINE([ENABLE_NLS], [1],
Packit Service 3749ba
        [Define to 1 if translation of program messages to the user's native language
Packit Service 3749ba
   is requested.])
Packit Service 3749ba
    else
Packit Service 3749ba
      USE_NLS=no
Packit Service 3749ba
    fi
Packit Service 3749ba
  fi
Packit Service 3749ba
Packit Service 3749ba
  AC_MSG_CHECKING([whether to use NLS])
Packit Service 3749ba
  AC_MSG_RESULT([$USE_NLS])
Packit Service 3749ba
  if test "$USE_NLS" = "yes"; then
Packit Service 3749ba
    AC_MSG_CHECKING([where the gettext function comes from])
Packit Service 3749ba
    if test "$gt_use_preinstalled_gnugettext" = "yes"; then
Packit Service 3749ba
      if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then
Packit Service 3749ba
        gt_source="external libintl"
Packit Service 3749ba
      else
Packit Service 3749ba
        gt_source="libc"
Packit Service 3749ba
      fi
Packit Service 3749ba
    else
Packit Service 3749ba
      gt_source="included intl directory"
Packit Service 3749ba
    fi
Packit Service 3749ba
    AC_MSG_RESULT([$gt_source])
Packit Service 3749ba
  fi
Packit Service 3749ba
Packit Service 3749ba
  if test "$USE_NLS" = "yes"; then
Packit Service 3749ba
Packit Service 3749ba
    if test "$gt_use_preinstalled_gnugettext" = "yes"; then
Packit Service 3749ba
      if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then
Packit Service 3749ba
        AC_MSG_CHECKING([how to link with libintl])
Packit Service 3749ba
        AC_MSG_RESULT([$LIBINTL])
Packit Service 3749ba
        AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCINTL])
Packit Service 3749ba
      fi
Packit Service 3749ba
Packit Service 3749ba
      dnl For backward compatibility. Some packages may be using this.
Packit Service 3749ba
      AC_DEFINE([HAVE_GETTEXT], [1],
Packit Service 3749ba
       [Define if the GNU gettext() function is already present or preinstalled.])
Packit Service 3749ba
      AC_DEFINE([HAVE_DCGETTEXT], [1],
Packit Service 3749ba
       [Define if the GNU dcgettext() function is already present or preinstalled.])
Packit Service 3749ba
    fi
Packit Service 3749ba
Packit Service 3749ba
    dnl We need to process the po/ directory.
Packit Service 3749ba
    POSUB=po
Packit Service 3749ba
  fi
Packit Service 3749ba
Packit Service 3749ba
  ifelse(gt_included_intl, yes, [
Packit Service 3749ba
    dnl In GNU gettext we have to set BUILD_INCLUDED_LIBINTL to 'yes'
Packit Service 3749ba
    dnl because some of the testsuite requires it.
Packit Service 3749ba
    BUILD_INCLUDED_LIBINTL=yes
Packit Service 3749ba
Packit Service 3749ba
    dnl Make all variables we use known to autoconf.
Packit Service 3749ba
    AC_SUBST([BUILD_INCLUDED_LIBINTL])
Packit Service 3749ba
    AC_SUBST([USE_INCLUDED_LIBINTL])
Packit Service 3749ba
    AC_SUBST([CATOBJEXT])
Packit Service 3749ba
  ])
Packit Service 3749ba
Packit Service 3749ba
  dnl For backward compatibility. Some Makefiles may be using this.
Packit Service 3749ba
  INTLLIBS="$LIBINTL"
Packit Service 3749ba
  AC_SUBST([INTLLIBS])
Packit Service 3749ba
Packit Service 3749ba
  dnl Make all documented variables known to autoconf.
Packit Service 3749ba
  AC_SUBST([LIBINTL])
Packit Service 3749ba
  AC_SUBST([LTLIBINTL])
Packit Service 3749ba
  AC_SUBST([POSUB])
Packit Service 3749ba
])
Packit Service 3749ba
Packit Service 3749ba
Packit Service 3749ba
dnl gt_NEEDS_INIT ensures that the gt_needs variable is initialized.
Packit Service 3749ba
m4_define([gt_NEEDS_INIT],
Packit Service 3749ba
[
Packit Service 3749ba
  m4_divert_text([DEFAULTS], [gt_needs=])
Packit Service 3749ba
  m4_define([gt_NEEDS_INIT], [])
Packit Service 3749ba
])
Packit Service 3749ba
Packit Service 3749ba
Packit Service 3749ba
dnl Usage: AM_GNU_GETTEXT_NEED([NEEDSYMBOL])
Packit Service 3749ba
AC_DEFUN([AM_GNU_GETTEXT_NEED],
Packit Service 3749ba
[
Packit Service 3749ba
  m4_divert_text([INIT_PREPARE], [gt_needs="$gt_needs $1"])
Packit Service 3749ba
])
Packit Service 3749ba
Packit Service 3749ba
Packit Service 3749ba
dnl Usage: AM_GNU_GETTEXT_VERSION([gettext-version])
Packit Service 3749ba
AC_DEFUN([AM_GNU_GETTEXT_VERSION], [])
Packit Service 3749ba
Packit Service 3749ba
Packit Service 3749ba
dnl Usage: AM_GNU_GETTEXT_REQUIRE_VERSION([gettext-version])
Packit Service 3749ba
AC_DEFUN([AM_GNU_GETTEXT_REQUIRE_VERSION], [])