2009-07-09 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>

Fixed compile error with openSSL
	* src/bittorrent_helper.cc
	* src/messageDigest.h
pull/1/head
Tatsuhiro Tsujikawa 2009-07-08 15:12:40 +00:00
parent 2fe11c1343
commit 96113c0745
3 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2009-07-09 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Fixed compile error with openSSL
* src/bittorrent_helper.cc
* src/messageDigest.h
2009-07-07 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Removed bad code: setting certificate type priority to key

View File

@ -34,6 +34,7 @@
/* copyright --> */
#include "bittorrent_helper.h"
#include <cstring>
#include <algorithm>
#include <deque>

View File

@ -36,10 +36,13 @@
#define _D_MESSAGE_DIGEST_H_
#include "common.h"
#include <cstring>
#include <map>
#include "SharedHandle.h"
#include "DlAbortEx.h"
#include "StringFormat.h"
#include <map>
#ifdef HAVE_LIBSSL
#include <openssl/evp.h>