Changeset 7bbc2548f92696457164ebf7f4f86dc815ef80c7 for m4/po.m4
- Timestamp:
- 03/23/08 21:01:24 (5 months ago)
- git-parent:
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
m4/po.m4
r1263062 r7bbc254 1 # po.m4 serial 1 3 (gettext-0.15)2 dnl Copyright (C) 1995-200 6Free Software Foundation, Inc.1 # po.m4 serial 15 (gettext-0.17) 2 dnl Copyright (C) 1995-2007 Free Software Foundation, Inc. 3 3 dnl This file is free software; the Free Software Foundation 4 4 dnl gives unlimited permission to copy and/or distribute it, … … 27 27 AC_REQUIRE([AM_PROG_MKDIR_P])dnl defined by automake 28 28 AC_REQUIRE([AM_NLS])dnl 29 30 dnl Release version of the gettext macros. This is used to ensure that 31 dnl the gettext macros and po/Makefile.in.in are in sync. 32 AC_SUBST([GETTEXT_MACRO_VERSION], [0.17]) 29 33 30 34 dnl Perform the following tests also if --disable-nls has been given, … … 84 88 test -n "$localedir" || localedir='${datadir}/locale' 85 89 AC_SUBST([localedir]) 90 91 dnl Support for AM_XGETTEXT_OPTION. 92 test -n "${XGETTEXT_EXTRA_OPTIONS+set}" || XGETTEXT_EXTRA_OPTIONS= 93 AC_SUBST([XGETTEXT_EXTRA_OPTIONS]) 86 94 87 95 AC_CONFIG_COMMANDS([po-directories], [[ … … 427 435 mv "$ac_file.tmp" "$ac_file" 428 436 ]) 437 438 dnl Initializes the accumulator used by AM_XGETTEXT_OPTION. 439 AC_DEFUN([AM_XGETTEXT_OPTION_INIT], 440 [ 441 XGETTEXT_EXTRA_OPTIONS= 442 ]) 443 444 dnl Registers an option to be passed to xgettext in the po subdirectory. 445 AC_DEFUN([AM_XGETTEXT_OPTION], 446 [ 447 AC_REQUIRE([AM_XGETTEXT_OPTION_INIT]) 448 XGETTEXT_EXTRA_OPTIONS="$XGETTEXT_EXTRA_OPTIONS $1" 449 ])
