adjust large-file-support flag handling

svn: r17267
This commit is contained in:
Matthew Flatt 2009-12-11 12:49:46 +00:00
parent 55b54f920d
commit fb67e2610b
3 changed files with 5 additions and 6 deletions

2
src/configure vendored
View File

@ -7100,7 +7100,7 @@ fi
LFS_CFLAGS=`getconf LFS_CFLAGS 2> /dev/null`
if test "${LFS_CFLAGS}" != "" ; then
echo "Large-file support: ${LFS_CFLAGS}"
PREFLAGS="${PREFLAGS} ${LFS_CFLAGS}"
MZOPTIONS="${MZOPTIONS} ${LFS_CFLAGS}"
fi
###### Get data sizes, stack direction, and endianness #######

View File

@ -914,7 +914,7 @@ fi
LFS_CFLAGS=`getconf LFS_CFLAGS 2> /dev/null`
if test "${LFS_CFLAGS}" != "" ; then
echo "Large-file support: ${LFS_CFLAGS}"
PREFLAGS="${PREFLAGS} ${LFS_CFLAGS}"
MZOPTIONS="${MZOPTIONS} ${LFS_CFLAGS}"
fi
###### Get data sizes, stack direction, and endianness #######

View File

@ -2251,9 +2251,9 @@ static void ts_on_demand(void) XFORM_SKIP_PROC
#ifdef MZ_PRECISE_GC
static void *ts_prepare_retry_alloc(void *p, void *p2) XFORM_SKIP_PROC
{
unsigned long ret;
if (scheme_use_rtcall) {
unsigned long ret;
jit_future_storage[0] = p;
jit_future_storage[1] = p2;
ret = scheme_rtcall_alloc("[acquire_gc_page]", FSRC_OTHER);
@ -2265,8 +2265,7 @@ static void *ts_prepare_retry_alloc(void *p, void *p2) XFORM_SKIP_PROC
return p;
}
ret = prepare_retry_alloc(p, p2);
return ret;
return prepare_retry_alloc(p, p2);
}
#endif