diff options
author | Vincent Richard <[email protected]> | 2012-11-01 17:20:06 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2012-11-01 17:20:06 +0000 |
commit | cce1c28bcecec87f34983599441ce16f7c2cf829 (patch) | |
tree | 0d94e042fce797cfe0a0cfbb11484de3fc969add /src/net/sendmail/sendmailServiceInfos.cpp | |
parent | Fixed typo in doc. (diff) | |
download | vmime-cce1c28bcecec87f34983599441ce16f7c2cf829.tar.gz vmime-cce1c28bcecec87f34983599441ce16f7c2cf829.zip |
Migrated build system to CMake. Conditional file compilation. Automatic selection of platform handler.
Diffstat (limited to 'src/net/sendmail/sendmailServiceInfos.cpp')
-rw-r--r-- | src/net/sendmail/sendmailServiceInfos.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/net/sendmail/sendmailServiceInfos.cpp b/src/net/sendmail/sendmailServiceInfos.cpp index fb5fb543..102dfe98 100644 --- a/src/net/sendmail/sendmailServiceInfos.cpp +++ b/src/net/sendmail/sendmailServiceInfos.cpp @@ -21,10 +21,13 @@ // the GNU General Public License cover the whole combination. // -#include "vmime/net/sendmail/sendmailServiceInfos.hpp" +#include "vmime/config.hpp" + +#if VMIME_HAVE_MESSAGING_FEATURES && VMIME_HAVE_MESSAGING_PROTO_SENDMAIL -#if VMIME_BUILTIN_PLATFORM_POSIX + +#include "vmime/net/sendmail/sendmailServiceInfos.hpp" namespace vmime { @@ -71,5 +74,5 @@ const std::vector <serviceInfos::property> sendmailServiceInfos::getAvailablePro } // vmime -#endif // VMIME_BUILTIN_PLATFORM_POSIX +#endif // VMIME_HAVE_MESSAGING_FEATURES && VMIME_HAVE_MESSAGING_PROTO_SENDMAIL |