summaryrefslogtreecommitdiff
path: root/lib/intercept/intercept.cpp
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2007-12-18 00:17:54 +0000
committerChris Wilson <chris+github@qwirx.com>2007-12-18 00:17:54 +0000
commit3bb029868ac789bdc6cff8c39c18df30c177e194 (patch)
treeaec3c9c44a997c96013f4a0225992913a8fc0b2a /lib/intercept/intercept.cpp
parent60f0c81240c91cab9698e91973b6bbc1150d74c7 (diff)
Search for readdir64 and stat64 if LARGE_FILE_SUPPORT is enabled, rather
than relying on Linux redirection macros that aren't present on Slackware (which uses asm redirects instead).
Diffstat (limited to 'lib/intercept/intercept.cpp')
-rw-r--r--lib/intercept/intercept.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/intercept/intercept.cpp b/lib/intercept/intercept.cpp
index 44e9424d..a0c13521 100644
--- a/lib/intercept/intercept.cpp
+++ b/lib/intercept/intercept.cpp
@@ -457,7 +457,7 @@ struct dirent *readdir(DIR *dir)
if (readdir_real == NULL)
{
- #if defined readdir && readdir == readdir64
+ #ifdef HAVE_LARGE_FILE_SUPPORT
readdir_real = (readdir_t*)find_function("readdir64");
#else
readdir_real = (readdir_t*)find_function("readdir");
@@ -506,13 +506,13 @@ lstat(const char *file_name, STAT_STRUCT *buf)
if (lstat_real == NULL)
{
#ifdef LINUX_WEIRD_LSTAT
- #if defined __lxstat && __lxstat == __lxstat64
+ #ifdef HAVE_LARGE_FILE_SUPPORT
lstat_real = (lstat_t*)find_function("__lxstat64");
#else
lstat_real = (lstat_t*)find_function("__lxstat");
#endif
#else
- #if defined lstat && lstat == lstat64
+ #ifdef HAVE_LARGE_FILE_SUPPORT
lstat_real = (lstat_t*)find_function("lstat64");
#else
lstat_real = (lstat_t*)find_function("lstat");