[Flac-dev] [PATCH] examples: Add include of string.h

Xu, Dongxiao dongxiao.xu at intel.com
Tue Jun 28 23:45:16 PDT 2011


Hi list,

I don't know whether this is the right place for sending patches.

While integrating flac into our yocto project "www.yoctoproject.org", we found a build issue in flac/examples. The following patch fixes this issue.

BTW, is flac still under maintenance? I saw it was not upgraded for a long time.

Thanks,
Dongxiao

Fixes no declaration of memcmp().

Signed-off-by: Dongxiao Xu <dongxiao.xu at intel.com>

diff -urN flac-1.2.1-orig/examples/cpp/encode/file/main.cpp flac-1.2.1/examples/cpp/encode/file/main.cpp
--- flac-1.2.1-orig/examples/cpp/encode/file/main.cpp	2010-06-23 15:06:29.159481339 +0800
+++ flac-1.2.1/examples/cpp/encode/file/main.cpp	2010-06-23 15:06:46.233384883 +0800
@@ -30,6 +30,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 #include "FLAC++/metadata.h"
 #include "FLAC++/encoder.h"
 


More information about the Flac-dev mailing list