From: hniksic Date: Mon, 11 Apr 2005 19:20:45 +0000 (-0700) Subject: [svn] Conditonialize including config.h on HAVE_CONFIG_H, not on STANDALONE. X-Git-Tag: v1.13~1205 X-Git-Url: http://sjero.net/git/?p=wget;a=commitdiff_plain;h=c65bc738a05261de8df3eff4ee93874fc9f6342c [svn] Conditonialize including config.h on HAVE_CONFIG_H, not on STANDALONE. --- diff --git a/src/ChangeLog b/src/ChangeLog index e11914e9..2d6368e4 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2005-04-11 Hrvoje Niksic + + * hash.c: Conditionalize including config.h on HAVE_CONFIG_H + instead of on STANDALONE. + 2005-04-11 Hrvoje Niksic * gen_sslfunc.c (ssl_print_errors): Made static. diff --git a/src/hash.c b/src/hash.c index 9a37f67c..bdfc5337 100644 --- a/src/hash.c +++ b/src/hash.c @@ -30,7 +30,7 @@ so, delete this exception statement from your version. */ /* With -DSTANDALONE, this file can be compiled outside Wget source tree. To test, also use -DTEST. */ -#ifndef STANDALONE +#ifdef HAVE_CONFIG_H # include # ifdef HAVE_STRING_H # include