Correct fix to ensure 64 bit lseek is used on apple in stream.c

This commit is contained in:
ckolivas 2011-04-18 23:13:11 +10:00
parent 0acf92c103
commit 6ddd2e8e7e

View file

@ -27,9 +27,15 @@
#ifdef HAVE_SYS_TIME_H #ifdef HAVE_SYS_TIME_H
# include <sys/time.h> # include <sys/time.h>
#endif #endif
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#ifdef HAVE_SYS_RESOURCE_H #ifdef HAVE_SYS_RESOURCE_H
# include <sys/resource.h> # include <sys/resource.h>
#endif #endif
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <sys/statvfs.h> #include <sys/statvfs.h>
#include <pthread.h> #include <pthread.h>
#include <bzlib.h> #include <bzlib.h>