bug-wget archive search

Search String: Display: Description: Sort:

Results:

References: [ warc: 295 ]

Total 295 documents matching your query.

141. Re: [Bug-wget] Building and testing wget 1.16.1 on MinGW (score: 9)
Author: HIDDEN
Date: Fri, 19 Dec 2014 16:32:29 +0100
Hi Eli, \usr\bin\../lib/gcc/mingw32/4.7.2/../../../../include/string.h:92:39: Right, we have two issues. But using basename from gnulib increases overall compatibility *AND* also fixes your issue reg
/archive/html/bug-wget/2014-12/msg00112.html (12,622 bytes)

142. Re: [Bug-wget] Building and testing wget 1.16.1 on MinGW (score: 9)
Author: HIDDEN
Date: Fri, 19 Dec 2014 17:02:53 +0200
The MinGW implementation indeed writes into its argument string. However, warc.c already handles this contingency, and works on a copy of the argument passed to warc_write_record. So I see no proble
/archive/html/bug-wget/2014-12/msg00111.html (10,279 bytes)

143. Re: [Bug-wget] Building and testing wget 1.16.1 on MinGW (score: 9)
Author: HIDDEN
Date: Fri, 19 Dec 2014 12:53:13 +0100
Hi Eli, thanks for your detailed report(s) ! See my answers inline. Tim The man page for basename says that there is a POSIX-2001 and a GNU version. The POSIX version does not allow string literals -
/archive/html/bug-wget/2014-12/msg00109.html (15,924 bytes)

144. [Bug-wget] Building and testing wget 1.16.1 on MinGW (score: 9)
Author: HIDDEN
Date: Fri, 19 Dec 2014 13:12:22 +0200
(I'm not subscribed to the list, so please CC me on any replies and discussions. Thanks in advance.) I've built wget 1.16.1 with mingw.org's toolchain, and encountered a few issues, described below.
/archive/html/bug-wget/2014-12/msg00108.html (12,067 bytes)

145. Re: [Bug-wget] [PATCH 2/8] Add extern declaration for version.c strings (score: 9)
Author: HIDDEN
Date: Tue, 25 Nov 2014 23:15:59 +0100
Hi, Attached is a patch for a missing 'version.h' in wget_SOURCES in the src/Makefile.am, which I suppose should have been included in the above patch by Darshit. Without it, 'make distcheck' fails.
/archive/html/bug-wget/2014-11/msg00298.html (13,714 bytes)

146. [Bug-wget] [PATCH 2/8] Add extern declaration for version.c strings (score: 9)
Author: HIDDEN
Date: Sat, 22 Nov 2014 14:52:16 +0530
-- src/ChangeLog | 8 ++++++++ src/Makefile.am | 1 + src/http.c | 2 +- src/main.c | 4 +-- src/version.h | 33 +++++++++++++++++++++++++++++++++ src/warc.c | 2 +- 6 files changed, 45 insertions(+), 5 de
/archive/html/bug-wget/2014-11/msg00267.html (10,976 bytes)

147. Re: [Bug-wget] Wget manpage missing options (score: 9)
Author: HIDDEN
Date: Fri, 12 Jul 2013 19:39:29 -0500 (CDT)
Seems to, if ".1" is supposed to be the most recent and ".n" the oldest. (VMS versions normally go the other way.) Around here, with a quick CGI counter, after five runs of: wgx -d --backups=3 http:/
/archive/html/bug-wget/2013-07/msg00073.html (9,153 bytes)

148. Re: [Bug-wget] Wget MinGW/MSYS build issues (score: 9)
Author: HIDDEN
Date: Tue, 12 Mar 2013 01:49:52 +0200
Greetings. Thanks for quick reply. During searching info about FILE_FLAG_DELETE_ON_CLOSE find that flag "O_TEMPORARY" work in Windows. What if replace mkstemp() with mkostemp()? ( mkstemp(filename)==
/archive/html/bug-wget/2013-03/msg00040.html (7,811 bytes)

149. [Bug-wget] [PATCH v2] fix build warnings with newer zlib (score: 9)
Author: HIDDEN
Date: Thu, 24 May 2012 20:13:32 -0400
The gz* API from zlib takes a "gzFile", not a "gzFile*". Older versions of zlib didn't trigger a warning because it was typedefed to a void*, but newer ones typedef it to a struct*, so trying to use
/archive/html/bug-wget/2012-05/msg00101.html (6,231 bytes)

150. [Bug-wget] [PATCH] fix build warnings with newer zlib (score: 9)
Author: HIDDEN
Date: Mon, 21 May 2012 19:06:01 -0400
The gz* API from zlib takes a "gzFile", not a "gzFile*". Older versions of zlib didn't trigger a warning due to how the funcs were written, but newer ones do. So tweak the type (which in reality shou
/archive/html/bug-wget/2012-05/msg00084.html (5,870 bytes)

151. [Bug-wget] Cannot compile current bzr trunk: undefined reference to `gzwrite' / `gzclose' / `gzdopen' (score: 8)
Author: HIDDEN
Date: Tue, 03 Jan 2012 02:55:08 +0800
Hi wget folks, The make fails (see logs below). What can I do to compile wget? Is this case known? -- Evgenii $bzr info -vv latest revision: Mon 2011-12-12 21:30:39 +0100 $./configure --without-ssl $
/archive/html/bug-wget/2012-01/msg00000.html (7,096 bytes)

152. [Bug-wget] [PATCH 5/5] Indent description continuation lines by two spaces. (score: 7)
Author: HIDDEN
Date: Tue, 9 Dec 2014 22:17:44 +0100
-- src/main.c | 27 +++++++++++++-- 1 files changed, 13 insertions(+), 14 deletions(-) diff --git a/src/main.c b/src/main.c index 6599839..ec6d8fe 100644 -- a/src/main.c +++ b/src/main.c @@ -484,7 +48
/archive/html/bug-wget/2014-12/msg00045.html (11,330 bytes)

153. [Bug-wget] [PATCH 6/8] Add extern declaration for program_arsgstring (score: 7)
Author: HIDDEN
Date: Sat, 22 Nov 2014 14:52:20 +0530
In test.c, this patch changes the type of program_argstring to char * from a const char *. This is because, we use a char * string in the rest of the program and declare an extern accordingly. Removi
/archive/html/bug-wget/2014-11/msg00274.html (8,819 bytes)

154. [Bug-wget] [PATCH] fix type for warc_current_gzfile (score: 7)
Author: HIDDEN
Date: Fri, 13 Apr 2012 11:28:39 +0200
warc_current_gzfile must be of type gzFile, not gzFile *. It also fixed these compiler warnings: warc.c: In function 'warc_write_buffer': warc.c:144:7: warning: passing argument 1 of 'gzwrite' from i
/archive/html/bug-wget/2012-04/msg00063.html (4,957 bytes)

155. Re: [Bug-wget] Cannot compile current bzr trunk: undefined reference to `gzwrite' / `gzclose' / `gzdopen' (score: 7)
Author: HIDDEN
Date: Mon, 09 Jan 2012 15:08:08 +0100
Hi all, The attached patch should hopefully fix Evgenii's problem. The patch changes the configure script to always use libz, unless it is explicitly disabled. In that case, the patch makes sure that
/archive/html/bug-wget/2012-01/msg00031.html (7,160 bytes)

156. [Bug-wget] gethttp cleanup (score: 6)
Author: HIDDEN
Date: Mon, 16 Mar 2015 02:18:09 +0100
Hi, spring is coming and it is time for some cleanup. I have refactored a bit gethttp and moved some code to other functions. It is mostly mechanical code movements, and I hope to do some more work o
/archive/html/bug-wget/2015-03/msg00116.html (61,311 bytes)

157. [Bug-wget] [PATCH 03/14] Do not include strings.h (score: 6)
Author: HIDDEN
Date: Wed, 11 Jun 2014 17:05:14 +0200
-- 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. */
/archive/html/bug-wget/2014-06/msg00055.html (7,387 bytes)

158. [Bug-wget] Segmentation fault in warc_write_digest_headers with ftp URL (score: 6)
Author: HIDDEN
Date: Tue, 18 Jun 2013 13:25:39 +0000
$ uname -a Linux sand4 3.8.0-23-generic #34-Ubuntu SMP Wed May 29 20:22:58 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux $ ./wget/src/wget --version GNU Wget 1.14.54-9d35f87 built on linux-gnu. +digest +ht
/archive/html/bug-wget/2013-06/msg00047.html (10,464 bytes)

159. Re: [Bug-wget] Wget MinGW/MSYS build issues (score: 6)
Author: HIDDEN
Date: Thu, 14 Mar 2013 15:22:57 +0200
Greetings Thanks for correting and testing. Sorry, my bad (I think, that binary flags is mostly compatible between systems). In Windows O_TEMPORARY defined in fctl.h. So it's need to also include add
/archive/html/bug-wget/2013-03/msg00046.html (7,669 bytes)

160. Re: [Bug-wget] Wget MinGW/MSYS build issues (score: 6)
Author: HIDDEN
Date: Thu, 14 Mar 2013 01:55:12 +0100
Oh, cool. That should work. I saw that mkostemp() was a gnu extension (thus non-portable), and didn't think in checking if it was available through gnulib. I would however do a (...) int fd = mkostem
/archive/html/bug-wget/2013-03/msg00045.html (7,067 bytes)


This search system is powered by Namazu