diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-10-20 16:41:56 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-10-20 16:41:56 +0000 |
commit | 8dc11276175b8ec12ff23b250ef0fba6657ddea7 (patch) | |
tree | 7c34bbfea7cad2a3bec0eb9f72c92f8b7ab4cd3d | |
parent | [w3m-dev 04002] Re: function and w3m-control (diff) | |
download | w3m-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>
-rw-r--r-- | ChangeLog | 12 | ||||
-rw-r--r-- | html.h | 8 | ||||
-rw-r--r-- | istream.c | 4 | ||||
-rw-r--r-- | istream.h | 8 | ||||
-rw-r--r-- | url.c | 8 |
5 files changed, 25 insertions, 15 deletions
@@ -1,3 +1,13 @@ +2003-10-21 Fumitoshi UKAI <ukai@debian.or.jp> + + * #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 + 2003-10-20 ABE Yuji <cbo46560@pop12.odn.ne.jp> * [w3m-dev 04002] Re: function and w3m-control @@ -8215,4 +8225,4 @@ a * [w3m-dev 03276] compile error on EWS4800 * release-0-2-1 * import w3m-0.2.1 -$Id: ChangeLog,v 1.885 2003/10/19 16:17:12 ukai Exp $ +$Id: ChangeLog,v 1.886 2003/10/20 16:41:56 ukai Exp $ @@ -1,10 +1,10 @@ -/* $Id: html.h,v 1.24 2003/09/22 21:02:19 ukai Exp $ */ +/* $Id: html.h,v 1.25 2003/10/20 16:41:56 ukai Exp $ */ #ifndef _HTML_H #define _HTML_H #ifdef USE_SSL -#include <bio.h> -#include <x509.h> -#include <ssl.h> +#include <openssl/bio.h> +#include <openssl/x509.h> +#include <openssl/ssl.h> #endif /* USE_SSL */ #include "istream.h" @@ -1,10 +1,10 @@ -/* $Id: istream.c,v 1.22 2003/09/26 17:59:51 ukai Exp $ */ +/* $Id: istream.c,v 1.23 2003/10/20 16:41:56 ukai Exp $ */ #include "fm.h" #include "myctype.h" #include "istream.h" #include <signal.h> #ifdef USE_SSL -#include <x509v3.h> +#include <openssl/x509v3.h> #endif #define uchar unsigned char @@ -1,12 +1,12 @@ -/* $Id: istream.h,v 1.11 2003/07/22 17:33:16 ukai Exp $ */ +/* $Id: istream.h,v 1.12 2003/10/20 16:41:56 ukai Exp $ */ #ifndef IO_STREAM_H #define IO_STREAM_H #include <stdio.h> #ifdef USE_SSL -#include <bio.h> -#include <x509.h> -#include <ssl.h> +#include <openssl/bio.h> +#include <openssl/x509.h> +#include <openssl/ssl.h> #endif #include "Str.h" #include <sys/types.h> @@ -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() { |