Update to 0.21. Incremental changes only.

From martijn@:
GCC on alpha has an optimization bug, which cause problems with gnulib's
mmalloca function. Disable alloca to work around the failing code.
This commit is contained in:
naddy 2020-08-20 21:03:25 +00:00
parent 64facc3f8d
commit 16dd58a3a5
8 changed files with 121 additions and 83 deletions

View File

@ -1,21 +1,21 @@
# $OpenBSD: Makefile,v 1.95 2020/05/28 19:52:35 naddy Exp $
# $OpenBSD: Makefile,v 1.96 2020/08/20 21:03:25 naddy Exp $
COMMENT-runtime= GNU gettext runtime libraries and programs
COMMENT-textstyle= text styling library
COMMENT-tools= GNU gettext development and translation tools
VERSION= 0.20.2
VERSION= 0.21
DISTNAME= gettext-${VERSION}
PKGNAME-runtime= gettext-runtime-${VERSION}
PKGNAME-textstyle= libtextstyle-${VERSION}
PKGNAME-tools= gettext-tools-${VERSION}
SHARED_LIBS += intl 7.0 # 9.7
SHARED_LIBS += intl 7.0 # 10.0
SHARED_LIBS += asprintf 1.1 # unknown
SHARED_LIBS += textstyle 0.0 # 0.1
SHARED_LIBS += gettextlib 9.0 # unknown
SHARED_LIBS += gettextsrc 7.0 # unknown
SHARED_LIBS += gettextpo 9.1 # 5.6
SHARED_LIBS += textstyle 0.1 # 1.1
SHARED_LIBS += gettextlib 10.0 # unknown
SHARED_LIBS += gettextsrc 8.0 # unknown
SHARED_LIBS += gettextpo 10.0 # 5.7
SUBST_VARS= VERSION
@ -63,6 +63,12 @@ CONFIGURE_ARGS= --disable-csharp \
--without-emacs \
--without-git
# GCC on alpha has an optimization bug, which cause problems with gnulib's
# mmalloca function. Disable alloca to work around the failing code.
.if ${MACHINE_ARCH} == "alpha"
CONFIGURE_ENV+= ac_cv_func_alloca_works=no
.endif
MODGNU_CONFIG_GUESS_DIRS= ${WRKSRC}/build-aux \
${WRKSRC}/libtextstyle/build-aux

View File

@ -1,2 +1,2 @@
SHA256 (gettext-0.20.2.tar.xz) = siuBjmRMN/bj0WQ6GUPDLDqb/3JtYB5TBH0mggGc6ro=
SIZE (gettext-0.20.2.tar.xz) = 9514892
SHA256 (gettext-0.21.tar.xz) = 0g/LtTfgLc8Tgxl7oFvQc073v12wa9skHrabfRa3MZI=
SIZE (gettext-0.21.tar.xz) = 9714352

View File

@ -1,8 +1,8 @@
$OpenBSD: patch-gettext-runtime_intl_dcigettext_c,v 1.9 2020/05/28 19:52:35 naddy Exp $
$OpenBSD: patch-gettext-runtime_intl_dcigettext_c,v 1.10 2020/08/20 21:03:25 naddy Exp $
Index: gettext-runtime/intl/dcigettext.c
--- gettext-runtime/intl/dcigettext.c.orig
+++ gettext-runtime/intl/dcigettext.c
@@ -491,6 +491,7 @@ DCIGETTEXT (const char *domainname, const char *msgid1
@@ -494,6 +494,7 @@ DCIGETTEXT (const char *domainname, const char *msgid1
const char *localename;
#endif
size_t domainname_len;
@ -10,7 +10,7 @@ Index: gettext-runtime/intl/dcigettext.c
/* If no real MSGID is given return NULL. */
if (msgid1 == NULL)
@@ -611,6 +612,7 @@ DCIGETTEXT (const char *domainname, const char *msgid1
@@ -685,6 +686,7 @@ DCIGETTEXT (const char *domainname, const char *msgid1
/* We have a relative path. Make it absolute now. */
size_t dirname_len = strlen (dirname) + 1;
size_t path_max;
@ -18,7 +18,7 @@ Index: gettext-runtime/intl/dcigettext.c
char *resolved_dirname;
char *ret;
@@ -619,7 +621,8 @@ DCIGETTEXT (const char *domainname, const char *msgid1
@@ -693,7 +695,8 @@ DCIGETTEXT (const char *domainname, const char *msgid1
for (;;)
{
@ -28,7 +28,7 @@ Index: gettext-runtime/intl/dcigettext.c
ADD_BLOCK (block_list, resolved_dirname);
__set_errno (0);
@@ -636,7 +639,8 @@ DCIGETTEXT (const char *domainname, const char *msgid1
@@ -710,7 +713,8 @@ DCIGETTEXT (const char *domainname, const char *msgid1
error but simply return the default string. */
goto return_untranslated;
@ -37,8 +37,8 @@ Index: gettext-runtime/intl/dcigettext.c
+ strlcat (resolved_dirname, dirname, resolved_dirname_len);
dirname = resolved_dirname;
}
#ifndef IN_LIBGLOCALE
@@ -654,13 +658,14 @@ DCIGETTEXT (const char *domainname, const char *msgid1
#endif
@@ -729,13 +733,14 @@ DCIGETTEXT (const char *domainname, const char *msgid1
#endif
domainname_len = strlen (domainname);
@ -58,7 +58,7 @@ Index: gettext-runtime/intl/dcigettext.c
/* Creating working area. */
single_locale = (char *) alloca (strlen (categoryvalue) + 1);
@@ -758,13 +763,17 @@ DCIGETTEXT (const char *domainname, const char *msgid1
@@ -837,13 +842,17 @@ DCIGETTEXT (const char *domainname, const char *msgid1
/* Create a new entry and add it to the search tree. */
size_t msgid_len;
size_t size;
@ -77,7 +77,7 @@ Index: gettext-runtime/intl/dcigettext.c
#endif
newp = (struct known_translation_t *) malloc (size);
if (newp != NULL)
@@ -780,7 +789,7 @@ DCIGETTEXT (const char *domainname, const char *msgid1
@@ -859,7 +868,7 @@ DCIGETTEXT (const char *domainname, const char *msgid1
memcpy (new_domainname, domainname, domainname_len + 1);
#ifdef HAVE_PER_THREAD_LOCALE
new_localename = new_domainname + domainname_len + 1;

View File

@ -1,17 +1,17 @@
$OpenBSD: patch-gettext-runtime_intl_l10nflist_c,v 1.6 2020/05/28 19:52:35 naddy Exp $
$OpenBSD: patch-gettext-runtime_intl_l10nflist_c,v 1.7 2020/08/20 21:03:25 naddy Exp $
Index: gettext-runtime/intl/l10nflist.c
--- gettext-runtime/intl/l10nflist.c.orig
+++ gettext-runtime/intl/l10nflist.c
@@ -166,6 +166,7 @@ _nl_make_l10nflist (struct loaded_l10nfile **l10nfile_
@@ -103,6 +103,7 @@ _nl_make_l10nflist (struct loaded_l10nfile **l10nfile_
#endif
struct loaded_l10nfile **lastp;
struct loaded_l10nfile *retval;
char *cp;
+ size_t abs_filename_len;
size_t dirlist_count;
size_t entries;
int cnt;
@@ -176,7 +177,7 @@ _nl_make_l10nflist (struct loaded_l10nfile **l10nfile_
dirlist_len = 0;
@@ -118,7 +119,7 @@ _nl_make_l10nflist (struct loaded_l10nfile **l10nfile_
}
/* Allocate room for the full file name. */
- abs_filename = (char *) malloc (dirlist_len
@ -19,7 +19,7 @@ Index: gettext-runtime/intl/l10nflist.c
+ strlen (language)
+ ((mask & XPG_TERRITORY) != 0
? strlen (territory) + 1 : 0)
@@ -187,6 +188,7 @@ _nl_make_l10nflist (struct loaded_l10nfile **l10nfile_
@@ -129,6 +130,7 @@ _nl_make_l10nflist (struct loaded_l10nfile **l10nfile_
+ ((mask & XPG_MODIFIER) != 0
? strlen (modifier) + 1 : 0)
+ 1 + strlen (filename) + 1);
@ -27,52 +27,52 @@ Index: gettext-runtime/intl/l10nflist.c
if (abs_filename == NULL)
return NULL;
@@ -200,32 +202,33 @@ _nl_make_l10nflist (struct loaded_l10nfile **l10nfile_
cp += dirlist_len;
cp[-1] = '/';
}
+ *cp = '\0';
@@ -147,32 +149,33 @@ _nl_make_l10nflist (struct loaded_l10nfile **l10nfile_
cp += dirlist_len;
cp[-1] = '/';
}
+ *cp = '\0';
- cp = stpcpy (cp, language);
+ strlcat (abs_filename, language, abs_filename_len);
- cp = stpcpy (cp, language);
+ strlcat (abs_filename, language, abs_filename_len);
if ((mask & XPG_TERRITORY) != 0)
{
- *cp++ = '_';
- cp = stpcpy (cp, territory);
+ strlcat (abs_filename, "_", abs_filename_len);
+ strlcat (abs_filename, territory, abs_filename_len);
}
if ((mask & XPG_CODESET) != 0)
{
- *cp++ = '.';
- cp = stpcpy (cp, codeset);
+ strlcat (abs_filename, ".", abs_filename_len);
+ strlcat (abs_filename, codeset, abs_filename_len);
}
if ((mask & XPG_NORM_CODESET) != 0)
{
- *cp++ = '.';
- cp = stpcpy (cp, normalized_codeset);
+ strlcat (abs_filename, ".", abs_filename_len);
+ strlcat (abs_filename, normalized_codeset, abs_filename_len);
}
if ((mask & XPG_MODIFIER) != 0)
{
- *cp++ = '@';
- cp = stpcpy (cp, modifier);
+ strlcat (abs_filename, "@", abs_filename_len);
+ strlcat (abs_filename, modifier, abs_filename_len);
}
if ((mask & XPG_TERRITORY) != 0)
{
- *cp++ = '_';
- cp = stpcpy (cp, territory);
+ strlcat (abs_filename, "_", abs_filename_len);
+ strlcat (abs_filename, territory, abs_filename_len);
}
if ((mask & XPG_CODESET) != 0)
{
- *cp++ = '.';
- cp = stpcpy (cp, codeset);
+ strlcat (abs_filename, ".", abs_filename_len);
+ strlcat (abs_filename, codeset, abs_filename_len);
}
if ((mask & XPG_NORM_CODESET) != 0)
{
- *cp++ = '.';
- cp = stpcpy (cp, normalized_codeset);
+ strlcat (abs_filename, ".", abs_filename_len);
+ strlcat (abs_filename, normalized_codeset, abs_filename_len);
}
if ((mask & XPG_MODIFIER) != 0)
{
- *cp++ = '@';
- cp = stpcpy (cp, modifier);
+ strlcat (abs_filename, "@", abs_filename_len);
+ strlcat (abs_filename, modifier, abs_filename_len);
}
- *cp++ = '/';
- stpcpy (cp, filename);
+ strlcat (abs_filename, "/", abs_filename_len);
+ strlcat (abs_filename, filename, abs_filename_len);
- *cp++ = '/';
- stpcpy (cp, filename);
+ strlcat (abs_filename, "/", abs_filename_len);
+ strlcat (abs_filename, filename, abs_filename_len);
}
/* Look in list of already loaded domains whether it is already
available. */
@@ -349,7 +352,7 @@ _nl_normalize_codeset (const char *codeset, size_t nam
#if defined _WIN32 && !defined __CYGWIN__
@@ -367,7 +370,7 @@ _nl_normalize_codeset (const char *codeset, size_t nam
if (retval != NULL)
{
if (only_digit)

View File

@ -1,8 +1,8 @@
$OpenBSD: patch-gettext-runtime_intl_relocatable_c,v 1.6 2019/05/20 22:15:03 naddy Exp $
$OpenBSD: patch-gettext-runtime_intl_relocatable_c,v 1.7 2020/08/20 21:03:25 naddy Exp $
Index: gettext-runtime/intl/relocatable.c
--- gettext-runtime/intl/relocatable.c.orig
+++ gettext-runtime/intl/relocatable.c
@@ -509,13 +509,17 @@ relocate (const char *pathname)
@@ -515,13 +515,17 @@ relocate (const char *pathname)
if (pathname[orig_prefix_len] == '\0')
{
/* pathname equals orig_prefix. */
@ -22,7 +22,7 @@ Index: gettext-runtime/intl/relocatable.c
return result;
}
}
@@ -523,15 +527,19 @@ relocate (const char *pathname)
@@ -529,15 +533,19 @@ relocate (const char *pathname)
{
/* pathname starts with orig_prefix. */
const char *pathname_tail = &pathname[orig_prefix_len];

View File

@ -1,4 +1,4 @@
$OpenBSD: patch-gettext-tools_gnulib-lib_Makefile_in,v 1.11 2020/05/28 19:52:35 naddy Exp $
$OpenBSD: patch-gettext-tools_gnulib-lib_Makefile_in,v 1.12 2020/08/20 21:03:25 naddy Exp $
Use standard shared library versioning.
@ -8,16 +8,18 @@ This was also a race if MAKE_JOBS > 1.
Index: gettext-tools/gnulib-lib/Makefile.in
--- gettext-tools/gnulib-lib/Makefile.in.orig
+++ gettext-tools/gnulib-lib/Makefile.in
@@ -2782,7 +2782,7 @@ libgettextlib_la_LDFLAGS = $(AM_LDFLAGS) -no-undefined
$(LIB_ACL) $(LIB_CLOCK_GETTIME) $(LIB_HARD_LOCALE) \
$(LIB_MBRTOWC) $(LIB_SETLOCALE) $(LIB_SETLOCALE_NULL) \
$(LOG10_LIBM) $(LTLIBICONV) $(LTLIBINTL) $(LTLIBUNISTRING) \
- $(POW_LIBM) @INTL_MACOSX_LIBS@ -release @VERSION@ \
+ $(POW_LIBM) @INTL_MACOSX_LIBS@ \
$(am__append_3) $(am__append_8) $(am__append_24) \
$(am__append_25)
@@ -2829,8 +2829,8 @@ libgettextlib_la_LDFLAGS = $(AM_LDFLAGS) -no-undefined
$(LIB_ACL) $(LIB_CLOCK_GETTIME) $(LIB_GETRANDOM) \
$(LIB_HARD_LOCALE) $(LIB_MBRTOWC) $(LIB_SETLOCALE) \
$(LIB_SETLOCALE_NULL) $(LOG10_LIBM) $(LTLIBICONV) $(LTLIBINTL) \
- $(LTLIBUNISTRING) $(POW_LIBM) @INTL_MACOSX_LIBS@ -release \
- @VERSION@ $(am__append_3) $(am__append_8) $(am__append_25) \
+ $(LTLIBUNISTRING) $(POW_LIBM) @INTL_MACOSX_LIBS@ \
+ $(am__append_3) $(am__append_8) $(am__append_25) \
$(am__append_26)
@@ -3768,7 +3768,7 @@ getopt-cdefs.h: getopt-cdefs.in.h $(top_builddir)/conf
# Use this preprocessor expression to decide whether #include_next works.
@@ -3834,7 +3834,7 @@ getopt-cdefs.h: getopt-cdefs.in.h $(top_builddir)/conf
mv -f $@-t $@
# No need to install libgettextlib.a, except on AIX.

View File

@ -1,4 +1,4 @@
$OpenBSD: patch-gettext-tools_src_Makefile_in,v 1.12 2020/05/28 19:52:35 naddy Exp $
$OpenBSD: patch-gettext-tools_src_Makefile_in,v 1.13 2020/08/20 21:03:25 naddy Exp $
Use standard shared library versioning.
@ -8,7 +8,7 @@ This was also a race if MAKE_JOBS > 1.
Index: gettext-tools/src/Makefile.in
--- gettext-tools/src/Makefile.in.orig
+++ gettext-tools/src/Makefile.in
@@ -2685,7 +2685,7 @@ cldr_plurals_LDADD = libgettextsrc.la $(LDADD)
@@ -2741,7 +2741,7 @@ cldr_plurals_LDADD = libgettextsrc.la $(LDADD)
# Need @LTLIBINTL@ because many source files use gettext().
# Need @LTLIBICONV@ because po-charset.c, po-lex.c, msgl-iconv.c, write-po.c
# use iconv().
@ -17,7 +17,7 @@ Index: gettext-tools/src/Makefile.in
../gnulib-lib/libgettextlib.la $(LTLIBUNISTRING) \
$(LT_LIBTEXTSTYLE) @LTLIBINTL@ @LTLIBICONV@ -lc -no-undefined \
$(am__append_3) $(am__append_5) $(am__append_7)
@@ -4124,7 +4124,7 @@ uninstall-am: uninstall-binPROGRAMS uninstall-libLTLIB
@@ -4200,7 +4200,7 @@ uninstall-am: uninstall-binPROGRAMS uninstall-libLTLIB
@USE_INSTALLED_LIBTEXTSTYLE_FALSE@ $(MAKE) install-nobase_includeHEADERS install-nobase_nodist_includeHEADERS includedir="$$here"
# No need to install libgettextsrc.a, except on AIX.

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST-tools,v 1.3 2020/05/28 19:52:36 naddy Exp $
@comment $OpenBSD: PLIST-tools,v 1.4 2020/08/20 21:03:25 naddy Exp $
@pkgpath devel/gettext-tools
bin/autopoint
bin/gettextize
@ -123,6 +123,7 @@ share/doc/gettext/examples/hello-c++-gnome/po/ms.po
share/doc/gettext/examples/hello-c++-gnome/po/mt.po
share/doc/gettext/examples/hello-c++-gnome/po/nb.po
share/doc/gettext/examples/hello-c++-gnome/po/nl.po
share/doc/gettext/examples/hello-c++-gnome/po/nn.po
share/doc/gettext/examples/hello-c++-gnome/po/pl.po
share/doc/gettext/examples/hello-c++-gnome/po/pt.po
share/doc/gettext/examples/hello-c++-gnome/po/pt_BR.po
@ -206,6 +207,7 @@ share/doc/gettext/examples/hello-c++-kde/po/ms.po
share/doc/gettext/examples/hello-c++-kde/po/mt.po
share/doc/gettext/examples/hello-c++-kde/po/nb.po
share/doc/gettext/examples/hello-c++-kde/po/nl.po
share/doc/gettext/examples/hello-c++-kde/po/nn.po
share/doc/gettext/examples/hello-c++-kde/po/pl.po
share/doc/gettext/examples/hello-c++-kde/po/pt.po
share/doc/gettext/examples/hello-c++-kde/po/pt_BR.po
@ -262,6 +264,7 @@ share/doc/gettext/examples/hello-c++-qt/po/ms.po
share/doc/gettext/examples/hello-c++-qt/po/mt.po
share/doc/gettext/examples/hello-c++-qt/po/nb.po
share/doc/gettext/examples/hello-c++-qt/po/nl.po
share/doc/gettext/examples/hello-c++-qt/po/nn.po
share/doc/gettext/examples/hello-c++-qt/po/pl.po
share/doc/gettext/examples/hello-c++-qt/po/pt.po
share/doc/gettext/examples/hello-c++-qt/po/pt_BR.po
@ -317,6 +320,7 @@ share/doc/gettext/examples/hello-c++-wxwidgets/po/ms.po
share/doc/gettext/examples/hello-c++-wxwidgets/po/mt.po
share/doc/gettext/examples/hello-c++-wxwidgets/po/nb.po
share/doc/gettext/examples/hello-c++-wxwidgets/po/nl.po
share/doc/gettext/examples/hello-c++-wxwidgets/po/nn.po
share/doc/gettext/examples/hello-c++-wxwidgets/po/pl.po
share/doc/gettext/examples/hello-c++-wxwidgets/po/pt.po
share/doc/gettext/examples/hello-c++-wxwidgets/po/pt_BR.po
@ -371,6 +375,7 @@ share/doc/gettext/examples/hello-c++/po/ms.po
share/doc/gettext/examples/hello-c++/po/mt.po
share/doc/gettext/examples/hello-c++/po/nb.po
share/doc/gettext/examples/hello-c++/po/nl.po
share/doc/gettext/examples/hello-c++/po/nn.po
share/doc/gettext/examples/hello-c++/po/pl.po
share/doc/gettext/examples/hello-c++/po/pt.po
share/doc/gettext/examples/hello-c++/po/pt_BR.po
@ -429,6 +434,7 @@ share/doc/gettext/examples/hello-c-gnome/po/ms.po
share/doc/gettext/examples/hello-c-gnome/po/mt.po
share/doc/gettext/examples/hello-c-gnome/po/nb.po
share/doc/gettext/examples/hello-c-gnome/po/nl.po
share/doc/gettext/examples/hello-c-gnome/po/nn.po
share/doc/gettext/examples/hello-c-gnome/po/pl.po
share/doc/gettext/examples/hello-c-gnome/po/pt.po
share/doc/gettext/examples/hello-c-gnome/po/pt_BR.po
@ -488,6 +494,7 @@ share/doc/gettext/examples/hello-c-gnome3/po/ms.po
share/doc/gettext/examples/hello-c-gnome3/po/mt.po
share/doc/gettext/examples/hello-c-gnome3/po/nb.po
share/doc/gettext/examples/hello-c-gnome3/po/nl.po
share/doc/gettext/examples/hello-c-gnome3/po/nn.po
share/doc/gettext/examples/hello-c-gnome3/po/pl.po
share/doc/gettext/examples/hello-c-gnome3/po/pt.po
share/doc/gettext/examples/hello-c-gnome3/po/pt_BR.po
@ -542,6 +549,7 @@ share/doc/gettext/examples/hello-c/po/ms.po
share/doc/gettext/examples/hello-c/po/mt.po
share/doc/gettext/examples/hello-c/po/nb.po
share/doc/gettext/examples/hello-c/po/nl.po
share/doc/gettext/examples/hello-c/po/nn.po
share/doc/gettext/examples/hello-c/po/pl.po
share/doc/gettext/examples/hello-c/po/pt.po
share/doc/gettext/examples/hello-c/po/pt_BR.po
@ -596,6 +604,7 @@ share/doc/gettext/examples/hello-clisp/po/ms.po
share/doc/gettext/examples/hello-clisp/po/mt.po
share/doc/gettext/examples/hello-clisp/po/nb.po
share/doc/gettext/examples/hello-clisp/po/nl.po
share/doc/gettext/examples/hello-clisp/po/nn.po
share/doc/gettext/examples/hello-clisp/po/pl.po
share/doc/gettext/examples/hello-clisp/po/pt.po
share/doc/gettext/examples/hello-clisp/po/pt_BR.po
@ -652,6 +661,7 @@ share/doc/gettext/examples/hello-csharp-forms/po/ms.po
share/doc/gettext/examples/hello-csharp-forms/po/mt.po
share/doc/gettext/examples/hello-csharp-forms/po/nb.po
share/doc/gettext/examples/hello-csharp-forms/po/nl.po
share/doc/gettext/examples/hello-csharp-forms/po/nn.po
share/doc/gettext/examples/hello-csharp-forms/po/pl.po
share/doc/gettext/examples/hello-csharp-forms/po/pt.po
share/doc/gettext/examples/hello-csharp-forms/po/pt_BR.po
@ -705,6 +715,7 @@ share/doc/gettext/examples/hello-csharp/po/ms.po
share/doc/gettext/examples/hello-csharp/po/mt.po
share/doc/gettext/examples/hello-csharp/po/nb.po
share/doc/gettext/examples/hello-csharp/po/nl.po
share/doc/gettext/examples/hello-csharp/po/nn.po
share/doc/gettext/examples/hello-csharp/po/pl.po
share/doc/gettext/examples/hello-csharp/po/pt.po
share/doc/gettext/examples/hello-csharp/po/pt_BR.po
@ -759,6 +770,7 @@ share/doc/gettext/examples/hello-gawk/po/ms.po
share/doc/gettext/examples/hello-gawk/po/mt.po
share/doc/gettext/examples/hello-gawk/po/nb.po
share/doc/gettext/examples/hello-gawk/po/nl.po
share/doc/gettext/examples/hello-gawk/po/nn.po
share/doc/gettext/examples/hello-gawk/po/pl.po
share/doc/gettext/examples/hello-gawk/po/pt.po
share/doc/gettext/examples/hello-gawk/po/pt_BR.po
@ -813,6 +825,7 @@ share/doc/gettext/examples/hello-guile/po/ms.po
share/doc/gettext/examples/hello-guile/po/mt.po
share/doc/gettext/examples/hello-guile/po/nb.po
share/doc/gettext/examples/hello-guile/po/nl.po
share/doc/gettext/examples/hello-guile/po/nn.po
share/doc/gettext/examples/hello-guile/po/pl.po
share/doc/gettext/examples/hello-guile/po/pt.po
share/doc/gettext/examples/hello-guile/po/pt_BR.po
@ -871,6 +884,7 @@ share/doc/gettext/examples/hello-java-awt/po/ms.po
share/doc/gettext/examples/hello-java-awt/po/mt.po
share/doc/gettext/examples/hello-java-awt/po/nb.po
share/doc/gettext/examples/hello-java-awt/po/nl.po
share/doc/gettext/examples/hello-java-awt/po/nn.po
share/doc/gettext/examples/hello-java-awt/po/pl.po
share/doc/gettext/examples/hello-java-awt/po/pt.po
share/doc/gettext/examples/hello-java-awt/po/pt_BR.po
@ -928,6 +942,7 @@ share/doc/gettext/examples/hello-java-qtjambi/po/ms.po
share/doc/gettext/examples/hello-java-qtjambi/po/mt.po
share/doc/gettext/examples/hello-java-qtjambi/po/nb.po
share/doc/gettext/examples/hello-java-qtjambi/po/nl.po
share/doc/gettext/examples/hello-java-qtjambi/po/nn.po
share/doc/gettext/examples/hello-java-qtjambi/po/pl.po
share/doc/gettext/examples/hello-java-qtjambi/po/pt.po
share/doc/gettext/examples/hello-java-qtjambi/po/pt_BR.po
@ -985,6 +1000,7 @@ share/doc/gettext/examples/hello-java-swing/po/ms.po
share/doc/gettext/examples/hello-java-swing/po/mt.po
share/doc/gettext/examples/hello-java-swing/po/nb.po
share/doc/gettext/examples/hello-java-swing/po/nl.po
share/doc/gettext/examples/hello-java-swing/po/nn.po
share/doc/gettext/examples/hello-java-swing/po/pl.po
share/doc/gettext/examples/hello-java-swing/po/pt.po
share/doc/gettext/examples/hello-java-swing/po/pt_BR.po
@ -1038,6 +1054,7 @@ share/doc/gettext/examples/hello-java/po/ms.po
share/doc/gettext/examples/hello-java/po/mt.po
share/doc/gettext/examples/hello-java/po/nb.po
share/doc/gettext/examples/hello-java/po/nl.po
share/doc/gettext/examples/hello-java/po/nn.po
share/doc/gettext/examples/hello-java/po/pl.po
share/doc/gettext/examples/hello-java/po/pt.po
share/doc/gettext/examples/hello-java/po/pt_BR.po
@ -1092,6 +1109,7 @@ share/doc/gettext/examples/hello-librep/po/ms.po
share/doc/gettext/examples/hello-librep/po/mt.po
share/doc/gettext/examples/hello-librep/po/nb.po
share/doc/gettext/examples/hello-librep/po/nl.po
share/doc/gettext/examples/hello-librep/po/nn.po
share/doc/gettext/examples/hello-librep/po/pl.po
share/doc/gettext/examples/hello-librep/po/pt.po
share/doc/gettext/examples/hello-librep/po/pt_BR.po
@ -1151,6 +1169,7 @@ share/doc/gettext/examples/hello-objc-gnome/po/ms.po
share/doc/gettext/examples/hello-objc-gnome/po/mt.po
share/doc/gettext/examples/hello-objc-gnome/po/nb.po
share/doc/gettext/examples/hello-objc-gnome/po/nl.po
share/doc/gettext/examples/hello-objc-gnome/po/nn.po
share/doc/gettext/examples/hello-objc-gnome/po/pl.po
share/doc/gettext/examples/hello-objc-gnome/po/pt.po
share/doc/gettext/examples/hello-objc-gnome/po/pt_BR.po
@ -1208,6 +1227,7 @@ share/doc/gettext/examples/hello-objc-gnustep/po/ms.po
share/doc/gettext/examples/hello-objc-gnustep/po/mt.po
share/doc/gettext/examples/hello-objc-gnustep/po/nb.po
share/doc/gettext/examples/hello-objc-gnustep/po/nl.po
share/doc/gettext/examples/hello-objc-gnustep/po/nn.po
share/doc/gettext/examples/hello-objc-gnustep/po/pl.po
share/doc/gettext/examples/hello-objc-gnustep/po/pt.po
share/doc/gettext/examples/hello-objc-gnustep/po/pt_BR.po
@ -1262,6 +1282,7 @@ share/doc/gettext/examples/hello-objc/po/ms.po
share/doc/gettext/examples/hello-objc/po/mt.po
share/doc/gettext/examples/hello-objc/po/nb.po
share/doc/gettext/examples/hello-objc/po/nl.po
share/doc/gettext/examples/hello-objc/po/nn.po
share/doc/gettext/examples/hello-objc/po/pl.po
share/doc/gettext/examples/hello-objc/po/pt.po
share/doc/gettext/examples/hello-objc/po/pt_BR.po
@ -1316,6 +1337,7 @@ share/doc/gettext/examples/hello-pascal/po/ms.po
share/doc/gettext/examples/hello-pascal/po/mt.po
share/doc/gettext/examples/hello-pascal/po/nb.po
share/doc/gettext/examples/hello-pascal/po/nl.po
share/doc/gettext/examples/hello-pascal/po/nn.po
share/doc/gettext/examples/hello-pascal/po/pl.po
share/doc/gettext/examples/hello-pascal/po/pt.po
share/doc/gettext/examples/hello-pascal/po/pt_BR.po
@ -1371,6 +1393,7 @@ share/doc/gettext/examples/hello-perl/po/ms.po
share/doc/gettext/examples/hello-perl/po/mt.po
share/doc/gettext/examples/hello-perl/po/nb.po
share/doc/gettext/examples/hello-perl/po/nl.po
share/doc/gettext/examples/hello-perl/po/nn.po
share/doc/gettext/examples/hello-perl/po/pl.po
share/doc/gettext/examples/hello-perl/po/pt.po
share/doc/gettext/examples/hello-perl/po/pt_BR.po
@ -1426,6 +1449,7 @@ share/doc/gettext/examples/hello-php/po/ms.po
share/doc/gettext/examples/hello-php/po/mt.po
share/doc/gettext/examples/hello-php/po/nb.po
share/doc/gettext/examples/hello-php/po/nl.po
share/doc/gettext/examples/hello-php/po/nn.po
share/doc/gettext/examples/hello-php/po/pl.po
share/doc/gettext/examples/hello-php/po/pt.po
share/doc/gettext/examples/hello-php/po/pt_BR.po
@ -1480,6 +1504,7 @@ share/doc/gettext/examples/hello-python/po/ms.po
share/doc/gettext/examples/hello-python/po/mt.po
share/doc/gettext/examples/hello-python/po/nb.po
share/doc/gettext/examples/hello-python/po/nl.po
share/doc/gettext/examples/hello-python/po/nn.po
share/doc/gettext/examples/hello-python/po/pl.po
share/doc/gettext/examples/hello-python/po/pt.po
share/doc/gettext/examples/hello-python/po/pt_BR.po
@ -1534,6 +1559,7 @@ share/doc/gettext/examples/hello-sh/po/ms.po
share/doc/gettext/examples/hello-sh/po/mt.po
share/doc/gettext/examples/hello-sh/po/nb.po
share/doc/gettext/examples/hello-sh/po/nl.po
share/doc/gettext/examples/hello-sh/po/nn.po
share/doc/gettext/examples/hello-sh/po/pl.po
share/doc/gettext/examples/hello-sh/po/pt.po
share/doc/gettext/examples/hello-sh/po/pt_BR.po
@ -1588,6 +1614,7 @@ share/doc/gettext/examples/hello-smalltalk/po/ms.po
share/doc/gettext/examples/hello-smalltalk/po/mt.po
share/doc/gettext/examples/hello-smalltalk/po/nb.po
share/doc/gettext/examples/hello-smalltalk/po/nl.po
share/doc/gettext/examples/hello-smalltalk/po/nn.po
share/doc/gettext/examples/hello-smalltalk/po/pl.po
share/doc/gettext/examples/hello-smalltalk/po/pt.po
share/doc/gettext/examples/hello-smalltalk/po/pt_BR.po
@ -1643,6 +1670,7 @@ share/doc/gettext/examples/hello-tcl-tk/po/ms.po
share/doc/gettext/examples/hello-tcl-tk/po/mt.po
share/doc/gettext/examples/hello-tcl-tk/po/nb.po
share/doc/gettext/examples/hello-tcl-tk/po/nl.po
share/doc/gettext/examples/hello-tcl-tk/po/nn.po
share/doc/gettext/examples/hello-tcl-tk/po/pl.po
share/doc/gettext/examples/hello-tcl-tk/po/pt.po
share/doc/gettext/examples/hello-tcl-tk/po/pt_BR.po
@ -1696,6 +1724,7 @@ share/doc/gettext/examples/hello-tcl/po/ms.po
share/doc/gettext/examples/hello-tcl/po/mt.po
share/doc/gettext/examples/hello-tcl/po/nb.po
share/doc/gettext/examples/hello-tcl/po/nl.po
share/doc/gettext/examples/hello-tcl/po/nn.po
share/doc/gettext/examples/hello-tcl/po/pl.po
share/doc/gettext/examples/hello-tcl/po/pt.po
share/doc/gettext/examples/hello-tcl/po/pt_BR.po
@ -1750,6 +1779,7 @@ share/doc/gettext/examples/hello-ycp/po/ms.po
share/doc/gettext/examples/hello-ycp/po/mt.po
share/doc/gettext/examples/hello-ycp/po/nb.po
share/doc/gettext/examples/hello-ycp/po/nl.po
share/doc/gettext/examples/hello-ycp/po/nn.po
share/doc/gettext/examples/hello-ycp/po/pl.po
share/doc/gettext/examples/hello-ycp/po/pt.po
share/doc/gettext/examples/hello-ycp/po/pt_BR.po