diff options
| author | Yixun Lan <dlan@gentoo.org> | 2016-12-05 02:19:11 +0000 | 
|---|---|---|
| committer | Tatsuya Kinoshita <tats@debian.org> | 2016-12-05 13:41:17 +0000 | 
| commit | edf86c578158bf632533dcdb061a2a59df3356bc (patch) | |
| tree | 4ba61157b2d4f3e5720e7300d5deac5787253a80 | |
| parent | Prevent array index out of bounds for tridvalue in feed_table_tag() (diff) | |
| download | w3m-edf86c578158bf632533dcdb061a2a59df3356bc.tar.gz w3m-edf86c578158bf632533dcdb061a2a59df3356bc.zip | |
Explictily include <time.h> to avoid build err
while disable ssl, we will got a undefine time_t err
see https://bugs.gentoo.org/show_bug.cgi?id=601498
Signed-off-by: Yixun Lan <dlan@gentoo.org>
| -rw-r--r-- | html.h | 2 | 
1 files changed, 2 insertions, 0 deletions
| @@ -8,6 +8,8 @@  #include <openssl/ssl.h>  #endif				/* USE_SSL */ +#include <time.h> +  #define StrUFgets(f) StrISgets((f)->stream)  #define StrmyUFgets(f) StrmyISgets((f)->stream)  #define UFgetc(f) ISgetc((f)->stream) | 
