[_WIN32] (posix_mkdir): New.

[_WIN32] (mkdir): Use it.  Last argument is no longer ignored, which
was a bug.  Move declaration to unistd.h, which isn't quite right, but
works for us.
This commit is contained in:
Ron Koenderink 2007-08-14 03:11:26 +00:00
parent 1d438880ff
commit e7b04123a9
3 changed files with 54 additions and 1 deletions

View file

@ -54,7 +54,6 @@ typedef int pid_t;
#endif /* !__GNUC__ */ #endif /* !__GNUC__ */
#define mkdir(dir,perm) _mkdir((dir))
#define random rand #define random rand
#define srandom srand #define srandom srand
#ifndef S_IRUSR #ifndef S_IRUSR

46
src/lib/w32/posixfile.c Normal file
View file

@ -0,0 +1,46 @@
/*
* Empire - A multi-player, client/server Internet based war game.
* Copyright (C) 1986-2007, Dave Pare, Jeff Bailey, Thomas Ruschak,
* Ken Stevens, Steve McClure
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* ---
*
* See files README, COPYING and CREDITS in the root of the source
* tree for related information and legal notices. It is expected
* that future projects/authors will amend these files as needed.
*
* ---
*
* posixfile.c: POSIX equivalents for file operations
*
* Known contributors to this file:
* Ron Koenderink, 2007
*/
#include <direct.h>
#include <io.h>
#include "unistd.h"
int
posix_mkdir(const char *dirname, int perm)
{
int result;
result = _mkdir(dirname);
if (result < 0)
return -1;
return _chmod(dirname, perm);
}

View file

@ -35,4 +35,12 @@
#define UNISTD_H #define UNISTD_H
#include "getopt.h" #include "getopt.h"
/*
* posixfile.c
*/
#define mkdir(dir, perm) posix_mkdir((dir), (perm))
extern int posix_mkdir(const char *dirname, int perm);
#endif /* UNISTD_H */ #endif /* UNISTD_H */