2000-Dec-3: wget has
been added to the usr-local package.
Download:
wget-1.5.3-cygwin1.1.README
unpack wget-1.5.3.tar.gz
cd wget-1.5.3
patch -p1 < ../wget-1.5.3-cygwin1.1.patch
# I couldn't get nls support to work (my version of gettext, and the
# cygwin <locale.h>, do not define "LC_MESSAGES" so NLS is broken.
CFLAGS=-I/usr/local/include \
LDFLAGS=-L/usr/local/lib \
./configure \
--prefix=/usr/local \
--disable-nls
# although configure reports that it successfully found strerror() and
# select(), the config.h that it created did not define HAVE_STREROR
# nor HAVE_SELECT.
# Edit src/config.h and change these lines:
-/* #undef HAVE_SELECT */
+#define HAVE_SELECT 1
-/* #undef HAVE_STRERROR */
+#define HAVE_STRERROR 1
make
make install
/usr/local/bin/wget.exe
/usr/local/info/wget.info
/usr/local/info/wget.info-1
/usr/local/info/wget.info-2
/usr/local/info/wget.info-3
/usr/local/etc/wgetrc
Obsolete V1.1 Home
Obsolete CygUtils Home
Last modified: Wed Jan 24 01:47:50 -0500 2001