1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 15:48: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 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