* 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:
parent
9b3aade1b6
commit
009db87ce2
@ -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>
|
Mon Jul 28 16:01:12 2008 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||||
|
|
||||||
* thread_win32.[ch]: moved definitions of cond_every_entry and
|
* thread_win32.[ch]: moved definitions of cond_every_entry and
|
||||||
|
@ -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);
|
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 *
|
static struct ChildRecord *
|
||||||
CreateChild(const char *cmd, const char *prog, SECURITY_ATTRIBUTES *psa,
|
CreateChild(const char *cmd, const char *prog, SECURITY_ATTRIBUTES *psa,
|
||||||
HANDLE hInput, HANDLE hOutput, HANDLE hError)
|
HANDLE hInput, HANDLE hOutput, HANDLE hError)
|
||||||
@ -1107,12 +1113,6 @@ insert(const char *path, VALUE vinfo, void *enc)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef HAVE_SYS_PARAM_H
|
|
||||||
# include <sys/param.h>
|
|
||||||
#else
|
|
||||||
# define MAXPATHLEN 512
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
static NtCmdLineElement **
|
static NtCmdLineElement **
|
||||||
cmdglob(NtCmdLineElement *patt, NtCmdLineElement **tail)
|
cmdglob(NtCmdLineElement *patt, NtCmdLineElement **tail)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user