New win binary was (RE: Compilation breakage in html-parse.c)

2003-10-06 Thread Herold Heiko
From: Hrvoje Niksic [mailto:[EMAIL PROTECTED] This might be one cause for compilation breakage in html-parse.c. It's a Gcc-ism/c99-ism/c++-ism, depending on how you look at it, fixed by this patch: 2003-10-03 Hrvoje Niksic [EMAIL PROTECTED] * html-parse.c (convert_and_copy

html-parse.c

2001-10-10 Thread David Edmondson
Hello, I had to do the following to get wget to compile on ppc-apple-darwin diff src/html-parse.c ../wget-1.7.fixed/src/html-parse.c 435c435 assert (ch == '\'' || ch == ''); --- assert (ch == '\'' || ch == '\'); Regards, Dave

Re: wget/html-parse.c

2001-09-06 Thread Edward J. Sabol
Denis Ahrens wrote: In line 435 in html-parse.c is a non-escaped doubleqoute (). That's perfectly valid code. I cannot compile this file under MacOSX without escaping this char. That's a bug in cpp-precomp, Apple's C pre-processor that implements support for pre-compiled headers. The way