diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2005-12-01 05:17:09 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2005-12-01 05:17:09 +0000 |
commit | 66c701ac9305c87aeef631dc58a9b1c92ba76b43 (patch) | |
tree | dd41bd779ec1529357d10744eebbc8c523872b4c | |
parent | 662ca949a86cd56972c3b012e56826c234d8e721 (diff) |
fixed compilation failure on some environments.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@793 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ChangeLog.ja | 5 | ||||
-rw-r--r-- | libsylph/session.h | 2 | ||||
-rw-r--r-- | libsylph/smtp.h | 1 |
4 files changed, 12 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2005-12-01 + + * libsylph/session.h + libsylph/smtp.h: fixed compilation failure on some environments. + 2005-11-30 * src/summaryview.[ch]: display progress on filtering. diff --git a/ChangeLog.ja b/ChangeLog.ja index 0f8b4b5c..3f52d41d 100644 --- a/ChangeLog.ja +++ b/ChangeLog.ja @@ -1,3 +1,8 @@ +2005-12-01 + + * libsylph/session.h + libsylph/smtp.h: 一部環境でコンパイルが失敗するのを修正。 + 2005-11-30 * src/summaryview.[ch]: 振り分け時に進捗を表示。 diff --git a/libsylph/session.h b/libsylph/session.h index d9cc3fdb..de39f2dd 100644 --- a/libsylph/session.h +++ b/libsylph/session.h @@ -25,7 +25,7 @@ #endif #include <glib.h> - +#include <stdio.h> #include <time.h> #include <unistd.h> diff --git a/libsylph/smtp.h b/libsylph/smtp.h index 4bb10b6e..1375828c 100644 --- a/libsylph/smtp.h +++ b/libsylph/smtp.h @@ -25,6 +25,7 @@ #endif #include <glib.h> +#include <stdio.h> #include "session.h" |