Changeset 3579
- Timestamp:
- 01/04/05 22:01:07 (4 years ago)
- Files:
-
- branches/2.1/src/ChangeLog.Meadow (modified) (1 diff)
- branches/2.1/src/dired.c (modified) (1 diff)
- branches/2.1/src/fileio.c (modified) (1 diff)
- branches/2.1/src/filemode.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.1/src/ChangeLog.Meadow
r3568 r3579 1 2005-01-04 Masayuki FUJII <boochang@m4.kcn.ne.jp> 2 3 * dired.c: undefine S_ISLNK and S_IFLNK for mingw-runtime 3.6 4 and later. 5 6 * fileio.c : Ditto. 7 8 * filemode.c: Ditto. 9 1 10 2004-12-02 Kyotaro HORIGUCHI <horiguti@meadowy.org> 2 11 branches/2.1/src/dired.c
r3104 r3579 70 70 71 71 #include <sys/stat.h> 72 73 /* S_ISLNK and S_IFLNK are defined in mingw-runtime, although symbolic 74 link is not supported on Windows. */ 75 #if defined(MEADOW) && defined(__MINGW32__) 76 #undef S_ISLNK 77 #undef S_IFLNK 78 #endif 72 79 73 80 #ifndef MSDOS branches/2.1/src/fileio.c
r3298 r3579 31 31 #include <sys/types.h> 32 32 #include <sys/stat.h> 33 34 /* S_ISLNK and S_IFLNK are defined in mingw-runtime, although symbolic 35 link is not supported on Windows. */ 36 #if defined(MEADOW) && defined(__MINGW32__) 37 #undef S_ISLNK 38 #undef S_IFLNK 39 #endif 33 40 34 41 #ifdef HAVE_UNISTD_H branches/2.1/src/filemode.c
r3104 r3579 23 23 #include <sys/types.h> 24 24 #include <sys/stat.h> 25 26 /* S_ISLNK and S_IFLNK are defined in mingw-runtime, although symbolic 27 link is not supported on Windows. */ 28 #if defined(MEADOW) && defined(__MINGW32__) 29 #undef S_ISLNK 30 #undef S_IFLNK 31 #endif 25 32 26 33 #if !S_IRUSR
