aboutsummaryrefslogtreecommitdiffstats
path: root/url.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2003-10-20 16:41:56 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2003-10-20 16:41:56 +0000
commit8dc11276175b8ec12ff23b250ef0fba6657ddea7 (patch)
tree7c34bbfea7cad2a3bec0eb9f72c92f8b7ab4cd3d /url.c
parent[w3m-dev 04002] Re: function and w3m-control (diff)
downloadw3m-8dc11276175b8ec12ff23b250ef0fba6657ddea7.tar.gz
w3m-8dc11276175b8ec12ff23b250ef0fba6657ddea7.zip
#include <openssl/...>
suggested by ABE Yuji <cbo46560@pop12.odn.ne.jp> [w3m-dev 03998] problem about pkg-config check for OpenSSL * html.h: #include <openssl/...> * istream.c: ditto * istream.h: ditto * url.c: ditto From: Fumitoshi UKAI <ukai@debian.or.jp>
Diffstat (limited to 'url.c')
-rw-r--r--url.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/url.c b/url.c
index 99134b7..c213947 100644
--- a/url.c
+++ b/url.c
@@ -1,4 +1,4 @@
-/* $Id: url.c,v 1.84 2003/10/19 16:17:12 ukai Exp $ */
+/* $Id: url.c,v 1.85 2003/10/20 16:41:56 ukai Exp $ */
#include "fm.h"
#include <sys/types.h>
#include <sys/socket.h>
@@ -22,9 +22,9 @@
#ifdef USE_SSL
#ifndef SSLEAY_VERSION_NUMBER
-#include <crypto.h> /* SSLEAY_VERSION_NUMBER may be here */
+#include <openssl/crypto.h> /* SSLEAY_VERSION_NUMBER may be here */
#endif
-#include <err.h>
+#include <openssl/err.h>
#endif
#ifdef __WATT32__
@@ -248,7 +248,7 @@ free_ssl_ctx()
}
#if SSLEAY_VERSION_NUMBER >= 0x00905100
-#include <rand.h>
+#include <openssl/rand.h>
static void
init_PRNG()
{