Commit 9cacf4af authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Lets assume glibc 2.8 will work properly when it's out (though I doubt it)

parent ea27196a
......@@ -5,6 +5,8 @@ Changes between 0.8.6 and 0.9.0-svn (not released yet):
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.
If you want to make it available from other machines, you will have to
edit the ".hosts" file.
......
......@@ -67,7 +67,7 @@ int main( int i_argc, const char *ppsz_argv[] )
int i_ret;
# 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
* inside its non-thread-safe dcgettext(). */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment