forked from redox-os/gawk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to gettext 0.19.7. Update NEWS.
- Loading branch information
1 parent
062e6b0
commit 2c80dd3
Showing
16 changed files
with
1,309 additions
and
1,176 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
2016-02-23 Arnold D. Robbins <[email protected]> | ||
|
||
* NEWS: Update full list of infrastructure tools. | ||
|
||
2016-02-22 gettextize <[email protected]> | ||
|
||
* configure.ac (AM_GNU_GETTEXT_VERSION): Bump to 0.19.7. | ||
|
||
2016-02-21 Arnold D. Robbins <[email protected]> | ||
|
||
* regexec.c (prune_impossible_nodes): Remove attribute that | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
2016-02-22 gettextize <[email protected]> | ||
|
||
* gettext.m4: Upgrade to gettext-0.19.7. | ||
* lib-ld.m4: Upgrade to gettext-0.19.7. | ||
* lib-link.m4: Upgrade to gettext-0.19.7. | ||
* lib-prefix.m4: Upgrade to gettext-0.19.7. | ||
* nls.m4: Upgrade to gettext-0.19.7. | ||
* po.m4: Upgrade to gettext-0.19.7. | ||
* progtest.m4: Upgrade to gettext-0.19.7. | ||
|
||
2015-09-11 Daniel Richard G. <[email protected]> | ||
|
||
* arch.m4: Rework again. In particular, provide a wrapper | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
2016-02-22 gettextize <[email protected]> | ||
|
||
* Makefile.in.in: Upgrade to gettext-0.19.7. | ||
* Rules-quot: Upgrade to gettext-0.19.7. | ||
|
||
2015-05-19 Arnold D. Robbins <[email protected]> | ||
|
||
* 4.1.3: Release tar ball made. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,12 @@ | ||
# Makefile for PO directory in any package using GNU gettext. | ||
# Copyright (C) 1995-1997, 2000-2007, 2009-2010 by Ulrich Drepper <[email protected]> | ||
# | ||
# This file can be copied and used freely without restrictions. It can | ||
# be used in projects which are not available under the GNU General Public | ||
# License but which still want to provide support for the GNU gettext | ||
# functionality. | ||
# Please note that the actual code of GNU gettext is covered by the GNU | ||
# General Public License and is *not* in the public domain. | ||
# Copying and distribution of this file, with or without modification, | ||
# are permitted in any medium without royalty provided the copyright | ||
# notice and this notice are preserved. This file is offered as-is, | ||
# without any warranty. | ||
# | ||
# Origin: gettext-0.19 | ||
# Origin: gettext-0.19.7 | ||
GETTEXT_MACRO_VERSION = 0.19 | ||
|
||
PACKAGE = @PACKAGE@ | ||
|
@@ -45,6 +43,11 @@ install_sh = $(SHELL) @install_sh@ | |
MKDIR_P = @MKDIR_P@ | ||
mkdir_p = @mkdir_p@ | ||
|
||
# When building gettext-tools, we prefer to use the built programs | ||
# rather than installed programs. However, we can't do that when we | ||
# are cross compiling. | ||
CROSS_COMPILING = @CROSS_COMPILING@ | ||
|
||
GMSGFMT_ = @GMSGFMT@ | ||
GMSGFMT_no = @GMSGFMT@ | ||
GMSGFMT_yes = @GMSGFMT_015@ | ||
|
@@ -197,6 +200,11 @@ $(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed | |
;; \ | ||
esac | ||
test ! -f $(DOMAIN).po || { \ | ||
if test -f $(srcdir)/$(DOMAIN).pot-header; then \ | ||
sed -e '1,/^#$$/d' < $(DOMAIN).po > $(DOMAIN).1po && \ | ||
cat $(srcdir)/$(DOMAIN).pot-header $(DOMAIN).1po > $(DOMAIN).po; \ | ||
rm -f $(DOMAIN).1po; \ | ||
fi; \ | ||
if test -f $(srcdir)/$(DOMAIN).pot; then \ | ||
sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \ | ||
sed -f remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \ | ||
|
@@ -226,7 +234,7 @@ $(POFILES): $(POFILESDEPS) | |
test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ | ||
echo "$${cdcmd}$(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) --lang=$${lang} $${lang}.po $(DOMAIN).pot"; \ | ||
cd $(srcdir) \ | ||
&& { case `$(MSGMERGE_UPDATE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ | ||
&& { case `$(MSGMERGE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ | ||
'' | 0.[0-9] | 0.[0-9].* | 0.1[0-7] | 0.1[0-7].*) \ | ||
$(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) $${lang}.po $(DOMAIN).pot;; \ | ||
*) \ | ||
|
@@ -427,7 +435,7 @@ update-po: Makefile | |
|
||
.nop.po-update: | ||
@lang=`echo $@ | sed -e 's/\.po-update$$//'`; \ | ||
if test "$(PACKAGE)" = "gettext-tools"; then PATH=`pwd`/../src:$$PATH; fi; \ | ||
if test "$(PACKAGE)" = "gettext-tools" && test "$(CROSS_COMPILING)" != "yes"; then PATH=`pwd`/../src:$$PATH; fi; \ | ||
tmpdir=`pwd`; \ | ||
echo "$$lang:"; \ | ||
test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ [email protected]: [email protected] | |
|
||
.insert-header.po-update-en: | ||
@lang=`echo $@ | sed -e 's/\.po-update-en$$//'`; \ | ||
if test "$(PACKAGE)" = "gettext-tools"; then PATH=`pwd`/../src:$$PATH; GETTEXTLIBDIR=`cd $(top_srcdir)/src && pwd`; export GETTEXTLIBDIR; fi; \ | ||
if test "$(PACKAGE)" = "gettext-tools" && test "$(CROSS_COMPILING)" != "yes"; then PATH=`pwd`/../src:$$PATH; GETTEXTLIBDIR=`cd $(top_srcdir)/src && pwd`; export GETTEXTLIBDIR; fi; \ | ||
tmpdir=`pwd`; \ | ||
echo "$$lang:"; \ | ||
ll=`echo $$lang | sed -e 's/@.*//'`; \ | ||
|