Fix build issue with last gnulib version.

This commit is contained in:
Giuseppe Scrivano 2012-12-04 23:47:20 +01:00
parent 2dd255596a
commit e23e8101db
2 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,11 @@
2012-12-04 Giuseppe Scrivano <gscrivano@gnu.org>
* metalink.c: Include "wget.h" as first file.
2012-12-02 Domenico Chierico <spaghetty@gmail.com>
* Makefile.am (LDADD): Remove $(LIBS).
2012-12-02 Giuseppe Scrivano <gscrivano@gnu.org>
* recur.c (retrieve_tree): New variable `next_i'.

View File

@ -28,14 +28,14 @@ Corresponding Source for a non-source form of such a combination
shall include the source code for the parts of OpenSSL used as well
as that of the covered work. */
#include "wget.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <metalink/metalink_parser.h>
#include <metalink/metalink_types.h>
#include "wget.h"
#include "log.h"
#include "md5.h"
#include "sha1.h"
@ -43,6 +43,7 @@ as that of the covered work. */
#include "metalink.h"
#include "utils.h"
#define HASH_TYPES 3
/* Between MD5, SHA1 and SHA256, SHA256 has the greatest hash length, which is
32. In the line below, 64 is written to have a more readable code. */