]> git.pld-linux.org Git - packages/musl.git/commitdiff
- updated to 1.1.14 auto/th/musl-1.1.14-1
authorJakub Bogusz <qboosh@pld-linux.org>
Sun, 6 Mar 2016 14:58:48 +0000 (15:58 +0100)
committerJakub Bogusz <qboosh@pld-linux.org>
Sun, 6 Mar 2016 14:58:48 +0000 (15:58 +0100)
- removed obsolete locale patch

musl-locale.patch [deleted file]
musl.spec

diff --git a/musl-locale.patch b/musl-locale.patch
deleted file mode 100644 (file)
index 36dd664..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-From 63f4b9f18f3674124d8bcb119739fec85e6da005 Mon Sep 17 00:00:00 2001
-From: Timo Teräs <timo.teras@iki.fi>
-Date: Fri, 05 Jun 2015 07:39:42 +0000
-Subject: fix uselocale((locale_t)0) not to modify locale
-
-commit 68630b55c0c7219fe9df70dc28ffbf9efc8021d8 made the new locale to
-be assigned unconditonally resulting in crashes later on.
----
-diff --git a/src/locale/uselocale.c b/src/locale/uselocale.c
-index b70a0c1..0fc5ecb 100644
---- a/src/locale/uselocale.c
-+++ b/src/locale/uselocale.c
-@@ -8,9 +8,7 @@ locale_t __uselocale(locale_t new)
-       locale_t old = self->locale;
-       locale_t global = &libc.global_locale;
--      if (new == LC_GLOBAL_LOCALE) new = global;
--
--      self->locale = new;
-+      if (new) self->locale = new == LC_GLOBAL_LOCALE ? global : new;
-       return old == global ? LC_GLOBAL_LOCALE : old;
- }
---
-cgit v0.9.0.3-65-g4555
index 1405420076463488c4a2c82ec4b4286013bff0e0..66055773b126860baddd77813fe0c9f766806b98 100644 (file)
--- a/musl.spec
+++ b/musl.spec
@@ -1,13 +1,12 @@
 Summary:       musl libc - new standard library to power a new generation of Linux-based devices
 Summary(pl.UTF-8):     musl libc - nowa biblioteka standardowa dla urządzeń linuksowych nowej generacji
 Name:          musl
-Version:       1.1.10
-Release:       2
+Version:       1.1.14
+Release:       1
 License:       MIT
 Group:         Libraries
 Source0:       http://www.musl-libc.org/releases/%{name}-%{version}.tar.gz
-# Source0-md5: fc30892ee582c91920505bbd0021049f
-Patch0:                musl-locale.patch
+# Source0-md5: d529ce4a2f7f79d8c3fd4b8329417b57
 URL:           http://www.musl-libc.org/
 BuildRequires: gcc >= 5:3.2
 BuildRequires: zlib-devel
@@ -58,7 +57,6 @@ Pliki programistyczne biblioteki musl libc.
 
 %prep
 %setup -q
-%patch0 -p1
 
 %build
 %configure \
This page took 0.130372 seconds and 4 git commands to generate.