From: Andre Noll Date: Wed, 24 Dec 2008 12:14:11 +0000 (+0100) Subject: Merge branch 'master' into bloom X-Git-Tag: v0.1.0~14^2~9 X-Git-Url: http://git.tuebingen.mpg.de/?p=adu.git;a=commitdiff_plain;h=7231c544e2ee3f53f5b2c8bc393b7fd1e0b8d0a7;hp=2842e5142322dcc2e42172c28fc041dcc5673dd5 Merge branch 'master' into bloom --- diff --git a/gcc-compat.h b/gcc-compat.h index 4ba96ae..1964e78 100644 --- a/gcc-compat.h +++ b/gcc-compat.h @@ -72,7 +72,13 @@ */ #define _static_inline_ static inline +/** + * On systems whihout large file support (BSD) there is no * struct stat64 and + * no lstat64(). + */ #ifndef HAVE_STAT64 -#define stat64 stat -#define lstat64 lstat + /** Use the usual stat structure. */ + #define stat64 stat + /** Use the usual lstat() function. */ + #define lstat64 lstat #endif