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
9cacf4af
Commit
9cacf4af
authored
Nov 28, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Lets assume glibc 2.8 will work properly when it's out (though I doubt it)
parent
ea27196a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
NEWS
NEWS
+2
-0
src/vlc.c
src/vlc.c
+1
-1
No files found.
NEWS
View file @
9cacf4af
...
@@ -5,6 +5,8 @@ Changes between 0.8.6 and 0.9.0-svn (not released yet):
...
@@ -5,6 +5,8 @@ Changes between 0.8.6 and 0.9.0-svn (not released yet):
Important notes:
Important notes:
----------------
----------------
* On Linux, localization will be disabled if you have glibc 2.6 or 2.7 due
to a major bug in libintl with these glibc versions.
* The HTTP interface is now only available on the local machine by default.
* The HTTP interface is now only available on the local machine by default.
If you want to make it available from other machines, you will have to
If you want to make it available from other machines, you will have to
edit the ".hosts" file.
edit the ".hosts" file.
...
...
src/vlc.c
View file @
9cacf4af
...
@@ -67,7 +67,7 @@ int main( int i_argc, const char *ppsz_argv[] )
...
@@ -67,7 +67,7 @@ int main( int i_argc, const char *ppsz_argv[] )
int
i_ret
;
int
i_ret
;
# ifdef __GLIBC__
# ifdef __GLIBC__
if
(
dlsym
(
RTLD_NEXT
,
"sync_file_range"
))
if
(
dlsym
(
RTLD_NEXT
,
"sync_file_range"
)
&&
!
dlsym
(
RTLD_NEXT
,
"qsort_r"
)
)
{
{
/* Way too many Linux users have glibc 2.6 that keeps crashing
/* Way too many Linux users have glibc 2.6 that keeps crashing
* inside its non-thread-safe dcgettext(). */
* inside its non-thread-safe dcgettext(). */
...
...
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