diff options
author | tytan652 | 2022-04-25 08:58:48 +0200 |
---|---|---|
committer | tytan652 | 2022-04-25 08:58:48 +0200 |
commit | d6e7998bfca20ce5aa5424d2e3902ab4af3dd597 (patch) | |
tree | ca1c1b2d0165ec92f3ce415ae15d6988874952f5 /PKGBUILD | |
parent | f682cd10098fce781f68f3c08a2c0b6cacef1455 (diff) | |
download | aur-d6e7998bfca20ce5aa5424d2e3902ab4af3dd597.tar.gz |
build: Avoid linking with rtmpdump or librtmp0
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -4,7 +4,7 @@ DISTRIB_ID=`lsb_release --id | cut -f2 -d$'\t'` pkgname=obs-studio-tytan652 pkgver=27.2.4 -pkgrel=1 +pkgrel=2 pkgdesc="Free and open source software for video recording and live streaming. With Browser dock and sources, VST 2 filter, FTL protocol, VLC sources, V4L2 devices by paths, my bind interface PR, and sometimes backported fixes." arch=("i686" "x86_64" "aarch64") url="https://github.com/obsproject/obs-studio" @@ -128,6 +128,9 @@ prepare() { git config submodule.plugins/obs-browser.url $srcdir/obs-browser git submodule update + ## libobs,obs-outputs: Fix librtmp1 dependency interference on some linuxes (https://github.com/obsproject/obs-studio/pull/6377) + sed -i 's/#define EXPORT/#define EXPORT __attribute__((visibility("default")))/g' libobs/util/c99defs.h + ## Add network interface binding for RTMP on Linux (https://github.com/obsproject/obs-studio/pull/4219) patch -Np1 < "$srcdir/bind_iface.patch" |