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
685eb491
Commit
685eb491
authored
Oct 10, 2011
by
KO Myung-Hun
Committed by
Rémi Denis-Courmont
Oct 10, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enable SDL vout module on OS/2
Signed-off-by:
Rémi Denis-Courmont
<
remi@remlab.net
>
parent
e0e775bd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
configure.ac
configure.ac
+1
-1
modules/video_output/sdl.c
modules/video_output/sdl.c
+2
-2
No files found.
configure.ac
View file @
685eb491
...
...
@@ -3129,7 +3129,7 @@ then
if test "${SYS}" != "darwin"; then
VLC_ADD_PLUGIN([vout_sdl])
fi
if test "${SYS}" != "mingw32"; then
if test "${SYS}" != "mingw32"
-a "${SYS}" != "os2"
; then
VLC_ADD_LIBS([vout_sdl],[${X_LIBS} ${X_PRE_LIBS} -lX11])
fi
VLC_ADD_CFLAGS([vout_sdl],[${SDL_CFLAGS}])
...
...
modules/video_output/sdl.c
View file @
685eb491
...
...
@@ -40,7 +40,7 @@
#include <SDL.h>
#if
ndef WIN32
#if
!defined(WIN32) && !defined(__OS2__)
# ifdef X_DISPLAY_MISSING
# error Xlib required due to XInitThreads
# endif
...
...
@@ -116,7 +116,7 @@ static int Open(vlc_object_t *object)
vout_display_t
*
vd
=
(
vout_display_t
*
)
object
;
vout_display_sys_t
*
sys
;
#if
ndef WIN32
#if
!defined(WIN32) && !defined(__OS2__)
if
(
!
vlc_xlib_init
(
object
))
return
VLC_EGENERIC
;
#endif
...
...
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