diff options
author | Volker Grabsch <vog@notjusthosting.com> | 2010-04-21 18:47:51 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2010-05-28 17:02:13 +0200 |
commit | 18dcd80e37d52d8406f02c8b2369b67692057cfd (patch) | |
tree | 2d051445a1772201f5421a4b7240878f061124a8 /libguile/_scm.h | |
parent | b016e12e95f33a2880aa243d9598db13e59298f3 (diff) | |
download | guile-18dcd80e37d52d8406f02c8b2369b67692057cfd.tar.gz |
don't fail when HAVE_STAT64 is undefined
* libguile/_scm.h: Check whether `HAVE_STAT64' is defined instead of
checking its value.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'libguile/_scm.h')
-rw-r--r-- | libguile/_scm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/_scm.h b/libguile/_scm.h index f18b3a875..9cd6fadf0 100644 --- a/libguile/_scm.h +++ b/libguile/_scm.h @@ -120,7 +120,7 @@ -#if GUILE_USE_64_CALLS && HAVE_STAT64 +#if GUILE_USE_64_CALLS && defined(HAVE_STAT64) #define CHOOSE_LARGEFILE(foo,foo64) foo64 #else #define CHOOSE_LARGEFILE(foo,foo64) foo |