diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-10-15 18:18:38 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-10-15 18:18:38 +0200 |
commit | a1d1703a1dc6bfcd10f48fe707ee7ac65300a37d (patch) | |
tree | 57747826d4296aeda30e5506e6f076a1b51fa451 /gnu/packages/patches | |
parent | c43626131222b7b62d8cb6f5fe90c072d440df26 (diff) | |
download | guix-a1d1703a1dc6bfcd10f48fe707ee7ac65300a37d.tar guix-a1d1703a1dc6bfcd10f48fe707ee7ac65300a37d.tar.gz |
gnu: orc: Fix broken header file.
* gnu/packages/patches/orc-typedef-enum.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/gstreamer.scm (orc)[source](patches): New field.
Diffstat (limited to 'gnu/packages/patches')
-rw-r--r-- | gnu/packages/patches/orc-typedef-enum.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gnu/packages/patches/orc-typedef-enum.patch b/gnu/packages/patches/orc-typedef-enum.patch new file mode 100644 index 0000000000..207bf32ba9 --- /dev/null +++ b/gnu/packages/patches/orc-typedef-enum.patch @@ -0,0 +1,17 @@ +Orc 0.4.30 has a bug that causes duplicate symbols due to a missing typedef. + +Taken from upstream: +https://gitlab.freedesktop.org/gstreamer/orc/merge_requests/32 + +diff --git a/orc/orctarget.h b/orc/orctarget.h +--- a/orc/orctarget.h ++++ b/orc/orctarget.h +@@ -19,7 +19,7 @@ enum { + ORC_TARGET_FAST_DENORMAL = (1<<31) + }; + +-enum { ++typedef enum { + ORC_TARGET_POWERPC_64BIT = (1<<0), + ORC_TARGET_POWERPC_LE = (1<<1), + ORC_TARGET_POWERPC_ALTIVEC = (1<<2), |