Blame m4/gettext.m4

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