Skip to content

Commit

Permalink
Merge pull request openwrt#316 from seragh/owrt-musl-1.1.16
Browse files Browse the repository at this point in the history
musl: bump to 1.1.16
  • Loading branch information
wigyori authored Jan 11, 2017
2 parents d72a871 + 6a60f8a commit 3a1dac5
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 87 deletions.
2 changes: 1 addition & 1 deletion toolchain/musl/Config.version
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ if USE_MUSL
config MUSL_VERSION
string
depends on USE_MUSL
default "1.1.15"
default "1.1.16"

endif
2 changes: 1 addition & 1 deletion toolchain/musl/common.mk
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ PKG_NAME:=musl
PKG_VERSION:=$(call qstrip,$(CONFIG_MUSL_VERSION))
PKG_RELEASE=1

PKG_MD5SUM:=9590a9d47ee64f220b3c12f7afb864ca
PKG_MD5SUM:=ac52ccaec6b06ab0f289d37e8436859b

PKG_SOURCE_URL:=http://www.musl-libc.org/releases
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,7 @@ Signed-off-by: Hauke Mehrtens <[email protected]>
+#else
+#define __fp(x, y)
+#endif

-_Noreturn void err(int, const char *, ...);
-_Noreturn void verr(int, const char *, va_list);
-_Noreturn void errx(int, const char *, ...);
-_Noreturn void verrx(int, const char *, va_list);
+
+void warn(const char *, ...) __fp(1, 2);
+void vwarn(const char *, va_list) __fp(1, 0);
+void warnx(const char *, ...) __fp(1, 2);
Expand All @@ -59,7 +55,11 @@ Signed-off-by: Hauke Mehrtens <[email protected]>
+_Noreturn void verr(int, const char *, va_list) __fp(2, 0);
+_Noreturn void errx(int, const char *, ...) __fp(2, 3);
+_Noreturn void verrx(int, const char *, va_list) __fp(2, 0);
+

-_Noreturn void err(int, const char *, ...);
-_Noreturn void verr(int, const char *, va_list);
-_Noreturn void errx(int, const char *, ...);
-_Noreturn void verrx(int, const char *, va_list);
+#undef __fp

#ifdef __cplusplus
Expand Down
2 changes: 1 addition & 1 deletion toolchain/musl/patches/300-relative.patch
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
--- a/Makefile
+++ b/Makefile
@@ -215,7 +215,7 @@ $(DESTDIR)$(includedir)/%: $(srcdir)/inc
@@ -221,7 +221,7 @@ $(DESTDIR)$(includedir)/%: $(srcdir)/inc
$(INSTALL) -D -m 644 $< $@

$(DESTDIR)$(LDSO_PATHNAME): $(DESTDIR)$(libdir)/libc.so
Expand Down
11 changes: 0 additions & 11 deletions toolchain/musl/patches/400-fix_quoted_timezone.patch

This file was deleted.

0 comments on commit 3a1dac5

Please sign in to comment.