Blame m4/gettext.m4

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