1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

simplified and better commented config.h include logic

This commit is contained in:
Daniel Stenberg 2004-02-18 08:35:51 +00:00
parent e2b6a45cfa
commit abd7e32c66

View File

@ -38,14 +38,13 @@
#endif
#ifdef HAVE_CONFIG_H
#ifdef VMS
#include "config-vms.h"
#else
#include "config.h" /* the configure script results */
#endif
#else
#ifdef VMS
/* hand-modified VMS config.h! */
#include "config-vms.h"
#endif
#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