mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
[mq]: cfg-mk
This commit is contained in:
parent
73ff253e37
commit
4a08094db8
1
.x-sc_po_check
Normal file
1
.x-sc_po_check
Normal file
@ -0,0 +1 @@
|
|||||||
|
src/wget.h
|
9
.x-sc_trailing_blank
Normal file
9
.x-sc_trailing_blank
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
doc/wget.texi
|
||||||
|
po/bg.po
|
||||||
|
ChangeLog
|
||||||
|
doc/ChangeLog
|
||||||
|
src/ChangeLog
|
||||||
|
windows/ChangeLog
|
||||||
|
msdos/ChangeLog
|
||||||
|
tests/ChangeLog
|
||||||
|
build-aux/texinfo.tex
|
@ -1,5 +1,9 @@
|
|||||||
2009-09-21 Micah Cowan <micah@cowan.name>
|
2009-09-21 Micah Cowan <micah@cowan.name>
|
||||||
|
|
||||||
|
* vms/VMS-WGET.COM: "the the" -> "the".
|
||||||
|
|
||||||
|
* po/POTFILES.in: Removed some files that are not using gettext.
|
||||||
|
|
||||||
* po/*.po: Updated from translationproject.org.
|
* po/*.po: Updated from translationproject.org.
|
||||||
|
|
||||||
2009-09-20 Micah Cowan <micah@cowan.name>
|
2009-09-20 Micah Cowan <micah@cowan.name>
|
||||||
|
28
cfg.mk
28
cfg.mk
@ -1 +1,29 @@
|
|||||||
|
export VC_LIST_EXCEPT_DEFAULT=^(lib/.*|m4/.*|md5/.*|build-aux/.*|src/gettext\.h|.*ChangeLog)$$
|
||||||
|
|
||||||
|
local-checks-to-skip = \
|
||||||
|
sc_const_long_option \
|
||||||
|
sc_error_message_uppercase \
|
||||||
|
sc_file_system \
|
||||||
|
sc_makefile_TAB_only_indentation \
|
||||||
|
sc_immutable_NEWS \
|
||||||
|
sc_copyright_check \
|
||||||
|
sc_makefile_path_separator_check \
|
||||||
|
sc_require_config_h \
|
||||||
|
sc_require_config_h_first \
|
||||||
|
sc_two_space_separator_in_usage \
|
||||||
|
sc_useless_cpp_parens \
|
||||||
|
\
|
||||||
|
sc_space_tab \
|
||||||
|
sc_prohibit_atoi_atof \
|
||||||
|
sc_prohibit_strcmp \
|
||||||
|
sc_makefile_check \
|
||||||
|
sc_cast_of_alloca_return_value \
|
||||||
|
sc_cast_of_x_alloc_return_value \
|
||||||
|
sc_prohibit_S_IS_definition \
|
||||||
|
\
|
||||||
|
sc_program_name \
|
||||||
|
|
||||||
|
|
||||||
|
#SHELL=bash -x
|
||||||
|
show-vc-list-except:
|
||||||
|
@$(VC_LIST_EXCEPT)
|
||||||
|
@ -537,7 +537,7 @@ if test "X$iri" != "Xno"; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if test "X$iri" != "Xno" ; then
|
if test "X$iri" != "Xno" ; then
|
||||||
AC_DEFINE(ENABLE_IRI, 1, [Define if IRI support is enabled.])
|
AC_DEFINE([ENABLE_IRI], 1, [Define if IRI support is enabled.])
|
||||||
AC_MSG_NOTICE([Enabling support for IRI.])
|
AC_MSG_NOTICE([Enabling support for IRI.])
|
||||||
else
|
else
|
||||||
AC_MSG_WARN([Libidn not found])
|
AC_MSG_WARN([Libidn not found])
|
||||||
|
@ -7,19 +7,13 @@ lib/error.c
|
|||||||
lib/getopt.c
|
lib/getopt.c
|
||||||
lib/quotearg.c
|
lib/quotearg.c
|
||||||
lib/xalloc-die.c
|
lib/xalloc-die.c
|
||||||
src/cmpt.c
|
|
||||||
src/connect.c
|
src/connect.c
|
||||||
src/convert.c
|
src/convert.c
|
||||||
src/cookies.c
|
src/cookies.c
|
||||||
src/ftp-basic.c
|
|
||||||
src/ftp-ls.c
|
src/ftp-ls.c
|
||||||
src/ftp-opie.c
|
|
||||||
src/ftp.c
|
src/ftp.c
|
||||||
src/gen-md5.c
|
|
||||||
src/gnutls.c
|
src/gnutls.c
|
||||||
src/hash.c
|
|
||||||
src/host.c
|
src/host.c
|
||||||
src/html-parse.c
|
|
||||||
src/html-url.c
|
src/html-url.c
|
||||||
src/http.c
|
src/http.c
|
||||||
src/init.c
|
src/init.c
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
2009-09-21 Micah Cowan <micah@cowan.name>
|
||||||
|
|
||||||
|
* progress.c (update_speed_ring): "the the" -> "the".
|
||||||
|
|
||||||
|
* css-url.c, iri.c, mswindows.c: Removed assert.h inclusion (not
|
||||||
|
using it).
|
||||||
|
|
||||||
2009-09-11 Steven Schweda <sms@antinode.info>
|
2009-09-11 Steven Schweda <sms@antinode.info>
|
||||||
|
|
||||||
* utils.c, utils.h (fopen_excl): Make second argument an int,
|
* utils.c, utils.h (fopen_excl): Make second argument an int,
|
||||||
|
@ -49,7 +49,6 @@ as that of the covered work. */
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <assert.h>
|
|
||||||
|
|
||||||
#include "wget.h"
|
#include "wget.h"
|
||||||
#include "utils.h"
|
#include "utils.h"
|
||||||
|
@ -31,7 +31,6 @@ as that of the covered work. */
|
|||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <assert.h>
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <iconv.h>
|
#include <iconv.h>
|
||||||
#include <stringprep.h>
|
#include <stringprep.h>
|
||||||
|
@ -35,7 +35,6 @@ as that of the covered work. */
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <assert.h>
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
|
||||||
|
@ -715,7 +715,7 @@ update_speed_ring (struct bar_progress *bp, wgint howmuch, double dltime)
|
|||||||
if (bp->stalled)
|
if (bp->stalled)
|
||||||
{
|
{
|
||||||
bp->stalled = false;
|
bp->stalled = false;
|
||||||
/* "recent_age" includes the the entired stalled period, which
|
/* "recent_age" includes the entired stalled period, which
|
||||||
could be very long. Don't update the speed ring with that
|
could be very long. Don't update the speed ring with that
|
||||||
value because the current bandwidth would start too small.
|
value because the current bandwidth would start too small.
|
||||||
Start with an arbitrary (but more reasonable) time value and
|
Start with an arbitrary (but more reasonable) time value and
|
||||||
|
@ -24,7 +24,7 @@ $!
|
|||||||
$! To prevent automatic detection and use of OpenSSL, add "NOSSL"
|
$! To prevent automatic detection and use of OpenSSL, add "NOSSL"
|
||||||
$! to the command line. This procedure prefers a generic SSL kit to HP
|
$! to the command line. This procedure prefers a generic SSL kit to HP
|
||||||
$! SSL. If the generic logical names OPENSSL and SSLLIB are defined,
|
$! SSL. If the generic logical names OPENSSL and SSLLIB are defined,
|
||||||
$! they will be used instead of the the HP SSL logical names SSL$INCLUDE
|
$! they will be used instead of the HP SSL logical names SSL$INCLUDE
|
||||||
$! and SYS$SHARE. To use HP SSL when these generic logical names are
|
$! and SYS$SHARE. To use HP SSL when these generic logical names are
|
||||||
$! defined, add "HPSSL" to the command line.
|
$! defined, add "HPSSL" to the command line.
|
||||||
$!
|
$!
|
||||||
|
Loading…
Reference in New Issue
Block a user