diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-02-18 08:35:51 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-02-18 08:35:51 +0000 |
commit | abd7e32c66ecae4b0707d367b75b19c5a9b6d395 (patch) | |
tree | 4f6a4bf26a6b0f687cc31f220e1bb4b4fde27c39 /lib | |
parent | e2b6a45cfa5a3c8dd9d7747809b562e5b66e7f14 (diff) |
simplified and better commented config.h include logic
Diffstat (limited to 'lib')
-rw-r--r-- | lib/setup.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/setup.h b/lib/setup.h index 66e7a8670..54915ad4e 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 |