The R Project SVN R

Rev

Rev 4765 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4765 Rev 4770
Line 134... Line 134...
134
#define R_GETCWD(x, y) GetCurrentDirectory(y, x)
134
#define R_GETCWD(x, y) GetCurrentDirectory(y, x)
135
#else
135
#else
136
#undef R_GETCWD
136
#undef R_GETCWD
137
#endif
137
#endif
138
 
138
 
-
 
139
/* Maximal length of an entire file name */
-
 
140
#undef HAVE_LIMITS_H
-
 
141
#undef HAVE_SYS_PARAM_H
-
 
142
 
-
 
143
#if defined(HAVE_LIMITS_H)
-
 
144
#  include <limits.h>
-
 
145
#endif
-
 
146
#if !defined(PATH_MAX)
-
 
147
#  if defined(HAVE_SYS_PARAM_H)
-
 
148
#    include <sys/param.h>
-
 
149
#  endif
-
 
150
#  if defined(MAXPATHLEN) && !defined(PATH_MAX)
-
 
151
#    define PATH_MAX MAXPATHLEN
-
 
152
#  elif defined(Win32)
-
 
153
#    define PATH_MAX 260
-
 
154
#  else
-
 
155
#    define PATH_MAX 255
-
 
156
#  endif
-
 
157
#endif
-
 
158
 
139
/* for platform.c to put in .Platform */
159
/* for platform.c to put in .Platform */
140
#ifdef Unix
160
#ifdef Unix
141
#define OSTYPE      "Unix"
161
#define OSTYPE      "Unix"
142
#define FILESEP     "/"
162
#define FILESEP     "/"
143
#define SHLIBEXT    ""
163
#define SHLIBEXT    ""