Changeset 3108 for trunk/src/kmk
- Timestamp:
- Oct 20, 2017, 7:01:40 PM (8 years ago)
- Location:
- trunk/src/kmk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/kmkbuiltin.h
r3107 r3108 36 36 37 37 /* For the GNU/hurd weirdo. */ 38 #if !defined(PATH_MAX) && !defined(_MAX_PATH) 39 # define PATH_MAX 4096 38 #ifndef PATH_MAX 39 # ifdef MAXPATHLEN 40 # define PATH_MAX MAXPATHLEN 41 # else 42 # define PATH_MAX 4096 43 # endif 40 44 #endif 45 #ifndef MAXPATHLEN 46 # define MAXPATHLEN PATH_MAX 47 #endif 48 41 49 42 50 #include "kbuild_version.h" -
trunk/src/kmk/kmkbuiltin/cp_utils.c
r3107 r3108 69 69 # include <sys/time.h> 70 70 #endif 71 #include "kmkbuiltin.h" /* for PATH_MAX on GNU/hurd */72 71 #include "cp_extern.h" 73 72 #include "cmp_extern.h"
Note:
See TracChangeset
for help on using the changeset viewer.