Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
6b216e7e
Commit
6b216e7e
authored
Jul 30, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: use portable shell equality operator
parent
e1e7a73c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
configure.ac
configure.ac
+5
-5
No files found.
configure.ac
View file @
6b216e7e
...
@@ -1807,7 +1807,7 @@ if test "${enable_live555}" != "no"; then
...
@@ -1807,7 +1807,7 @@ if test "${enable_live555}" != "no"; then
AC_MSG_WARN([The installed liveMedia version is too old:
AC_MSG_WARN([The installed liveMedia version is too old:
Version 2010.05.29 or later is required to proceed.
Version 2010.05.29 or later is required to proceed.
You can get an updated one from http://www.live555.com/liveMedia .])
You can get an updated one from http://www.live555.com/liveMedia .])
AS_IF([test "${enable_live555}" =
=
"yes"], [
AS_IF([test "${enable_live555}" = "yes"], [
AC_MSG_ERROR([Update live555 or pass --disable-live555 to disable the plugin.])
AC_MSG_ERROR([Update live555 or pass --disable-live555 to disable the plugin.])
])
])
],[
],[
...
@@ -2541,13 +2541,13 @@ AS_IF([test "${enable_libva}" != "no"], [
...
@@ -2541,13 +2541,13 @@ AS_IF([test "${enable_libva}" != "no"], [
AC_DEFINE(HAVE_AVCODEC_VAAPI, 1, [Define if avcodec has to be built with VAAPI support.])
AC_DEFINE(HAVE_AVCODEC_VAAPI, 1, [Define if avcodec has to be built with VAAPI support.])
echo "VAAPI acceleration activated"
echo "VAAPI acceleration activated"
],[
],[
AS_IF([test "${enable_libva}" =
=
"yes"],
AS_IF([test "${enable_libva}" = "yes"],
[AC_MSG_ERROR([libva is present but libavcodec/vaapi.h is missing])],
[AC_MSG_ERROR([libva is present but libavcodec/vaapi.h is missing])],
[AC_MSG_WARN([libva is present but libavcodec/vaapi.h is missing ])])
[AC_MSG_WARN([libva is present but libavcodec/vaapi.h is missing ])])
])
])
VLC_RESTORE_FLAGS
VLC_RESTORE_FLAGS
],[
],[
AS_IF([test "${enable_libva}" =
=
"yes"],
AS_IF([test "${enable_libva}" = "yes"],
[AC_MSG_ERROR([Could not find required libva.])],
[AC_MSG_ERROR([Could not find required libva.])],
[AC_MSG_WARN([libva not found ])])
[AC_MSG_WARN([libva not found ])])
])
])
...
@@ -2574,12 +2574,12 @@ AS_IF([test "${enable_dxva2}" != "no"], [
...
@@ -2574,12 +2574,12 @@ AS_IF([test "${enable_dxva2}" != "no"], [
AC_DEFINE(HAVE_AVCODEC_DXVA2, 1, [Define if avcodec has to be built with DxVA2 support.])
AC_DEFINE(HAVE_AVCODEC_DXVA2, 1, [Define if avcodec has to be built with DxVA2 support.])
echo "DxVA2 acceleration activated"
echo "DxVA2 acceleration activated"
],[
],[
AS_IF([test "${enable_dxva2}" =
=
"yes"],
AS_IF([test "${enable_dxva2}" = "yes"],
[AC_MSG_ERROR([dxva2 is present but libavcodec/dxva2.h is missing])],
[AC_MSG_ERROR([dxva2 is present but libavcodec/dxva2.h is missing])],
[AC_MSG_WARN([dxva2 is present but libavcodec/dxva2.h is missing ])])
[AC_MSG_WARN([dxva2 is present but libavcodec/dxva2.h is missing ])])
])
])
],[
],[
AS_IF([test "${enable_dxva2}" =
=
"yes"],
AS_IF([test "${enable_dxva2}" = "yes"],
[AC_MSG_ERROR([Could not find required dxva2api.h])],
[AC_MSG_ERROR([Could not find required dxva2api.h])],
[AC_MSG_WARN([dxva2api.h not found])])
[AC_MSG_WARN([dxva2api.h not found])])
])
])
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment