summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Coalson <jcoalson@users.sourceforce.net>2007-11-27 04:17:15 +0000
committerJosh Coalson <jcoalson@users.sourceforce.net>2007-11-27 04:17:15 +0000
commit0a4ecd8ddb708915b26ad69cedf6f8985a2baf5f (patch)
tree3fbc96a77116e2171323b96166a81d88fe055f7a
parent79e10b392198e5523445fa6752c507c8041292e8 (diff)
downloadflac-0a4ecd8ddb708915b26ad69cedf6f8985a2baf5f.tar.gz
fix #includes (SF#1834168: https://sourceforge.net/tracker/index.php?func=detail&aid=1834168&group_id=13478&atid=313478)
-rw-r--r--doc/html/changelog.html2
-rw-r--r--examples/cpp/encode/file/main.cpp1
2 files changed, 2 insertions, 1 deletions
diff --git a/doc/html/changelog.html b/doc/html/changelog.html
index 6f363fe7..5b07cb51 100644
--- a/doc/html/changelog.html
+++ b/doc/html/changelog.html
@@ -99,7 +99,7 @@
<li>
build system:
<ul>
- <li>(none)</li>
+ <li>Fix #includes for gcc 4.3 (<a href="https://sourceforge.net/tracker/index.php?func=detail&aid=1834168&group_id=13478&atid=313478">SF #1834168</a>).</li>
</ul>
</li>
<li>
diff --git a/examples/cpp/encode/file/main.cpp b/examples/cpp/encode/file/main.cpp
index 22448bbb..343ee871 100644
--- a/examples/cpp/encode/file/main.cpp
+++ b/examples/cpp/encode/file/main.cpp
@@ -30,6 +30,7 @@
#include <stdio.h>
#include <stdlib.h>
+#include <string.h>
#include "FLAC++/metadata.h"
#include "FLAC++/encoder.h"