fixed UTIL_isLink() for Mac OS-X
This commit is contained in:
parent
79106d8de9
commit
deb03d8a26
@ -323,7 +323,8 @@ UTIL_STATIC U32 UTIL_isLink(const char* infilename)
|
|||||||
#if defined(_BSD_SOURCE) \
|
#if defined(_BSD_SOURCE) \
|
||||||
|| (defined(_XOPEN_SOURCE) && (_XOPEN_SOURCE >= 500)) \
|
|| (defined(_XOPEN_SOURCE) && (_XOPEN_SOURCE >= 500)) \
|
||||||
|| (defined(_XOPEN_SOURCE) && defined(_XOPEN_SOURCE_EXTENDED)) \
|
|| (defined(_XOPEN_SOURCE) && defined(_XOPEN_SOURCE_EXTENDED)) \
|
||||||
|| (defined(_POSIX_C_SOURCE) && (_POSIX_C_SOURCE >= 200112L))
|
|| (defined(_POSIX_C_SOURCE) && (_POSIX_C_SOURCE >= 200112L)) \
|
||||||
|
|| (defined(__APPLE__) && defined(__MACH__))
|
||||||
int r;
|
int r;
|
||||||
stat_t statbuf;
|
stat_t statbuf;
|
||||||
r = lstat(infilename, &statbuf);
|
r = lstat(infilename, &statbuf);
|
||||||
|
Loading…
Reference in New Issue
Block a user