[vlc-commits] [Git][videolan/vlc][master] package/win32: only enable the update check when building the GUI
Steve Lhomme (@robUx4)
gitlab at videolan.org
Thu Dec 5 14:33:36 UTC 2024
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
7a0e5cd4 by Steve Lhomme at 2024-12-05T12:27:50+00:00
package/win32: only enable the update check when building the GUI
Otherwise it's not used and should not be used for libvlc apps.
- - - - -
2 changed files:
- extras/package/win32/build.sh
- extras/package/win32/configure.sh
Changes:
=====================================
extras/package/win32/build.sh
=====================================
@@ -446,7 +446,7 @@ fi
cd ../..
# configuration matching configure.sh (goom is called goom2, theora is theoradec+theoraenc)
-MCONFIGFLAGS="-Dupdate-check=enabled -Dlua=enabled -Dflac=enabled -Dtheoradec=enabled -Dtheoraenc=enabled \
+MCONFIGFLAGS="-Dlua=enabled -Dflac=enabled -Dtheoradec=enabled -Dtheoraenc=enabled \
-Davcodec=enabled -Dmerge-ffmpeg=true \
-Dlibass=enabled -Dschroedinger=enabled -Dshout=enabled -Dgoom2=enabled \
-Dsse=enabled -Dlibcddb=enabled -Dzvbi=enabled -Dtelx=disabled $MCONFIGFLAGS"
@@ -480,8 +480,8 @@ if [ -n "$DISABLEGUI" ]; then
CONFIGFLAGS="$CONFIGFLAGS --disable-qt --disable-skins2"
MCONFIGFLAGS="$MCONFIGFLAGS -Dqt=disabled -Dskins2=disabled"
else
- CONFIGFLAGS="$CONFIGFLAGS --enable-qt --enable-skins2"
- MCONFIGFLAGS="$MCONFIGFLAGS -Dqt=enabled -Dskins2=enabled"
+ CONFIGFLAGS="$CONFIGFLAGS --enable-qt --enable-skins2 --enable-update-check"
+ MCONFIGFLAGS="$MCONFIGFLAGS -Dqt=enabled -Dskins2=enabled -Dupdate-check=enabled"
fi
if [ -n "$WINSTORE" ]; then
CONFIGFLAGS="$CONFIGFLAGS --enable-winstore-app"
=====================================
extras/package/win32/configure.sh
=====================================
@@ -1,7 +1,6 @@
#!/bin/sh
OPTIONS="
- --enable-update-check
--enable-lua
--enable-flac
--enable-theora
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/7a0e5cd4bbe786a00f6044ec1957789e97736e63
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/7a0e5cd4bbe786a00f6044ec1957789e97736e63
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the vlc-commits
mailing list