Merging to bring en@*.po back in (and removed from .hgignore).

This commit is contained in:
Micah Cowan 2007-10-30 17:25:23 -07:00
commit dc4645031b
50 changed files with 13857 additions and 15542 deletions

View File

@ -1,3 +1,15 @@
2007-10-23 Micah Cowan <micah@schmendrick>
* lib/stdbool.in.h, lib/stdint.in.h: gnulib-tool --update.
Includes fix for broken stdbool.h on Tru64.
2007-10-22 Micah Cowan <micah@cowan.name>
* po/*.po: Refresh from TP and update-po.
* lib/Makefile.am, m4/gnulib-cache.m4, m4/longlong.m4,
m4/ulonglong.m4, maint.mk: gnulib-tool --update. Includes fix
for maint.mk with old versions of gzip.
2007-10-18 Micah Cowan <micah@cowan.name>
* po/POTFILES.in: Removed no-longer-existing or generated files.

View File

@ -9,7 +9,7 @@
# the same distribution terms as the rest of that program.
#
# Generated by gnulib-tool.
# Reproduce by: gnulib-tool --import --dir=. --lib=libgnu --source-base=lib --m4-base=m4 --doc-base=doc --aux-dir=. --no-libtool --macro-prefix=gl c-ctype crypto/md5 getopt maintainer-makefile md5
# Reproduce by: gnulib-tool --import --dir=. --lib=libgnu --source-base=lib --m4-base=m4 --doc-base=doc --aux-dir=. --no-libtool --macro-prefix=gl c-ctype crypto/md5 getopt maintainer-makefile
AUTOMAKE_OPTIONS = 1.5 gnits

View File

@ -97,10 +97,11 @@ typedef bool _Bool;
"warning: _Bool is a keyword in ISO C99".
Use of an enum type, with IRIX cc, leads to a stupid
"warning(1185): enumerated type mixed with another type".
The only benefit of the enum type, debuggability, is not important
with these compilers. So use 'signed char' and no typedef. */
Even the existence of an enum type, without a typedef,
"Invalid enumerator. (badenum)" with HP-UX cc on Tru64.
The only benefit of the enum, debuggability, is not important
with these compilers. So use 'signed char' and no enum. */
# define _Bool signed char
enum { false = 0, true = 1 };
# else
/* With this compiler, trust the _Bool type if the compiler has it. */
# if !@HAVE__BOOL@

View File

@ -247,6 +247,11 @@
# define uintmax_t unsigned long int
#endif
/* Verify that intmax_t and uintmax_t have the same size. Too much code
breaks if this is not the case. If this check fails, the reason is likely
to be found in the autoconf macros. */
typedef int _verify_intmax_size[2 * (sizeof (intmax_t) == sizeof (uintmax_t)) - 1];
/* 7.18.2. Limits of specified-width integer types */
#if ! defined __cplusplus || defined __STDC_LIMIT_MACROS

View File

@ -15,7 +15,7 @@
# Specification in the form of a command-line invocation:
# gnulib-tool --import --dir=. --lib=libgnu --source-base=lib --m4-base=m4 --doc-base=doc --aux-dir=. --no-libtool --macro-prefix=gl c-ctype crypto/md5 getopt maintainer-makefile md5
# gnulib-tool --import --dir=. --lib=libgnu --source-base=lib --m4-base=m4 --doc-base=doc --aux-dir=. --no-libtool --macro-prefix=gl c-ctype crypto/md5 getopt maintainer-makefile
# Specification in the form of a few gnulib-tool.m4 macro invocations:
gl_LOCAL_DIR([])

View File

@ -1,5 +1,5 @@
# longlong.m4 serial 10
dnl Copyright (C) 1999-2006 Free Software Foundation, Inc.
# longlong.m4 serial 11
dnl Copyright (C) 1999-2007 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
dnl with or without modifications, as long as this notice is preserved.
@ -7,8 +7,8 @@ dnl with or without modifications, as long as this notice is preserved.
dnl From Paul Eggert.
# Define HAVE_LONG_LONG_INT if 'long long int' works.
# This fixes a bug in Autoconf 2.60, but can be removed once we
# assume 2.61 everywhere.
# This fixes a bug in Autoconf 2.61, but can be removed once we
# assume 2.62 everywhere.
# Note: If the type 'long long int' exists but is only 32 bits large
# (as on some very old compilers), HAVE_LONG_LONG_INT will not be
@ -19,7 +19,10 @@ AC_DEFUN([AC_TYPE_LONG_LONG_INT],
AC_CACHE_CHECK([for long long int], [ac_cv_type_long_long_int],
[AC_LINK_IFELSE(
[AC_LANG_PROGRAM(
[[long long int ll = 9223372036854775807ll;
[[#if ! (-9223372036854775807LL < 0 && 0 < 9223372036854775807ll)
error in preprocessor;
#endif
long long int ll = 9223372036854775807ll;
long long int nll = -9223372036854775807LL;
typedef int a[((-9223372036854775807LL < 0
&& 0 < 9223372036854775807ll)

View File

@ -1,5 +1,5 @@
# ulonglong.m4 serial 6
dnl Copyright (C) 1999-2006 Free Software Foundation, Inc.
# ulonglong.m4 serial 8
dnl Copyright (C) 1999-2007 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
dnl with or without modifications, as long as this notice is preserved.
@ -7,8 +7,8 @@ dnl with or without modifications, as long as this notice is preserved.
dnl From Paul Eggert.
# Define HAVE_UNSIGNED_LONG_LONG_INT if 'unsigned long long int' works.
# This fixes a bug in Autoconf 2.60, but can be removed once we
# assume 2.61 everywhere.
# This fixes a bug in Autoconf 2.61, but can be removed once we
# assume 2.62 everywhere.
# Note: If the type 'unsigned long long int' exists but is only 32 bits
# large (as on some very old compilers), AC_TYPE_UNSIGNED_LONG_LONG_INT
@ -21,7 +21,10 @@ AC_DEFUN([AC_TYPE_UNSIGNED_LONG_LONG_INT],
[ac_cv_type_unsigned_long_long_int],
[AC_LINK_IFELSE(
[AC_LANG_PROGRAM(
[[unsigned long long int ull = 18446744073709551615ULL;
[[#if ! (18446744073709551615ULL <= -1ull)
error in preprocessor;
#endif
unsigned long long int ull = 18446744073709551615ULL;
typedef int a[(18446744073709551615ULL <= (unsigned long long int) -1
? 1 : -1)];
int i = 63;]],

View File

@ -30,7 +30,7 @@ C_SOURCES += $(C_SOURCES_ADD)
# Do not save the original name or timestamp in the .tar.gz file.
# Use --rsyncable if available.
gzip_rsyncable := \
$(shell gzip --help|grep rsyncable >/dev/null && echo --rsyncable)
$(shell gzip --help 2>/dev/null|grep rsyncable >/dev/null && echo --rsyncable)
GZIP_ENV = '--no-name --best $(gzip_rsyncable)'
# Prevent programs like 'sort' from considering distinct strings to be equal.

746
po/bg.po

File diff suppressed because it is too large Load Diff

752
po/ca.po

File diff suppressed because it is too large Load Diff

1959
po/cs.po

File diff suppressed because it is too large Load Diff

746
po/da.po

File diff suppressed because it is too large Load Diff

771
po/de.po

File diff suppressed because it is too large Load Diff

746
po/el.po

File diff suppressed because it is too large Load Diff

View File

@ -1827,4 +1827,3 @@ msgstr "Failed to unlink symlink %s: %s\n"
#, c-format
msgid "%s: %s: Failed to allocate %ld bytes; memory exhausted.\n"
msgstr "%s: %s: Failed to allocate %ld bytes; memory exhausted.\n"

View File

@ -1820,4 +1820,3 @@ msgstr "Failed to unlink symlink %s: %s\n"
#, c-format
msgid "%s: %s: Failed to allocate %ld bytes; memory exhausted.\n"
msgstr "%s: %s: Failed to allocate %ld bytes; memory exhausted.\n"

File diff suppressed because it is too large Load Diff

749
po/eo.po

File diff suppressed because it is too large Load Diff

750
po/es.po

File diff suppressed because it is too large Load Diff

749
po/et.po

File diff suppressed because it is too large Load Diff

746
po/eu.po

File diff suppressed because it is too large Load Diff

749
po/fi.po

File diff suppressed because it is too large Load Diff

751
po/fr.po

File diff suppressed because it is too large Load Diff

778
po/ga.po

File diff suppressed because it is too large Load Diff

746
po/gl.po

File diff suppressed because it is too large Load Diff

746
po/he.po

File diff suppressed because it is too large Load Diff

751
po/hr.po

File diff suppressed because it is too large Load Diff

750
po/hu.po

File diff suppressed because it is too large Load Diff

749
po/id.po

File diff suppressed because it is too large Load Diff

794
po/it.po

File diff suppressed because it is too large Load Diff

769
po/ja.po

File diff suppressed because it is too large Load Diff

758
po/nb.po

File diff suppressed because it is too large Load Diff

767
po/nl.po

File diff suppressed because it is too large Load Diff

746
po/pl.po

File diff suppressed because it is too large Load Diff

750
po/pt.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

746
po/ro.po

File diff suppressed because it is too large Load Diff

751
po/ru.po

File diff suppressed because it is too large Load Diff

772
po/sk.po

File diff suppressed because it is too large Load Diff

748
po/sl.po

File diff suppressed because it is too large Load Diff

746
po/sr.po

File diff suppressed because it is too large Load Diff

767
po/sv.po

File diff suppressed because it is too large Load Diff

749
po/tr.po

File diff suppressed because it is too large Load Diff

756
po/uk.po

File diff suppressed because it is too large Load Diff

968
po/vi.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,14 @@
2007-10-30 Micah Cowan <micah@cowan.name>
* main.c (main): Declare argv parameter as char **argv, rather
than char *const *argv. This fixes usage of getopt_long,
regardless of whether getopt_long has a constified argv or not.
2007-10-22 Gisle Vanem <gvanem@broadpark.no>
* mswindows.c: Move INHIBIT_WRAP macro definition up with wget.h
inclusion.
2007-10-18 Steven Schweda <sms@antinode.org>
* sysdep.h: #include <stdint.h> as well as <inttypes.h>, to work

View File

@ -688,7 +688,7 @@ There is NO WARRANTY, to the extent permitted by law.\n"), stdout);
int
main (int argc, char *const *argv)
main (int argc, char **argv)
{
char **url, **t;
int i, ret, longindex;

View File

@ -27,6 +27,8 @@ modify this file, you may extend this exception to your version of the
file, but you are not obligated to do so. If you do not wish to do
so, delete this exception statement from your version. */
#define INHIBIT_WRAP /* avoid wrapping of socket, bind, ... */
#include "wget.h"
#include <stdio.h>
@ -36,7 +38,6 @@ so, delete this exception statement from your version. */
#include <errno.h>
#include <math.h>
#define INHIBIT_WRAP /* avoid wrapping of socket, bind, ... */
#include "utils.h"
#include "url.h"