gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 02/150: Fixes for MSDOS etc.


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 02/150: Fixes for MSDOS etc.
Date: Fri, 30 Mar 2018 16:47:36 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit 494f02e08a0dbc14c66537038c34ef6cefec9b66
Author: Gisle Vanem <address@hidden>
AuthorDate: Wed Jan 24 15:02:53 2018 +0100

    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.
---
 src/tool_dirhie.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

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

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]