Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
a32ad118
Commit
a32ad118
authored
Mar 01, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Call XInitThreads early enough"
This reverts commit
826fdf52
.
parent
826fdf52
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
14 deletions
+1
-14
bin/vlc.c
bin/vlc.c
+1
-12
configure.ac
configure.ac
+0
-2
No files found.
bin/vlc.c
View file @
a32ad118
...
...
@@ -33,9 +33,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <locale.h>
#ifdef HAVE_X11_XLIB_H
# include <X11/Xlib.h>
#endif
/* Explicit HACK */
extern
void
LocaleFree
(
const
char
*
);
...
...
@@ -88,15 +86,6 @@ int main( int i_argc, const char *ppsz_argv[] )
/* FIXME: rootwrap (); */
#endif
#ifdef HAVE_X11_XLIB_H
/* Initialize Xlib thread support. */
if
(
!
XInitThreads
())
{
fputs
(
"VLC requires a thread-safe Xlib. Sorry.
\n
"
,
stderr
);
return
1
;
}
#endif
/* Synchronously intercepted POSIX signals.
*
* In a threaded program such as VLC, the only sane way to handle signals
...
...
configure.ac
View file @
a32ad118
...
...
@@ -3947,8 +3947,6 @@ if test "${enable_x11}" != "no" &&
test "${enable_x11}" = "yes"); then
CPPFLAGS="${CPPFLAGS_save} ${X_FLAGS}"
AC_CHECK_HEADERS(X11/Xlib.h, [
VLC_ADD_CPPFLAGS([vlc], [${X_CFLAGS}])
VLC_ADD_LIBS([vlc], [${X_LIBS} ${X_PRE_LIBS} -lX11])
VLC_ADD_PLUGIN([panoramix])
VLC_ADD_LIBS([panoramix],[${X_LIBS} ${X_PRE_LIBS} -lX11])
VLC_ADD_CPPFLAGS([panoramix],[${X_CFLAGS}])
...
...
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