#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>
This commit is contained in:
Fumitoshi UKAI
2003-10-20 16:41:56 +00:00
parent a58a9a6782
commit 8dc1127617
5 changed files with 25 additions and 15 deletions

8
html.h
View File

@@ -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"