ruby: bump to 2.2.4
This release includes a security fix for Fiddle extension. * CVE-2015-7551: Unsafe tainted string usage in Fiddle and DL There are also some bugfixes. In package, now LD_FLAGS is copied to DLD_FLAGS (used by ruby for libraries). The missing values from LD_FLAGS cause build error when gcc does not implicitly include staging/usr/lib. Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
This commit is contained in:
parent
e26fc30eb9
commit
fbd2b86dca
1 changed files with 9 additions and 2 deletions
|
@ -10,14 +10,14 @@
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=ruby
|
PKG_NAME:=ruby
|
||||||
PKG_VERSION:=2.2.3
|
PKG_VERSION:=2.2.4
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=1
|
||||||
|
|
||||||
PKG_LIBVER:=2.2
|
PKG_LIBVER:=2.2
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||||
PKG_SOURCE_URL:=http://cache.ruby-lang.org/pub/ruby/$(PKG_LIBVER)/
|
PKG_SOURCE_URL:=http://cache.ruby-lang.org/pub/ruby/$(PKG_LIBVER)/
|
||||||
PKG_MD5SUM:=f49a734729a71774d4a94a9a603114b2
|
PKG_MD5SUM:=c3d65f6d2ebe90dda81a37885ea244f5
|
||||||
PKG_MAINTAINER:=Luiz Angelo Daros de Luca <luizluca@gmail.com>
|
PKG_MAINTAINER:=Luiz Angelo Daros de Luca <luizluca@gmail.com>
|
||||||
PKG_LICENSE:=BSD-2-Clause
|
PKG_LICENSE:=BSD-2-Clause
|
||||||
PKG_LICENSE_FILES:=COPYING
|
PKG_LICENSE_FILES:=COPYING
|
||||||
|
@ -833,6 +833,13 @@ endif
|
||||||
|
|
||||||
TARGET_LDFLAGS += -L$(PKG_BUILD_DIR)
|
TARGET_LDFLAGS += -L$(PKG_BUILD_DIR)
|
||||||
|
|
||||||
|
# Ruby uses DLDFLAGS and not LDFLAGS for libraries. LDFLAGS is only for execs.
|
||||||
|
# However, DLDFLAGS from configure is not passed to Makefile when target is linux.
|
||||||
|
# XLDFLAGS is used by both libraries and execs. This is somehow brute force but
|
||||||
|
# if will fix when some LD_FLAGS is needef for libraries. As side effect, it will
|
||||||
|
# duplicate ld args for binaries.
|
||||||
|
CONFIGURE_VARS += XLDFLAGS="$(TARGET_LDFLAGS)"
|
||||||
|
|
||||||
MAKE_FLAGS += \
|
MAKE_FLAGS += \
|
||||||
DESTDIR="$(PKG_INSTALL_DIR)" \
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
||||||
SHELL="/bin/bash"
|
SHELL="/bin/bash"
|
||||||
|
|
Loading…
Reference in a new issue