From: Xavier Saint Date: Mon, 4 Aug 2008 09:08:33 +0000 (+0200) Subject: iri.h is already included in wget.h, so don't include it in C files X-Git-Tag: v1.13~338^2~7^2~6^2~2 X-Git-Url: http://sjero.net/git/?p=wget;a=commitdiff_plain;h=84395897ad2d1c107be470946daba744b2e7ebe8 iri.h is already included in wget.h, so don't include it in C files --- diff --git a/src/connect.c b/src/connect.c index 6cfdb4b7..41258d26 100644 --- a/src/connect.c +++ b/src/connect.c @@ -58,7 +58,6 @@ as that of the covered work. */ #include "host.h" #include "connect.h" #include "hash.h" -#include "iri.h" /* Define sockaddr_storage where unavailable (presumably on IPv4-only hosts). */ diff --git a/src/host.c b/src/host.c index 1226a274..bbf40222 100644 --- a/src/host.c +++ b/src/host.c @@ -53,7 +53,6 @@ as that of the covered work. */ #include "host.h" #include "url.h" #include "hash.h" -#include "iri.h" #ifndef NO_ADDRESS # define NO_ADDRESS NO_DATA diff --git a/src/iri.c b/src/iri.c index dce9e2ed..ea4046af 100644 --- a/src/iri.c +++ b/src/iri.c @@ -39,7 +39,6 @@ as that of the covered work. */ #include #include "utils.h" -#include "iri.h" /* RFC3987 section 3.1 mandates STD3 ASCII RULES */ #define IDNA_FLAGS IDNA_USE_STD3_ASCII_RULES diff --git a/src/recur.c b/src/recur.c index baeaed58..71fbe7bf 100644 --- a/src/recur.c +++ b/src/recur.c @@ -51,7 +51,6 @@ as that of the covered work. */ #include "html-url.h" #include "css-url.h" #include "spider.h" -#include "iri.h" /* Functions for maintaining the URL queue. */ diff --git a/src/retr.c b/src/retr.c index fa7f762d..fe176eaf 100644 --- a/src/retr.c +++ b/src/retr.c @@ -51,7 +51,6 @@ as that of the covered work. */ #include "hash.h" #include "convert.h" #include "ptimer.h" -#include "iri.h" #include "html-url.h" /* Total size of downloaded files. Used to enforce quota. */ diff --git a/src/url.c b/src/url.c index c7a3a721..e79cf8a2 100644 --- a/src/url.c +++ b/src/url.c @@ -42,7 +42,6 @@ as that of the covered work. */ #include "utils.h" #include "url.h" #include "host.h" /* for is_valid_ipv6_address */ -#include "iri.h" #ifdef TESTING #include "test.h"