]> git.sesse.net Git - vlc/commitdiff
messages: compilation fix for OS X
authorFelix Paul Kühne <fkuehne@videolan.org>
Sun, 7 Feb 2010 11:59:09 +0000 (12:59 +0100)
committerFelix Paul Kühne <fkuehne@videolan.org>
Sun, 7 Feb 2010 11:59:09 +0000 (12:59 +0100)
src/misc/messages.c

index becda016c8db23de35e45f984c44c7454bf61eea..764d373acc272b49b20106984f71c1f27ea04d8f 100644 (file)
 #include <vlc_common.h>
 
 #include <stdarg.h>                                       /* va_list for BSD */
+#ifdef __APPLE__
+#include <xlocale.h>
+#else
 #include <locale.h>
+#endif
 #include <errno.h>                                                  /* errno */
 
 #ifdef WIN32