summary refs log tree commit diff
path: root/pkgs/tools/audio/darkice/fix-undeclared-memmove.patch
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/audio/darkice/fix-undeclared-memmove.patch')
-rw-r--r--pkgs/tools/audio/darkice/fix-undeclared-memmove.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/pkgs/tools/audio/darkice/fix-undeclared-memmove.patch b/pkgs/tools/audio/darkice/fix-undeclared-memmove.patch
new file mode 100644
index 00000000000..9b8baf9701d
--- /dev/null
+++ b/pkgs/tools/audio/darkice/fix-undeclared-memmove.patch
@@ -0,0 +1,13 @@
+diff --git a/src/FaacEncoder.cpp b/src/FaacEncoder.cpp
+index 1100226..3ab1805 100644
+--- a/src/FaacEncoder.cpp
++++ b/src/FaacEncoder.cpp
+@@ -36,7 +36,7 @@
+ // compile the whole file only if faac support configured in
+ #ifdef HAVE_FAAC_LIB
+ 
+-
++#include <string.h>
+ 
+ #include "Exception.h"
+ #include "Util.h"