From 17af340739f8be2afc3ebab256230f9bfe097d9c Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Sat, 8 Sep 2007 22:49:07 +0000 Subject: [PATCH] fix #include for off_t (SF#1786225: https://sourceforge.net/tracker/index.php?func=detail&aid=1786225&group_id=13478&atid=313478) --- doc/html/changelog.html | 1 + include/FLAC/metadata.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/html/changelog.html b/doc/html/changelog.html index d2439c54..62661602 100644 --- a/doc/html/changelog.html +++ b/doc/html/changelog.html @@ -106,6 +106,7 @@
  • New configure option --disable-cpplibs to prevent building libFLAC++ (SF #1723295).
  • Fixed bug compiling flac without Ogg support (SF #1760786).
  • Fixed bug where sometimes an existing installation of flac could interfere with the build process (SF #1763690).
  • +
  • OS X fixes (SF #1786225).
  • MinGW fixes (SF #1684879).
  • Solaris 10 fixes (SF #1783225).
  • OS/2 fixes (SF #1771378 SF #1229495).
  • diff --git a/include/FLAC/metadata.h b/include/FLAC/metadata.h index f371f96f..8b833a45 100644 --- a/include/FLAC/metadata.h +++ b/include/FLAC/metadata.h @@ -32,7 +32,7 @@ #ifndef FLAC__METADATA_H #define FLAC__METADATA_H -#include /* for off_t */ +#include /* for off_t */ #include "export.h" #include "callback.h" #include "format.h"