From fa3aa6441c9a8a4ac460e11d18b4ed3b0ae543b8 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Thu, 23 Jun 2011 22:22:57 -0500 Subject: Let configure gettext setup know we use ngettext() Signed-off-by: Dan McGee --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 12f36be6..a98b51a7 100644 --- a/configure.ac +++ b/configure.ac @@ -133,7 +133,7 @@ AC_CHECK_PROGS([PYTHON], [python2.7 python2.6 python2.5 python2 python], [false] AC_PATH_PROGS([BASH_SHELL], [bash bash4 bash3], [false]) # find installed gettext -AM_GNU_GETTEXT([external]) +AM_GNU_GETTEXT([external], [need-ngettext]) AM_GNU_GETTEXT_VERSION(0.13.1) AC_CHECK_LIB([m], [fabs], , -- cgit v1.2.3-2-g168b From a4a7006a138f05c1b774414a55ffb5499d7b289f Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Thu, 23 Jun 2011 21:21:51 -0500 Subject: po/: split into scripts/po/ and src/pacman/po/ This is the first step at separating the pacman message catalog and the scripts message catalog. Makefiles, configure.ac, and other such files are adjusted accordingly, as well as renaming files. The TEXTDOMAIN of scripts is also adjusted. Note that no actual pot or po files get changed here; these will get pruned in a future commit so each catalog contains only the necessary messages. Signed-off-by: Dan McGee --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index a98b51a7..a149c7d0 100644 --- a/configure.ac +++ b/configure.ac @@ -373,11 +373,12 @@ AC_CONFIG_FILES([ lib/libalpm/Makefile lib/libalpm/po/Makefile.in src/pacman/Makefile +src/pacman/po/Makefile.in src/util/Makefile scripts/Makefile +scripts/po/Makefile.in doc/Makefile etc/Makefile -po/Makefile.in test/pacman/Makefile test/pacman/tests/Makefile test/util/Makefile -- cgit v1.2.3-2-g168b