mirror of
https://git.freebsd.org/ports.git
synced 2025-06-11 15:50:33 -04:00
- Add support for armv6 (RPi 1 and RPi 2) PR: 218121 Submitted by: Mikael Urankar <mikael.urankar@gmail.com> Reviewed by: swills Approved by: Mickael Maillot <mickael.maillot@gmail.com> (maintainer)
18 lines
413 B
C++
18 lines
413 B
C++
--- xbmc/platform/posix/main.cpp.orig 2016-02-20 15:21:19 UTC
|
|
+++ xbmc/platform/posix/main.cpp
|
|
@@ -28,6 +28,7 @@
|
|
#ifdef TARGET_POSIX
|
|
#include <sys/resource.h>
|
|
#include <signal.h>
|
|
+#include <locale.h>
|
|
#endif
|
|
#if defined(TARGET_DARWIN_OSX)
|
|
#include "Util.h"
|
|
@@ -35,7 +36,6 @@
|
|
#ifdef HAS_SDL
|
|
#include <SDL/SDL.h>
|
|
#endif
|
|
-#include <locale.h>
|
|
#endif
|
|
#ifdef HAS_LIRC
|
|
#include "input/linux/LIRC.h"
|