From: RĂ©mi Denis-Courmont Date: Sun, 27 Nov 2011 19:58:17 +0000 (+0200) Subject: Remove useless config.h #define X-Git-Tag: 1.3.0-git~3 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=b7f095620ec069e40295847019acedf27913b7ce;p=vlc Remove useless config.h #define --- diff --git a/configure.ac b/configure.ac index a08d8429f9..9344af9a35 100644 --- a/configure.ac +++ b/configure.ac @@ -486,8 +486,6 @@ AC_PREPROC_IFELSE([AC_LANG_SOURCE([ 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.]) - ], [ - AC_DEFINE(DISABLE_BUGGY_GLIBC_CHECK, 1, [Disables runtime check for buggy glibc.]) ]) ]) diff --git a/src/posix/linux_specific.c b/src/posix/linux_specific.c index 1d1e9662ff..92ec1d0a77 100644 --- a/src/posix/linux_specific.c +++ b/src/posix/linux_specific.c @@ -101,9 +101,6 @@ void system_Init (void) fputs ("LibVLC has detected an unusable buggy GNU/libc version.\n" "Please update to version 2.8 or newer.\n", stderr); fflush (stderr); -#ifndef DISABLE_BUGGY_GLIBC_CHECK - abort (); -#endif } #endif