]> git.sesse.net Git - vlc/commitdiff
Revert "uClibc compilation fix"
authorRémi Denis-Courmont <remi@remlab.net>
Tue, 28 Feb 2012 16:29:36 +0000 (18:29 +0200)
committerRémi Denis-Courmont <remi@remlab.net>
Tue, 28 Feb 2012 16:29:36 +0000 (18:29 +0200)
This reverts commit 09c815edec7fb4a241fa3ef217f3ed3196da7ce2.

src/posix/linux_specific.c

index 7e86a183e1685d38c31a6a4b64cfeaeeddc3118a..28dbed1bae4c8a91efbe27bb1b2556f9503eed5a 100644 (file)
@@ -74,14 +74,14 @@ error:
     return (path != NULL) ? path : strdup (PKGLIBDIR);
 }
 
-#if defined(__GLIBC__) && !defined(__UCLIBC__)
+#ifdef __GLIBC__
 # include <gnu/libc-version.h>
 # include <stdlib.h>
 #endif
 
 void system_Init (void)
 {
-#if defined(__GLIBC__) && !defined(__UCLIBC__)
+#ifdef __GLIBC__
     const char *glcv = gnu_get_libc_version ();
 
     /* gettext in glibc 2.5-2.7 is not thread-safe. LibVLC keeps crashing,