http://stackoverflow.com/questions/10527976/build-wget-with-gnutls
I am having trouble getting wget to build. Here are my current incantations, trimmed for brevity host=i686-w64-mingw32 prefix=/usr/i686-w64-mingw32/sys-root/mingw # Install gmp ./configure --host=$host --prefix=$prefix make install # Install nettle ./configure --host=$host --prefix=$prefix make install AR=$host-ar # Install GnuTLS ./configure --host=$host --prefix=$prefix --disable-shared make install # Install Wget ./configure --host=$host --prefix=$prefix --disable-ipv6 make install The error is on the final make install with wget /usr/i686-w64-mingw32/sys-root/mingw/lib/libgnutls.a(base64.o): In function `base64_encode': /home/Steven/gnutls-3.0.19/gl/base64.c:69: multiple definition of `_base64_encode' utils.o:utils.c:(.text+0x49b0): first defined here collect2: ld returned 1 exit status
