Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
fb033327
Commit
fb033327
authored
Nov 27, 2007
by
Rémi Denis-Courmont
Browse files
Horrific kludge to prevent awfully crappy glibc from crashing VLC all the time.
parent
c951fd31
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/vlc.c
View file @
fb033327
...
...
@@ -31,6 +31,9 @@
#include
<stdio.h>
#include
<stdlib.h>
#include
<locale.h>
#ifdef __GLIBC__
#include
<dlfcn.h>
#endif
/* Explicit HACK */
...
...
@@ -63,6 +66,19 @@ int main( int i_argc, const char *ppsz_argv[] )
{
int
i_ret
;
# ifdef __GLIBC__
if
(
dlsym
(
RTLD_NEXT
,
"sync_file_range"
))
{
/* Way too many Linux users have glibc 2.6 that keeps crashing
* inside its non-thread-safe dcgettext(). */
fprintf
(
stderr
,
"***************************************************
\n
"
"*** glibc version with broken libintl detected. ***
\n
"
"*** Messages localization will be disabled. ***
\n
"
"***************************************************
\n
"
);
setenv
(
"LC_MESSAGES"
,
"C"
,
1
);
}
# endif
setlocale
(
LC_ALL
,
""
);
#ifndef __APPLE__
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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