diff options
author | John Crispin <blogic@openwrt.org> | 2016-03-01 08:53:27 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2016-03-01 08:53:27 +0000 |
commit | 3ea83f06882978c5406dfbe1b862e94834f943aa (patch) | |
tree | 0ba5b39f15d81e3949519bee8842a2b2d0a4d221 /toolchain/glibc/common.mk | |
parent | 706ffd80683910dfddf2e0ffd4c3e41dca0d695f (diff) | |
download | upstream-3ea83f06882978c5406dfbe1b862e94834f943aa.tar.gz upstream-3ea83f06882978c5406dfbe1b862e94834f943aa.tar.bz2 upstream-3ea83f06882978c5406dfbe1b862e94834f943aa.zip |
CC: toolchain: use latest glibc 2.21 revision
Fixes "CVE-2015-7547 --- glibc getaddrinfo() stack-based buffer
overflow"
Signed-off-by: Michael Marley <michael@michaelmarley.com>
git-svn-id: svn://svn.openwrt.org/openwrt/branches/chaos_calmer@48864 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain/glibc/common.mk')
-rw-r--r-- | toolchain/glibc/common.mk | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/toolchain/glibc/common.mk b/toolchain/glibc/common.mk index 7487ca2782..3d680bbcf6 100644 --- a/toolchain/glibc/common.mk +++ b/toolchain/glibc/common.mk @@ -6,9 +6,19 @@ # include $(TOPDIR)/rules.mk + +MD5SUM_2.19 = 42dad4edd3bcb38006d13b5640b00b38 +REVISION_2.19 = 25243 + +MD5SUM_2.21 = 76050a65c444d58b5c4aa0d6034736ed +REVISION_2.21 = 16d0a0c + + PKG_NAME:=glibc PKG_VERSION:=$(call qstrip,$(CONFIG_GLIBC_VERSION)) -PKG_REVISION:=$(call qstrip,$(CONFIG_GLIBC_REVISION)) + +PKG_REVISION:=$(REVISION_$(PKG_VERSION)) +PKG_MIRROR_MD5SUM:=$(MD5SUM_$(PKG_VERSION)) PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=git://sourceware.org/git/glibc.git |