Re: [Bug-wget] [PATCH 10/14] Do not depend on always defined macros

2014-06-11 Thread Giuseppe Scrivano
"Steven M. Schweda" writes: >> diff --git a/vms/vms.h b/vms/vms.h >> index d65aeda..19efdef 100644 >> --- a/vms/vms.h >> +++ b/vms/vms.h >> @@ -54,8 +54,6 @@ int utime( const char *path, const struct utimbuf >> *times); >> */ >> #if defined(__VAX) || __CRTL_VER < 70301000 >> >> -#define lstat

Re: [Bug-wget] [PATCH 01/14] main: make program_name not static

2014-06-11 Thread Giuseppe Scrivano
Darshit Shah writes: >> diff --git a/src/ChangeLog b/src/ChangeLog >> index 5ebeaf3..f93cd70 100644 >> --- a/src/ChangeLog >> +++ b/src/ChangeLog >> @@ -1,5 +1,7 @@ >> 2014-06-08 Giuseppe Scrivano >> >> + * main.c: Make `program_name' not static. >> + >> * cookies.c [HAVE_PSL]:

Re: [Bug-wget] [PATCH 01/14] main: make program_name not static

2014-06-11 Thread Darshit Shah
On Wed, Jun 11, 2014 at 8:35 PM, wrote: > From: Giuseppe Scrivano > > --- > src/ChangeLog | 2 ++ > src/main.c| 6 ++ > 2 files changed, 4 insertions(+), 4 deletions(-) > > diff --git a/src/ChangeLog b/src/ChangeLog > index 5ebeaf3..f93cd70 100644 > --- a/src/ChangeLog > +++ b/src/Chang

[Bug-wget] [PATCH 10/14] Do not depend on always defined macros

2014-06-11 Thread Steven M. Schweda
> diff --git a/vms/vms.h b/vms/vms.h > index d65aeda..19efdef 100644 > --- a/vms/vms.h > +++ b/vms/vms.h > @@ -54,8 +54,6 @@ int utime( const char *path, const struct utimbuf > *times); > */ > #if defined(__VAX) || __CRTL_VER < 70301000 > > -#define lstat( __p1, __p2) stat( __p1, __p2) > - > #

Re: [Bug-wget] Update VMS Info?

2014-06-11 Thread Steven M. Schweda
From: Darshit Shah Thanks for the info. > There's a bunch of files in vms/ which is always being shipped with > the official sources. Define "always" and "shipped" (or "official sources"). I see no vms/ directory (or descrip*.mms files) in the 1.15 "tar" kit. Nor in the 1.14 "tar" kit.

[Bug-wget] [PATCH 14/14] ftp: Replace main() with main in comments.

2014-06-11 Thread gscrivano
From: Giuseppe Scrivano --- src/ChangeLog | 4 src/ftp.c | 2 +- src/http.c| 2 +- src/init.c| 6 +++--- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 0a4f4dc..07d7f38 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,

[Bug-wget] [PATCH 12/14] gnutls: do not include

2014-06-11 Thread gscrivano
From: Giuseppe Scrivano --- src/ChangeLog | 2 ++ src/gnutls.c | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index 2d950b1..88837a0 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2014-06-11 Giuseppe Scrivano + * gn

[Bug-wget] [PATCH 09/14] Replace @VAR@ in Makefile.am files with $VAR

2014-06-11 Thread gscrivano
From: Giuseppe Scrivano --- ChangeLog | 3 +++ Makefile.am | 2 +- doc/ChangeLog | 2 ++ doc/Makefile.am | 11 +-- src/ChangeLog | 2 ++ src/Makefile.am | 8 tests/ChangeLog | 2 ++ tests/Makefile.am | 4 ++-- util/Makefile.am | 2 +- 9 files

[Bug-wget] [PATCH 04/14] Drop usage of strncpy

2014-06-11 Thread gscrivano
From: Giuseppe Scrivano --- src/ChangeLog | 15 +++ src/css-url.c | 25 +++-- src/ftp-basic.c | 10 +- src/ftp.c | 14 +- src/http.c | 8 +--- src/init.c | 9 ++--- src/mswindows.c | 7 +++ src/retr.c | 2

[Bug-wget] [PATCH 13/14] Remove duplicated words

2014-06-11 Thread gscrivano
From: Giuseppe Scrivano --- ChangeLog | 2 ++ NEWS | 2 +- src/ChangeLog | 3 +++ src/cmpt.c| 2 +- src/utils.c | 2 +- 5 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7884ec6..29891b7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1

[Bug-wget] [PATCH 08/14] Remove trailing empty lines

2014-06-11 Thread gscrivano
From: Giuseppe Scrivano --- ABOUT-NLS | 1 - ChangeLog | 4 + MAILING-LIST | 1 - doc/ChangeLog | 4 + doc/fdl.texi

[Bug-wget] [PATCH 05/14] Update fdl.texi from gnulib

2014-06-11 Thread gscrivano
From: Giuseppe Scrivano --- doc/ChangeLog | 4 doc/fdl.texi | 25 - 2 files changed, 16 insertions(+), 13 deletions(-) diff --git a/doc/ChangeLog b/doc/ChangeLog index 17d5e8a..446ed5a 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,7 @@ +2014-06-10 Giu

[Bug-wget] [PATCH 11/14] po/POTFILES.in: add missing file

2014-06-11 Thread gscrivano
From: Giuseppe Scrivano --- ChangeLog | 2 ++ po/POTFILES.in | 1 + 2 files changed, 3 insertions(+) diff --git a/ChangeLog b/ChangeLog index 7c17082..7884ec6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2014-06-11 Giuseppe Scrivano + * po/POTFILES.in: Add lib/regcomp

[Bug-wget] [PATCH 07/14] Ensure main calls bindtextdomain

2014-06-11 Thread gscrivano
From: Giuseppe Scrivano --- ChangeLog| 4 src/ChangeLog| 9 + src/decc_ver.c | 9 + src/hash.c | 9 + src/html-parse.c | 8 src/netrc.c | 8 src/test.c | 8 util/trunc.c | 8 8 files changed, 63 i

[Bug-wget] [PATCH 10/14] Do not depend on always defined macros

2014-06-11 Thread gscrivano
From: Giuseppe Scrivano --- ChangeLog | 3 +++ configure.ac| 7 ++ src/ChangeLog | 11 + src/connect.c | 5 +--- src/convert.c | 4 +-- src/css-url.c | 6 + src/hash.c | 6 + src/mswindows.h | 19 -- src/netrc.c | 2 -- src/progre

[Bug-wget] [PATCH 06/14] Remove trailing whitespaces

2014-06-11 Thread gscrivano
From: Giuseppe Scrivano --- ChangeLog | 5 + build-aux/build_info.pl | 2 +- configure.ac| 6 +++--- doc/ChangeLog | 2 ++ doc/wget.texi | 10 +- src/ChangeLog | 2 ++ src/wget.h | 2 +- 7 files changed, 19 in

[Bug-wget] [PATCH 01/14] main: make program_name not static

2014-06-11 Thread gscrivano
From: Giuseppe Scrivano --- src/ChangeLog | 2 ++ src/main.c| 6 ++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 5ebeaf3..f93cd70 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2014-06-08 Giuseppe Scrivano +

[Bug-wget] [PATCH 03/14] Do not include strings.h

2014-06-11 Thread gscrivano
From: Giuseppe Scrivano --- src/warc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/warc.c b/src/warc.c index dbfc16f..e3e76d0 100644 --- a/src/warc.c +++ b/src/warc.c @@ -36,7 +36,6 @@ as that of the covered work. */ #include #include #include -#include #include #include

[Bug-wget] [PATCH 02/14] Do not use exit() with a magic number

2014-06-11 Thread gscrivano
From: Giuseppe Scrivano --- src/ChangeLog | 14 src/exits.c | 18 -- src/exits.h | 17 ++ src/init.c | 14 src/log.c | 5 +-- src/main.c | 88 -

[Bug-wget] [PATCH 00/14] fix "make syntax-check"

2014-06-11 Thread gscrivano
From: Giuseppe Scrivano A bunch of patches to fix "make syntax-check". Some of them were really made just to accomodate make syntax-check as "ftp: Replace main() with main in comments.". Let me know if you spot anything wrong or if is ok to push these patches to master. Giuseppe Scrivano (14):

Re: [Bug-wget] [bug-wget] Libpsl for cookie domain checking in Wget

2014-06-11 Thread Darshit Shah
On Wed, Jun 11, 2014 at 5:20 PM, Tim Rühsen wrote: > Am Freitag, 6. Juni 2014, 13:39:32 schrieb Darshit Shah: >> I'm facing an issue with the patch I submitted for libpsl and would be >> glad if someone could help me. >> >> The configure.ac file does not work as expected. When libpsl is not >> ins

Re: [Bug-wget] [bug-wget] Libpsl for cookie domain checking in Wget

2014-06-11 Thread Tim Rühsen
Am Mittwoch, 11. Juni 2014, 13:50:46 schrieb Tim Rühsen: > Am Freitag, 6. Juni 2014, 13:39:32 schrieb Darshit Shah: > > I'm facing an issue with the patch I submitted for libpsl and would be > > glad if someone could help me. > > > > The configure.ac file does not work as expected. When libpsl is

Re: [Bug-wget] [bug-wget] Libpsl for cookie domain checking in Wget

2014-06-11 Thread Tim Rühsen
Am Freitag, 6. Juni 2014, 13:39:32 schrieb Darshit Shah: > I'm facing an issue with the patch I submitted for libpsl and would be > glad if someone could help me. > > The configure.ac file does not work as expected. When libpsl is not > installed on a system, the LDFLAGS does not contain -lpsl fla

Re: [Bug-wget] Update VMS Info?

2014-06-11 Thread Darshit Shah
On Wed, Jun 11, 2014 at 3:21 PM, Giuseppe Scrivano wrote: > Darshit Shah writes: > There's another request too. `make syntax-check` gives a few issues with the config.h_vms file. Now I'm not sure if those declarations are indeed required or not. If not, can we please get rid of the

Re: [Bug-wget] Update VMS Info?

2014-06-11 Thread Giuseppe Scrivano
Darshit Shah writes: >>> There's another request too. `make syntax-check` gives a few issues >>> with the config.h_vms file. Now I'm not sure if those declarations are >>> indeed required or not. If not, can we please get rid of them? slightly related, I've started to work on fixing "make syntax

Re: [Bug-wget] Update VMS Info?

2014-06-11 Thread Darshit Shah
On Wed, Jun 11, 2014 at 6:55 AM, Steven M. Schweda wrote: > From: Darshit Shah > >> I was going through the VMS specific files in the source and realized >> that a lot of the documentation seems to be a little outdated. > >I'm always glad to see that VMS has not been forgotten here. > >> For