Skip to content
Snippets Groups Projects
Commit 7a0e5cd4 authored by Steve Lhomme's avatar Steve Lhomme
Browse files

package/win32: only enable the update check when building the GUI

Otherwise it's not used and should not be used for libvlc apps.
parent 5b092011
No related branches found
No related tags found
1 merge request!6461package/win32: only enable the update check when building the GUI
Pipeline #541680 passed with stage
in 49 minutes and 55 seconds
......@@ -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"
......
#!/bin/sh
OPTIONS="
--enable-update-check
--enable-lua
--enable-flac
--enable-theora
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment