>From 2e30b23bd88dd5521ca87c920381999ed4e041c3 Mon Sep 17 00:00:00 2001 From: Volker Grabsch Date: Wed, 21 Apr 2010 18:47:51 +0200 Subject: [PATCH] don't fail when HAVE_STAT64 is undefined --- libguile/_scm.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libguile/_scm.h b/libguile/_scm.h index a1884ca..ceca71a 100644 --- a/libguile/_scm.h +++ b/libguile/_scm.h @@ -119,7 +119,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 -- 1.5.6.5