Blame m4/gettext.m4

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