mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add libofa.
* gnu/packages/audio.scm (libofa): New variable. * gnu/packages/patches/libofa-ftbfs-1.diff: New file. * gnu/packages/patches/libofa-curl.diff: New file. * gnu/packages/patches/libofa-ftbfs-2.diff: New file. * gnu/local.mk (dist_patch_DATA): Add them. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
parent
502114de11
commit
38375ce952
5 changed files with 122 additions and 0 deletions
45
gnu/packages/patches/libofa-ftbfs-1.diff
Normal file
45
gnu/packages/patches/libofa-ftbfs-1.diff
Normal file
|
@ -0,0 +1,45 @@
|
|||
Description: fix FTBFS with GCC 4.3. (Closes: #417355)
|
||||
Author: Martin Michlmayr <tbm@cyrius.com>
|
||||
Last-Update: 2007-04-02
|
||||
|
||||
Description: add a missing include. (Closes: #441557)
|
||||
Author: Brian M. Carlson <sandals@crustytoothpaste.ath.cx>
|
||||
Last-Update: 2007-12-29
|
||||
|
||||
Index: libofa-0.9.3/lib/signal_op.cpp
|
||||
===================================================================
|
||||
--- libofa-0.9.3.orig/lib/signal_op.cpp
|
||||
+++ libofa-0.9.3/lib/signal_op.cpp
|
||||
@@ -12,6 +12,7 @@
|
||||
// DATE CREATED: 1/12/06
|
||||
|
||||
|
||||
+#include <cstdlib>
|
||||
#include <math.h>
|
||||
#include "signal_op.h"
|
||||
#include "AFLIB/aflibConverter.h"
|
||||
Index: libofa-0.9.3/examples/example.cpp
|
||||
===================================================================
|
||||
--- libofa-0.9.3.orig/examples/example.cpp
|
||||
+++ libofa-0.9.3/examples/example.cpp
|
||||
@@ -8,6 +8,8 @@
|
||||
-------------------------------------------------------------------*/
|
||||
|
||||
#include "protocol.h"
|
||||
+#include <cctype>
|
||||
+#include <string.h>
|
||||
|
||||
AudioData* loadWaveFile(char *file);
|
||||
AudioData* loadDataUsingLAME(char *file);
|
||||
Index: libofa-0.9.3/examples/protocol.cpp
|
||||
===================================================================
|
||||
--- libofa-0.9.3.orig/examples/protocol.cpp
|
||||
+++ libofa-0.9.3/examples/protocol.cpp
|
||||
@@ -8,6 +8,7 @@
|
||||
-------------------------------------------------------------------*/
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
+#include <cstring>
|
||||
#include <string>
|
||||
#include <map>
|
||||
#include <expat.h>
|
Loading…
Add table
Add a link
Reference in a new issue