aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/pop3/POP3Utils.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2012-11-01 18:20:06 +0100
committerVincent Richard <[email protected]>2012-11-01 18:20:06 +0100
commitcce1c28bcecec87f34983599441ce16f7c2cf829 (patch)
tree0d94e042fce797cfe0a0cfbb11484de3fc969add /src/net/pop3/POP3Utils.cpp
parentFixed typo in doc. (diff)
downloadvmime-cce1c28bcecec87f34983599441ce16f7c2cf829.tar.gz
vmime-cce1c28bcecec87f34983599441ce16f7c2cf829.zip
Migrated build system to CMake. Conditional file compilation. Automatic selection of platform handler.
Diffstat (limited to 'src/net/pop3/POP3Utils.cpp')
-rw-r--r--src/net/pop3/POP3Utils.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/net/pop3/POP3Utils.cpp b/src/net/pop3/POP3Utils.cpp
index de70dfed..f75d338e 100644
--- a/src/net/pop3/POP3Utils.cpp
+++ b/src/net/pop3/POP3Utils.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/POP3Utils.hpp"
#include <sstream>
@@ -72,3 +78,6 @@ void POP3Utils::parseMultiListOrUidlResponse(const string& response, std::map <i
} // net
} // vmime
+
+#endif // VMIME_HAVE_MESSAGING_FEATURES && VMIME_HAVE_MESSAGING_PROTO_POP3
+