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

Fixes for MSDOS etc.

djgpp do have 'mkdir(dir, mode)'. Other DOS-compilers does not 
But djgpp seems the only choice for MSDOS anyway.

PellesC do have a 'F_OK' defined in it's <unistd.h>.

Update year in Copyright.
This commit is contained in:
Gisle Vanem 2018-01-24 15:02:53 +01:00 committed by GitHub
parent fdaa8257ad
commit 494f02e08a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___ * | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____| * \___|\___/|_| \_\_____|
* *
* Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al. * Copyright (C) 1998 - 2018, Daniel Stenberg, <daniel@haxx.se>, et al.
* *
* This software is licensed as described in the file COPYING, which * This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms * you should have received as part of this distribution. The terms
@ -41,9 +41,9 @@
# endif # endif
#endif #endif
#ifdef WIN32 #if defined(WIN32) || (defined(MSDOS) && !defined(__DJGPP__))
# define mkdir(x,y) (mkdir)((x)) # define mkdir(x,y) (mkdir)((x))
# ifndef __POCC__ # ifndef F_OK
# define F_OK 0 # define F_OK 0
# endif # endif
#endif #endif
@ -91,7 +91,7 @@ static void show_dir_errno(FILE *errors, const char *name)
* should create all the dir* automagically * should create all the dir* automagically
*/ */
#ifdef WIN32 #if defined(WIN32) || defined(__DJGPP__)
/* systems that may use either or when specifying a path */ /* systems that may use either or when specifying a path */
#define PATH_DELIMITERS "\\/" #define PATH_DELIMITERS "\\/"
#else #else