Fix compilation for osx.

This commit is contained in:
nick_m 2015-03-11 01:57:16 +11:00
parent fb8bc4e8c9
commit a2b35aa634

View file

@ -343,7 +343,7 @@ AudioSource::read_peaks_with_fpp (PeakData *peaks, framecnt_t npeaks, framepos_t
const int bufsize = sysconf(_SC_PAGESIZE);
framecnt_t zero_fill = 0;
#ifdef PLATFORM_WINDOWS
#if defined (PLATFORM_WINDOWS) || defined ( __APPLE__)
ScopedFileDescriptor sfd (::open (peakpath.c_str(), O_RDONLY | O_NONBLOCK));
#else
ScopedFileDescriptor sfd (::open (peakpath.c_str(), O_RDONLY | O_NOATIME | O_NONBLOCK));