mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
Merging to bring en@*.po back in (and removed from .hgignore).
This commit is contained in:
commit
dc4645031b
12
ChangeLog
12
ChangeLog
@ -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.
|
||||
|
@ -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
|
||||
|
||||
|
@ -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@
|
||||
|
@ -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
|
||||
|
@ -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([])
|
||||
|
@ -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)
|
||||
|
@ -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;]],
|
||||
|
2
maint.mk
2
maint.mk
@ -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.
|
||||
|
@ -1827,4 +1827,3 @@ msgstr "Failed to unlink symlink ‘[1m%s[0m’: %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"
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
746
po/en_GB.po
746
po/en_GB.po
File diff suppressed because it is too large
Load Diff
763
po/pt_BR.po
763
po/pt_BR.po
File diff suppressed because it is too large
Load Diff
746
po/zh_CN.po
746
po/zh_CN.po
File diff suppressed because it is too large
Load Diff
749
po/zh_TW.po
749
po/zh_TW.po
File diff suppressed because it is too large
Load Diff
@ -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
|
||||
|
@ -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;
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user