Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC-WinRT
Manage
Activity
Members
Labels
Plan
Issues
116
Issue boards
Milestones
Wiki
Code
Merge requests
6
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC-WinRT
Merge requests
!14
libvlc: disable the win81 target
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
libvlc: disable the win81 target
robUx4/vlc-winrt:remove-win81
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Steve Lhomme
requested to merge
robUx4/vlc-winrt:remove-win81
into
master
4 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
We don't expect to make a Windows 8.1 UWP build in the future.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
45c16378
1 commit,
4 years ago
1 file
+
8
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
libvlc/compile.sh
+
8
−
5
Options
@@ -6,7 +6,7 @@ usage()
{
echo
"Usage: compile <arch> <TargetOS>"
echo
"archs: i686,x86_64,armv7,aarch64"
echo
"os:
win81,
win10"
echo
"os: win10"
}
using
()
@@ -49,10 +49,13 @@ case "$2" in
LIBLOLE32
=
;;
win81
)
WINVER
=
0x602
RUNTIME
=
msvcr120_app
LIBKERNEL32
=
-lkernel32
LIBLOLE32
=
-lole32
echo
"win81 not supported anymore"
usage
exit
1
#~ WINVER=0x602
#~ RUNTIME=msvcr120_app
#~ LIBKERNEL32=-lkernel32
#~ LIBLOLE32=-lole32
;;
*
)
echo
"Unknown OS:
$2
"
Loading