mirror of
https://github.com/curl/curl.git
synced 2026-04-18 08:01:40 +03:00
use the config files in this directory now, not ../
This commit is contained in:
parent
9c25b58b4c
commit
cdee43aa59
1 changed files with 7 additions and 7 deletions
14
lib/setup.h
14
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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue