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/pop3/POP3Message.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 '')
-rw-r--r-- | src/net/pop3/POP3Message.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/net/pop3/POP3Message.cpp b/src/net/pop3/POP3Message.cpp index 69ef004c..1c3b3408 100644 --- a/src/net/pop3/POP3Message.cpp +++ b/src/net/pop3/POP3Message.cpp @@ -21,6 +21,12 @@ // the GNU General Public License cover the whole combination. // +#include "vmime/config.hpp" + + +#if VMIME_HAVE_MESSAGING_FEATURES && VMIME_HAVE_MESSAGING_PROTO_POP3 + + #include "vmime/net/pop3/POP3Message.hpp" #include "vmime/net/pop3/POP3Folder.hpp" #include "vmime/net/pop3/POP3Store.hpp" @@ -237,3 +243,7 @@ ref <vmime::message> POP3Message::getParsedMessage() } // pop3 } // net } // vmime + + +#endif // VMIME_HAVE_MESSAGING_FEATURES && VMIME_HAVE_MESSAGING_PROTO_POP3 + |