ports/multimedia/kodi/files/patch-xbmc_LangInfo.cpp
Thomas Zander abdce43352 Update to upstream version 16.0
Detailed maintainer log:
- pulseaudio removed from default option: because otherwise kodi will select
  pulseaudio first and it's really not needed.
- texturepacker disabled: because it's so heavily broken in upstream. not
  really important. it will be back in 17.0 with the new cmake build system.
- switch to swig3, like all linux distrib (no change)

PR:		208456
Submitted by:	mickael.maillot@gmail.com (maintainer)
2016-04-16 18:08:55 +00:00

13 lines
732 B
C++

--- xbmc/LangInfo.cpp.orig 2016-02-20 15:21:19 UTC
+++ xbmc/LangInfo.cpp
@@ -282,8 +282,8 @@ void CLangInfo::CRegion::SetGlobalLocale
// decimal separator is changed depending of the current language
// (ie. "," in French or Dutch instead of "."). This breaks atof() and
// others similar functions.
-#if defined(TARGET_FREEBSD) || defined(TARGET_DARWIN_OSX) || defined(__UCLIBC__)
- // on FreeBSD, darwin and uClibc-based systems libstdc++ is compiled with
+#if defined(TARGET_DARWIN_OSX) || defined(__UCLIBC__)
+ // on darwin and uClibc-based systems libstdc++ is compiled with
// "generic" locale support
if (setlocale(LC_COLLATE, strLocale.c_str()) == NULL
|| setlocale(LC_CTYPE, strLocale.c_str()) == NULL)