Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ismael Luceno (f083cd8191c279c2daf1565b68e297be825c84b8)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ismael Luceno <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ismael Luceno (f083cd8191c279c2daf1565b68e297be825c84b8)
  • Date: Fri, 22 Jun 2018 03:46:59 +0000

GIT changes to master grimoire by Ismael Luceno <ismael AT sourcemage.org>:

x11-libs/fontconfig/DETAILS | 2 +
x11-libs/fontconfig/HISTORY | 4 ++
x11-libs/fontconfig/PRE_BUILD | 3 +
x11-libs/fontconfig/fontconfig-2.13.0-locale.patch | 42
+++++++++++++++++++++
4 files changed, 51 insertions(+)

New commits:
commit f083cd8191c279c2daf1565b68e297be825c84b8
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

fontconfig: Add patch for locale setup bug

diff --git a/x11-libs/fontconfig/DETAILS b/x11-libs/fontconfig/DETAILS
index 4cd7dc5..add84e6 100755
--- a/x11-libs/fontconfig/DETAILS
+++ b/x11-libs/fontconfig/DETAILS
@@ -2,9 +2,11 @@
if [[ "$FONTCONFIG_BRANCH" == "devel" ]]; then
VERSION=2.13.0

SOURCE_HASH=sha512:f0ad8f2542c8b1e900f5c3d213466a31dd3785da726d6eb455b6734c71c6e5751b28172203e2f9668e9c8e1512072235ea46a1a5e6a85ec54ccc332adb4e5fbc
+ PATCHLEVEL=1
else
VERSION=2.13.0

SOURCE_HASH=sha512:f0ad8f2542c8b1e900f5c3d213466a31dd3785da726d6eb455b6734c71c6e5751b28172203e2f9668e9c8e1512072235ea46a1a5e6a85ec54ccc332adb4e5fbc
+ PATCHLEVEL=1
fi
SOURCE=$SPELL-$VERSION.tar.bz2
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
diff --git a/x11-libs/fontconfig/HISTORY b/x11-libs/fontconfig/HISTORY
index 13e16be..2cc4c2a 100644
--- a/x11-libs/fontconfig/HISTORY
+++ b/x11-libs/fontconfig/HISTORY
@@ -1,3 +1,7 @@
+2018-06-22 Ismael Luceno <ismael AT iodev.co.uk>
+ * PRE_BUILD, fontconfig-2.13.0-locale.patch: added locale setup bugfix
+ * DETAILS: PATCHLEVEL++
+
2018-03-06 Pavel Vinogradov <public AT sourcemage.org>
* DETAILS: version 2.13.0

diff --git a/x11-libs/fontconfig/PRE_BUILD b/x11-libs/fontconfig/PRE_BUILD
new file mode 100755
index 0000000..815336d
--- /dev/null
+++ b/x11-libs/fontconfig/PRE_BUILD
@@ -0,0 +1,3 @@
+default_pre_build &&
+cd "$SOURCE_DIRECTORY" &&
+patch -fp1 -i "$SPELL_DIRECTORY"/fontconfig-2.13.0-locale.patch
diff --git a/x11-libs/fontconfig/fontconfig-2.13.0-locale.patch
b/x11-libs/fontconfig/fontconfig-2.13.0-locale.patch
new file mode 100644
index 0000000..c6df432
--- /dev/null
+++ b/x11-libs/fontconfig/fontconfig-2.13.0-locale.patch
@@ -0,0 +1,42 @@
+Locale setup bugfix; leave the locale setting to applications
+
+Based on patches by Akira TAGOH <akira AT tagoh.org>.
+
+https://bugs.freedesktop.org/show_bug.cgi?id=105492
+
+---
+ fc-conflist/fc-conflist.c | 1 +
+ src/fccfg.c | 12 ------------
+ 2 files changed, 1 insertion(+), 12 deletions(-)
+
+--- a/fc-conflist/fc-conflist.c
++++ b/fc-conflist/fc-conflist.c
+@@ -102,6 +102,7 @@ main (int argc, char **argv)
+ #if HAVE_GETOPT_LONG || HAVE_GETOPT
+ int c;
+
++ setlocale (LC_ALL, "");
+ #if HAVE_GETOPT_LONG
+ while ((c = getopt_long (argc, argv, "Vh", longopts, NULL)) != -1)
+ #else
+--- a/src/fccfg.c
++++ b/src/fccfg.c
+@@ -39,18 +39,6 @@ static FcConfig *
+ FcConfigEnsure (void)
+ {
+ FcConfig *config;
+- FcBool is_locale_initialized;
+- static void *static_is_locale_initialized;
+-retry_locale:
+- is_locale_initialized = (intptr_t) fc_atomic_ptr_get
(&static_is_locale_initialized);
+- if (!is_locale_initialized)
+- {
+- is_locale_initialized = FcTrue;
+- if (!fc_atomic_ptr_cmpexch (&static_is_locale_initialized, NULL,
+- (void *)(intptr_t) is_locale_initialized))
+- goto retry_locale;
+- setlocale (LC_ALL, "");
+- }
+ retry_config:
+ config = fc_atomic_ptr_get (&_fcConfig);
+ if (!config)



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (f083cd8191c279c2daf1565b68e297be825c84b8), Ismael Luceno, 06/21/2018

Archive powered by MHonArc 2.6.24.

Top of Page