Blame m4/gettext.m4

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