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

use the config files in this directory now, not ../

This commit is contained in:
Daniel Stenberg 2002-02-07 14:33:36 +00:00
parent 9c25b58b4c
commit cdee43aa59

View File

@ -34,19 +34,19 @@
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#ifdef VMS #ifdef VMS
#include "../config-vms.h" #include "config-vms.h"
#else #else
#include "../config.h" /* the configure script results */ #include "config.h" /* the configure script results */
#endif #endif
#else #else
#ifdef WIN32 #ifdef WIN32
/* hand-modified win32 config.h! */ /* hand-modified win32 config.h! */
#include "../config-win32.h" #include "config-win32.h"
#endif #endif
#ifdef macintosh #ifdef macintosh
/* hand-modified MacOS config.h! */ /* hand-modified MacOS config.h! */
#include "../config-mac.h" #include "config-mac.h"
#endif #endif
#endif #endif
@ -92,13 +92,13 @@ defined(HAVE_LIBSSL) && defined(HAVE_LIBCRYPTO)
#ifndef STDC_HEADERS /* no standard C headers! */ #ifndef STDC_HEADERS /* no standard C headers! */
#ifdef VMS #ifdef VMS
#include "../include/curl/stdcheaders.h" #include "<curl/stdcheaders.h>
#else #else
#include "curl/stdcheaders.h" #include <curl/stdcheaders.h>
#endif #endif
#else #else
#ifdef _AIX #ifdef _AIX
#include "curl/stdcheaders.h" #include <curl/stdcheaders.h>
#endif #endif
#endif #endif