summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2023-09-15 21:25:32 +0000
committer Eric Hameleers <alien@slackware.com>2023-09-15 21:25:32 +0000
commit750858248415c804264c4cfa4662176f19d83978 (patch)
tree49ce0a9a8e3670836e77a71f01da89deb3497c70
parent5a440eb5acefb087efa1101349d3bc5d80e9fe47 (diff)
downloadasb-750858248415c804264c4cfa4662176f19d83978.tar.gz
asb-750858248415c804264c4cfa4662176f19d83978.tar.xz
vlc: build libshout without openssl support
-rwxr-xr-xvlc/build/vlc.SlackBuild9
1 files changed, 4 insertions, 5 deletions
diff --git a/vlc/build/vlc.SlackBuild b/vlc/build/vlc.SlackBuild
index 3868cb06..c6b18910 100755
--- a/vlc/build/vlc.SlackBuild
+++ b/vlc/build/vlc.SlackBuild
@@ -2466,11 +2466,9 @@ make_shout()
echo -e "**\n** libshout ...\n**"
cd $TMP/tmp-$PRGNAM/libshout-$SHOUT
-# Compensate for openssl-1.1:
-if pkg-config --atleast-version=1.1 openssl ; then
- cat $SRCDIR/patches/libshout_openssl11.patch | patch -p1 --verbose \
- 2>&1 | tee $OUTPUT/patch-${PRGNAM}_shout.log
-fi
+# Don't try to pull in openssl:
+cat $SRCDIR/patches/libshout_no_openssl.patch | patch -p1 --verbose \
+ 2>&1 | tee $OUTPUT/patch-${PRGNAM}_shout.log
CFLAGS="-I$VLCDEPSDIR/usr/include $SLKCFLAGS" \
CPPFLAGS="-I$VLCDEPSDIR/usr/include $SLKCFLAGS" \
@@ -2479,6 +2477,7 @@ PKG_CONFIG_PATH="$VLCDEPSDIR/usr/lib${LIBDIRSUFFIX}/pkgconfig" \
./configure \
--prefix=$VLCDEPSDIR/usr \
--libdir=$VLCDEPSDIR/usr/lib${LIBDIRSUFFIX} \
+ --without-openssl \
--enable-speex \
--enable-static \
--disable-shared \