mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-17 17:20:29 +02:00
* configure.in (--without-64-calls): New option.
* fports.c (fport_seek): Make dependent on GUILE_USE_64_CALLS. * _scm.h: Make definition of CHOOSE_LARGEFILE depend on GUILE_USE_64_CALLS.
This commit is contained in:
parent
a06872c2bc
commit
08f9eb4adc
6 changed files with 56 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
|||
2008-02-05 Neil Jerram <neil@ossau.uklinux.net>
|
||||
|
||||
* fports.c (fport_seek): Make dependent on GUILE_USE_64_CALLS.
|
||||
|
||||
* _scm.h: Make definition of CHOOSE_LARGEFILE depend on
|
||||
GUILE_USE_64_CALLS.
|
||||
|
||||
2008-02-01 Neil Jerram <neil@ossau.uklinux.net>
|
||||
|
||||
* modules.c (the_root_module): Moved before scm_current_module.
|
||||
|
|
|
@ -114,7 +114,7 @@
|
|||
|
||||
|
||||
|
||||
#if HAVE_STAT64
|
||||
#if GUILE_USE_64_CALLS && HAVE_STAT64
|
||||
#define CHOOSE_LARGEFILE(foo,foo64) foo64
|
||||
#else
|
||||
#define CHOOSE_LARGEFILE(foo,foo64) foo
|
||||
|
|
|
@ -670,7 +670,7 @@ fport_seek_or_seek64 (SCM port, off_t_or_off64_t offset, int whence)
|
|||
case on NetBSD apparently), then fport_seek_or_seek64 is right to be
|
||||
fport_seek already. */
|
||||
|
||||
#if HAVE_STAT64 && SIZEOF_OFF_T != SIZEOF_OFF64_T
|
||||
#if GUILE_USE_64_CALLS && HAVE_STAT64 && SIZEOF_OFF_T != SIZEOF_OFF64_T
|
||||
static off_t
|
||||
fport_seek (SCM port, off_t offset, int whence)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue