diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-02-07 14:33:36 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-02-07 14:33:36 +0000 |
commit | cdee43aa59bf306f3c09737ee38e52b4c6c7c313 (patch) | |
tree | 3baa611149d2c55fdbfbcf72f95b1460f7ec13e8 /lib/setup.h | |
parent | 9c25b58b4c8b7b0af1035a50c4d7b19f63766bf9 (diff) | |
download | curl-cdee43aa59bf306f3c09737ee38e52b4c6c7c313.tar.gz |
use the config files in this directory now, not ../
Diffstat (limited to 'lib/setup.h')
-rw-r--r-- | lib/setup.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/setup.h b/lib/setup.h index dc2280da5..aa560366b 100644 --- a/lib/setup.h +++ b/lib/setup.h @@ -34,19 +34,19 @@ #ifdef HAVE_CONFIG_H #ifdef VMS -#include "../config-vms.h" +#include "config-vms.h" #else -#include "../config.h" /* the configure script results */ +#include "config.h" /* the configure script results */ #endif #else #ifdef WIN32 /* hand-modified win32 config.h! */ -#include "../config-win32.h" +#include "config-win32.h" #endif #ifdef macintosh /* hand-modified MacOS config.h! */ -#include "../config-mac.h" +#include "config-mac.h" #endif #endif @@ -92,13 +92,13 @@ defined(HAVE_LIBSSL) && defined(HAVE_LIBCRYPTO) #ifndef STDC_HEADERS /* no standard C headers! */ #ifdef VMS -#include "../include/curl/stdcheaders.h" +#include "<curl/stdcheaders.h> #else -#include "curl/stdcheaders.h" +#include <curl/stdcheaders.h> #endif #else #ifdef _AIX -#include "curl/stdcheaders.h" +#include <curl/stdcheaders.h> #endif #endif |