Overview
Comment: | Include <syslimits.h> on DJGPP for PATH_MAX |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
e76f2e482aa747f1aa4432d96a89f7fd |
User & Date: | js on 2022-12-04 23:01:31 |
Other Links: | manifest | tags |
Context
2022-12-04
| ||
23:23 | OFINIFileTests: Handle nil temporaryDirectoryIRI check-in: 07a3215739 user: js tags: trunk | |
23:01 | Include <syslimits.h> on DJGPP for PATH_MAX check-in: e76f2e482a user: js tags: trunk | |
11:11 | Fix several Doxygen warnings check-in: b76008cee0 user: js tags: trunk | |
Changes
Modified src/OFFileIRIHandler.m from [b47c34a475] to [07c4c6e7ac].
︙ | ︙ | |||
29 30 31 32 33 34 35 36 37 38 39 40 41 42 | #ifdef HAVE_SYS_STAT_H # include <sys/stat.h> #endif #include <sys/time.h> #ifdef OF_WINDOWS # include <utime.h> #endif #ifdef HAVE_PWD_H # include <pwd.h> #endif #ifdef HAVE_GRP_H # include <grp.h> #endif | > > > | 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | #ifdef HAVE_SYS_STAT_H # include <sys/stat.h> #endif #include <sys/time.h> #ifdef OF_WINDOWS # include <utime.h> #endif #ifdef OF_DJGPP # include <syslimits.h> #endif #ifdef HAVE_PWD_H # include <pwd.h> #endif #ifdef HAVE_GRP_H # include <grp.h> #endif |
︙ | ︙ |
Modified src/OFFileManager.m from [8e0e4b6a5f] to [a02af7999a].
︙ | ︙ | |||
19 20 21 22 23 24 25 26 27 28 29 30 31 32 | #include <errno.h> #include <limits.h> #include "unistd_wrapper.h" #include "platform.h" #ifdef OF_PSP # include <sys/syslimits.h> #endif #import "OFArray.h" #import "OFDate.h" #import "OFDictionary.h" | > > > | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | #include <errno.h> #include <limits.h> #include "unistd_wrapper.h" #include "platform.h" #ifdef OF_DJGPP # include <syslimits.h> #endif #ifdef OF_PSP # include <sys/syslimits.h> #endif #import "OFArray.h" #import "OFDate.h" #import "OFDictionary.h" |
︙ | ︙ |