mirror of
https://github.com/void-linux/void-packages.git
synced 2025-08-01 10:22:56 +02:00
pipewire: update to 0.2.6.
This commit is contained in:
parent
5eabf60826
commit
9110b8d26c
2 changed files with 3 additions and 25 deletions
|
@ -1,22 +0,0 @@
|
||||||
From 371da358d1580dc06218d18a12a99611cac39e4e Mon Sep 17 00:00:00 2001
|
|
||||||
From: Jan Grulich <jgrulich@redhat.com>
|
|
||||||
Date: Wed, 2 Jan 2019 10:05:40 +0100
|
|
||||||
Subject: [PATCH] Avoid invalid conversion error with C++ compilators
|
|
||||||
|
|
||||||
---
|
|
||||||
src/pipewire/utils.h | 2 +-
|
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git src/pipewire/utils.h src/pipewire/utils.h
|
|
||||||
index 2ce9fdde..7262ff42 100644
|
|
||||||
--- src/pipewire/utils.h
|
|
||||||
+++ src/pipewire/utils.h
|
|
||||||
@@ -58,7 +58,7 @@ pw_spa_pod_copy(const struct spa_pod *pod)
|
|
||||||
return NULL;
|
|
||||||
|
|
||||||
size = SPA_POD_SIZE(pod);
|
|
||||||
- if ((c = malloc(size)) == NULL)
|
|
||||||
+ if ((c = (struct spa_pod *) malloc(size)) == NULL)
|
|
||||||
return NULL;
|
|
||||||
|
|
||||||
return (struct spa_pod *) memcpy(c, pod, size);
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'pipewire'
|
# Template file for 'pipewire'
|
||||||
pkgname=pipewire
|
pkgname=pipewire
|
||||||
version=0.2.5
|
version=0.2.6
|
||||||
revision=2
|
revision=1
|
||||||
build_style=meson
|
build_style=meson
|
||||||
configure_args="-Dman=true -Dgstreamer=enabled -Ddocs=true -Dsystemd=false"
|
configure_args="-Dman=true -Dgstreamer=enabled -Ddocs=true -Dsystemd=false"
|
||||||
hostmakedepends="doxygen graphviz pkg-config xmltoman"
|
hostmakedepends="doxygen graphviz pkg-config xmltoman"
|
||||||
|
@ -13,7 +13,7 @@ license="LGPL-2.1-or-later"
|
||||||
homepage="https://pipewire.org/"
|
homepage="https://pipewire.org/"
|
||||||
changelog="https://raw.githubusercontent.com/PipeWire/pipewire/master/NEWS"
|
changelog="https://raw.githubusercontent.com/PipeWire/pipewire/master/NEWS"
|
||||||
distfiles="https://github.com/PipeWire/pipewire/archive/${version}.tar.gz"
|
distfiles="https://github.com/PipeWire/pipewire/archive/${version}.tar.gz"
|
||||||
checksum=6e75bb88a329f97984925bd303643075788df8d51b345bb43feb1be2c3b7102c
|
checksum=8592bcc2a83b078fee6cfb8560397cf2747346f28e88689197e780069b19cb17
|
||||||
|
|
||||||
libpipewire_package() {
|
libpipewire_package() {
|
||||||
short_desc+=" - pipewire library"
|
short_desc+=" - pipewire library"
|
||||||
|
|
Loading…
Add table
Reference in a new issue