privoxy-3.0.19-ipv4only.zip Release of Privoxy 3.0.19 built without support for IPv6. Hopefully this version will work on Win98 Changes in this version from the standard 3.0.19: after line 962 of jbsockets.c, add ====== begin ====== /* work-around for "./configure --enable-mingw32 --disable-ipv6-support" * not pulling in whatever it is that defines NI_MAXSERV */ #ifndef NI_MAXSERV #define NI_MAXSERV 32 #endif /* NI_MAXSERV is undefined */ ====== end ====== and change line 213 of winsetup/GNUmakefile from cd $(SOURCE) && ./configure --enable-mingw32 --disable-pthread --disable-dynamic-pcre --enable-zlib to cd $(SOURCE) && ./configure --enable-mingw32 --disable-pthread --disable-dynamic-pcre --enable-zlib --disable-ipv6-support ---