Thanks for your patch. Recently I have done many changes to the build system, would you please test this alpha version on your system?
ftp://alpha.gnu.org/gnu/wget/wget-1.12-2359.tar.bz2 Cheers, Giuseppe Rainer Orth <r...@cebitec.uni-bielefeld.de> writes: > I've just tried to build wget 1.12 on Solaris 8/x86 with gcc 4.4.2 and > ran into two problems: > > * Solaris 8 has <inttypes.h>, but no <stdint.h>, so compiling everything > that includes sysdep.h fails. The obvious fix is to protect the > inclusion with HAVE_STDINT_H, which is already checked for. > > * There's no <getopt.h>, either, so the generated one in > $(top_builddir)/lib needs to be used instead. Unfortunately, that > directory isn't searched in a VPATH build. > > The following patch fixes both issues and allowed wget to compile and > link successfully. > > Rainer