mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Update to 5.6.27 release.
This commit is contained in:
parent
ae8f325c44
commit
87c695efe2
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=424397
4 changed files with 4 additions and 23 deletions
|
@ -1,7 +1,6 @@
|
||||||
# Created by: Alex Dupre <ale@FreeBSD.org>
|
# Created by: Alex Dupre <ale@FreeBSD.org>
|
||||||
# $FreeBSD$
|
# $FreeBSD$
|
||||||
|
|
||||||
PORTREVISION= 2
|
|
||||||
CATEGORIES= graphics
|
CATEGORIES= graphics
|
||||||
|
|
||||||
MASTERDIR= ${.CURDIR}/../../lang/php56
|
MASTERDIR= ${.CURDIR}/../../lang/php56
|
||||||
|
|
|
@ -1,18 +0,0 @@
|
||||||
--- libgd/gd_webp.c.orig 2016-09-28 10:07:06.092196000 +0200
|
|
||||||
+++ libgd/gd_webp.c 2016-09-28 10:08:12.429030000 +0200
|
|
||||||
@@ -180,6 +180,15 @@ void gdImageWebpCtx (gdImagePtr im, gdIO
|
|
||||||
/* Conversion to Y,U,V buffer */
|
|
||||||
yuv_width = (width + 1) >> 1;
|
|
||||||
yuv_height = (height + 1) >> 1;
|
|
||||||
+
|
|
||||||
+ if (overflow2(width, height)) {
|
|
||||||
+ return;
|
|
||||||
+ }
|
|
||||||
+ /* simplification possible, because WebP must not be larger than 16384**2 */
|
|
||||||
+ if (overflow2(width * height, 2 * sizeof(unsigned char))) {
|
|
||||||
+ return;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
yuv_nbytes = width * height + 2 * yuv_width * yuv_height;
|
|
||||||
|
|
||||||
if ((Y = (unsigned char *)gdCalloc(yuv_nbytes, sizeof(unsigned char))) == NULL) {
|
|
|
@ -2,7 +2,7 @@
|
||||||
# $FreeBSD$
|
# $FreeBSD$
|
||||||
|
|
||||||
PORTNAME= php56
|
PORTNAME= php56
|
||||||
PORTVERSION= 5.6.26
|
PORTVERSION= 5.6.27
|
||||||
PORTREVISION?= 0
|
PORTREVISION?= 0
|
||||||
CATEGORIES?= lang devel www
|
CATEGORIES?= lang devel www
|
||||||
MASTER_SITES= PHP/distributions
|
MASTER_SITES= PHP/distributions
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
TIMESTAMP = 1474538003
|
TIMESTAMP = 1477040451
|
||||||
SHA256 (php-5.6.26.tar.xz) = 203a854f0f243cb2810d1c832bc871ff133eccdf1ff69d32846f93bc1bef58a8
|
SHA256 (php-5.6.27.tar.xz) = 16eb544498339d1d855292826e2e547ab01a31600141094959073e5e10e93ab5
|
||||||
SIZE (php-5.6.26.tar.xz) = 12412992
|
SIZE (php-5.6.27.tar.xz) = 12439168
|
||||||
SHA256 (php-5.5.x-mail-header.patch) = f510672c4bf2c228e4d8c7837e16a82169de82139dcf33fafce51e9e55a1b9ed
|
SHA256 (php-5.5.x-mail-header.patch) = f510672c4bf2c228e4d8c7837e16a82169de82139dcf33fafce51e9e55a1b9ed
|
||||||
SIZE (php-5.5.x-mail-header.patch) = 4426
|
SIZE (php-5.5.x-mail-header.patch) = 4426
|
||||||
|
|
Loading…
Add table
Reference in a new issue