How to install GnuTLS in MinGW/MSYS

mingwmsyspackages

I've installed MinGW and MSYS on my Windows XP machine and now I want to compile an application which requires the GnuTLS libraries.

How do I install that package?

I tried mingw-get install mingw-gnutls without success.

Best Answer

There is no mingw-gnutls package.

mingw-get list | grep -i gnutls

So you would have to install it from source.

ftp.gnu.org/gnu/gnutls

Related Question