I tried to compile the library with VC++ 2005.
I read the doc, so I added the libiconv and gettext library and tried to build the provided solution file.
I got 13 errors.
Many of them are :
- Cannot open include file: 'gnutls/gnutls.h': No such file or directory
- Cannot open include file: 'gsasl.h': No such file or directory
Can someone help ?
Thanks.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
This is because support for TLS and SASL is enabled (this is the default). You can either disable it or install the required libraries (GNU TLS and GNU SASL for Windows).
If you want to disable TLS and SASL support:
- set the #define's to 0 in vmime/config.hpp (VMIME_HAVE_SASL_SUPPORT and VMIME_HAVE_TLS_SUPPORT)
- remove all the files in /net/tls/* and /security/sasl/* from the project
Vincent
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello,
I tried to compile the library with VC++ 2005.
I read the doc, so I added the libiconv and gettext library and tried to build the provided solution file.
I got 13 errors.
Many of them are :
- Cannot open include file: 'gnutls/gnutls.h': No such file or directory
- Cannot open include file: 'gsasl.h': No such file or directory
Can someone help ?
Thanks.
Hello,
This is because support for TLS and SASL is enabled (this is the default). You can either disable it or install the required libraries (GNU TLS and GNU SASL for Windows).
If you want to disable TLS and SASL support:
- set the #define's to 0 in vmime/config.hpp (VMIME_HAVE_SASL_SUPPORT and VMIME_HAVE_TLS_SUPPORT)
- remove all the files in /net/tls/* and /security/sasl/* from the project
Vincent