Changeset 126306281bcb5dbf58fc5c6c6e28d0caf08e6a50 for m4/po.m4
- Timestamp:
- 23/03/08 17:08:13 (8 months ago)
- git-parent:
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
m4/po.m4
r974a399 r1263062 1 # po.m4 serial 1 5 (gettext-0.17)2 dnl Copyright (C) 1995-200 7Free Software Foundation, Inc.1 # po.m4 serial 13 (gettext-0.15) 2 dnl Copyright (C) 1995-2006 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 that31 dnl the gettext macros and po/Makefile.in.in are in sync.32 AC_SUBST([GETTEXT_MACRO_VERSION], [0.17])33 29 34 30 dnl Perform the following tests also if --disable-nls has been given, … … 88 84 test -n "$localedir" || localedir='${datadir}/locale' 89 85 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])94 86 95 87 AC_CONFIG_COMMANDS([po-directories], [[ … … 435 427 mv "$ac_file.tmp" "$ac_file" 436 428 ]) 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 ])
