From 8445279306dc6d3974ccc651436115ae06ad59a5 Mon Sep 17 00:00:00 2001 From: Darshit Shah Date: Mon, 16 Jun 2014 20:50:30 +0530 Subject: [PATCH] Fix failing make check --- src/ChangeLog | 4 ++++ src/test.c | 3 +++ 2 files changed, 7 insertions(+) diff --git a/src/ChangeLog b/src/ChangeLog index 051927e4..c5394c77 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2014-06-16 Darshit Shah + + * test.c: Include locale.h header for gettext. + 2014-06-16 Giuseppe Scrivano * http.c (gethttp): Set "Connection: Keep-Alive" with keep-alive diff --git a/src/test.c b/src/test.c index 6bececc7..008126b8 100644 --- a/src/test.c +++ b/src/test.c @@ -31,6 +31,9 @@ as that of the covered work. */ #include "wget.h" #include +#ifdef ENABLE_NLS +# include +#endif #include "test.h"