From: <abe...@us...> - 2015-04-30 21:22:03
|
Revision: 7059 http://sourceforge.net/p/astlinux/code/7059 Author: abelbeck Date: 2015-04-30 21:22:00 +0000 (Thu, 30 Apr 2015) Log Message: ----------- pcre, version bump to 8.37, security fixes: CVE-2014-8964, CVE-2015-2325, CVE-2015-2326 Modified Paths: -------------- branches/1.0/package/pcre/pcre.mk Modified: branches/1.0/package/pcre/pcre.mk =================================================================== --- branches/1.0/package/pcre/pcre.mk 2015-04-30 20:38:43 UTC (rev 7058) +++ branches/1.0/package/pcre/pcre.mk 2015-04-30 21:22:00 UTC (rev 7059) @@ -4,8 +4,9 @@ # ############################################################# -PCRE_VERSION = 8.36 -PCRE_SITE = ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre +PCRE_VERSION = 8.37 +PCRE_SITE = http://downloads.sourceforge.net/project/pcre/pcre/$(PCRE_VERSION) +PCRE_SOURCE = pcre-$(PCRE_VERSION).tar.bz2 PCRE_INSTALL_STAGING = YES ifneq ($(BR2_INSTALL_LIBSTDCPP),y) @@ -13,6 +14,12 @@ PCRE_CONF_OPT = --disable-cpp endif +PCRE_CONF_OPT += --enable-pcre8 +PCRE_CONF_OPT += --disable-pcre16 +PCRE_CONF_OPT += --disable-pcre32 +PCRE_CONF_OPT += --disable-utf +PCRE_CONF_OPT += --disable-unicode-properties + define PCRE_STAGING_PCRE_CONFIG_FIXUP $(SED) 's,^prefix=.*,prefix=$(STAGING_DIR)/usr,' \ -e 's,^exec_prefix=.*,exec_prefix=$(STAGING_DIR)/usr,' \ @@ -20,11 +27,9 @@ endef PCRE_POST_INSTALL_STAGING_HOOKS += PCRE_STAGING_PCRE_CONFIG_FIXUP -ifneq ($(BR2_HAVE_DEVFILES),y) define PCRE_TARGET_REMOVE_PCRE_CONFIG rm -f $(TARGET_DIR)/usr/bin/pcre-config endef PCRE_POST_INSTALL_TARGET_HOOKS += PCRE_TARGET_REMOVE_PCRE_CONFIG -endif $(eval $(call AUTOTARGETS,package,pcre)) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |