mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
media-video/recordmydesktop: Add missing include for USE=jack
Fixes build with C23 Closes: https://bugs.gentoo.org/959093 Signed-off-by: NHOrus <jy6x2b32pie9@yahoo.com> Part-of: https://github.com/gentoo/gentoo/pull/45711 Closes: https://github.com/gentoo/gentoo/pull/45711 Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
https://bugs.gentoo.org/959093
|
||||
Missing include for malloc and getenv
|
||||
--- a/src/rmd_jack.c
|
||||
+++ b/src/rmd_jack.c
|
||||
@@ -31,6 +31,7 @@
|
||||
#include <pthread.h>
|
||||
|
||||
#include <string.h>
|
||||
+#include <stdlib.h>
|
||||
|
||||
#ifdef HAVE_LIBJACK
|
||||
|
||||
43
media-video/recordmydesktop/recordmydesktop-0.4.0-r2.ebuild
Normal file
43
media-video/recordmydesktop/recordmydesktop-0.4.0-r2.ebuild
Normal file
@@ -0,0 +1,43 @@
|
||||
# Copyright 1999-2026 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit autotools
|
||||
|
||||
DESCRIPTION="Desktop session recorder producing Ogg video/audio files"
|
||||
HOMEPAGE="https://enselic.github.io/recordmydesktop/"
|
||||
SRC_URI="https://github.com/Enselic/recordmydesktop/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/${P}/${PN}"
|
||||
|
||||
LICENSE="GPL-2+"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
|
||||
IUSE="alsa jack"
|
||||
|
||||
RDEPEND="x11-libs/libXext
|
||||
x11-libs/libXfixes
|
||||
x11-libs/libXdamage
|
||||
media-libs/libvorbis
|
||||
media-libs/libogg
|
||||
media-libs/libtheora:=[encode]
|
||||
x11-libs/libICE
|
||||
x11-libs/libSM
|
||||
alsa? ( media-libs/alsa-lib )
|
||||
jack? ( virtual/jack )"
|
||||
DEPEND="${RDEPEND}
|
||||
x11-base/xorg-proto"
|
||||
|
||||
PATCHES=( "${FILESDIR}/recordmydesktop-0.4.0-missing-include.patch" )
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
$(use_enable !alsa oss) \
|
||||
$(use_enable jack)
|
||||
}
|
||||
Reference in New Issue
Block a user