From: Daniel Stenberg Date: Wed, 18 Feb 2004 08:35:51 +0000 (+0000) Subject: simplified and better commented config.h include logic X-Git-Tag: curl-7_11_1~312 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=abd7e32c66ecae4b0707d367b75b19c5a9b6d395;p=thirdparty%2Fcurl.git simplified and better commented config.h include logic --- diff --git a/lib/setup.h b/lib/setup.h index 66e7a8670a..54915ad4ee 100644 --- a/lib/setup.h +++ b/lib/setup.h @@ -38,14 +38,13 @@ #endif #ifdef HAVE_CONFIG_H +#include "config.h" /* the configure script results */ +#endif #ifdef VMS +/* hand-modified VMS config.h! */ #include "config-vms.h" -#else -#include "config.h" /* the configure script results */ #endif - -#else #ifdef WIN32 /* hand-modified win32 config.h! */ #include "config-win32.h" @@ -55,11 +54,10 @@ #include "config-mac.h" #endif #ifdef AMIGA +/* hand-modified AmigaOS config.h! */ #include "amigaos.h" #endif -#endif - #ifndef TRUE #define TRUE 1 #endif