[vlc-devel] commit: Allow buggy glibc if Native Language Support _and_ Mozilla are off. ( Rémi Denis-Courmont )
git version control
git at videolan.org
Sat Apr 25 22:43:17 CEST 2009
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sat Apr 25 23:39:04 2009 +0300| [e64d892cc789555ee3d3e00e8afe0e9474343835] | committer: Rémi Denis-Courmont
Allow buggy glibc if Native Language Support _and_ Mozilla are off.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e64d892cc789555ee3d3e00e8afe0e9474343835
---
configure.ac | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/configure.ac b/configure.ac
index a9711f4..08b7893 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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
More information about the vlc-devel
mailing list