From e12a6ff6f5b4b9e58e425cee7d8a5ca764e84a3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Andriot?= Date: Sun, 12 Oct 2014 18:43:29 +0200 Subject: [PATCH] Fix FTBFS in tdeioslave_smtp because missing headers --- tdeioslave/smtp/smtp.cc | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tdeioslave/smtp/smtp.cc b/tdeioslave/smtp/smtp.cc index 43c15ecd2..00dff3684 100644 --- a/tdeioslave/smtp/smtp.cc +++ b/tdeioslave/smtp/smtp.cc @@ -30,6 +30,11 @@ #include +#ifdef HAVE_SYS_TYPES_H +# include +#endif +#include + #ifdef HAVE_LIBSASL2 extern "C" { #include @@ -71,12 +76,8 @@ using std::auto_ptr; #include #include #include -#include #include -#ifdef HAVE_SYS_TYPES_H -# include -#endif #ifdef HAVE_SYS_SOCKET_H # include #endif