Mailing List archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[vdr] small correction for dvd-0.0.9



Hi,

It appears as if my compiler (gcc-2.95.3) is a bit more forgiving that others. 
A couple of people have run into a compile error like this:

spu.c: In method `int simpleFIFO::Put (const uint8_t *, int)':
spu.c:105: `memcpy' undeclared (first use this function)

To fix that, apply the included patch or just add the "#include <string.h>" 
manualy in spu.c

===== spu.c 1.8 vs edited =====
--- 1.8/PLUGINS/SRC/dvd/spu.c   Fri Aug 30 21:53:15 2002
+++ edited/spu.c        Mon Sep  9 09:33:34 2002
@@ -73,6 +73,7 @@

 #include <inttypes.h>
 #include <malloc.h>
+#include <string.h>

 #include "spu.h"



Andreas




Home | Main Index | Thread Index