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

Allow buggy glibc if Native Language Support _and_ Mozilla are off.

parent d8ebad9e
......@@ -554,7 +554,12 @@ AC_PREPROC_IFELSE([
AC_MSG_RESULT([not present])
], [
AC_MSG_RESULT([found])
AC_MSG_ERROR([Buggy GNU/libc (version 2.5 - 2.7) present. VLC would crash; there is no viable work-around for this. Check with your distribution vendor on how to update the glibc run-time.])
AS_IF([test "x${enable_nls}" != "xno" || test "x${enable_mozilla}" != "xno"], [
AC_MSG_ERROR([Buggy GNU/libc (version 2.5 - 2.7) present. VLC would crash; there is no viable
work-around for this. Check with your distribution vendor on how to update the
glibc run-time. Alternatively, build with --disable-nls --disable-mozilla and
be sure to not use LibVLC from other applications/wrappers.])
])
])
dnl Plugin compilation stuff
......
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