1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* win32/win32.c (MAXPATHLEN): define before use.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18239 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2008-07-28 07:07:12 +00:00
parent 9b3aade1b6
commit 009db87ce2
2 changed files with 10 additions and 6 deletions

View file

@ -1,3 +1,7 @@
Mon Jul 28 16:06:36 2008 NAKAMURA Usaku <usa@ruby-lang.org>
* win32/win32.c (MAXPATHLEN): define before use.
Mon Jul 28 16:01:12 2008 NAKAMURA Usaku <usa@ruby-lang.org>
* thread_win32.[ch]: moved definitions of cond_every_entry and

View file

@ -916,6 +916,12 @@ rb_w32_aspawn(int mode, const char *prog, char *const *argv)
return rb_w32_spawn(mode, rb_w32_join_argv(cmd, argv), prog);
}
#ifdef HAVE_SYS_PARAM_H
# include <sys/param.h>
#else
# define MAXPATHLEN 512
#endif
static struct ChildRecord *
CreateChild(const char *cmd, const char *prog, SECURITY_ATTRIBUTES *psa,
HANDLE hInput, HANDLE hOutput, HANDLE hError)
@ -1107,12 +1113,6 @@ insert(const char *path, VALUE vinfo, void *enc)
return 0;
}
#ifdef HAVE_SYS_PARAM_H
# include <sys/param.h>
#else
# define MAXPATHLEN 512
#endif
static NtCmdLineElement **
cmdglob(NtCmdLineElement *patt, NtCmdLineElement **tail)