1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-06 11:41:52 +00:00

Update to 1.3.10

Changes:	https://github.com/silnrsi/graphite/releases
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2017-05-06 11:33:29 +00:00
parent cc7fb16325
commit 52084c0b71
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=440258
3 changed files with 4 additions and 17 deletions

View File

@ -1,8 +1,7 @@
# $FreeBSD$
PORTNAME= graphite2
PORTVERSION= 1.3.9
PORTREVISION= 1
PORTVERSION= 1.3.10
CATEGORIES= graphics print
MAINTAINER= office@FreeBSD.org

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1479331876
SHA256 (silnrsi-graphite-1.3.9_GH0.tar.gz) = f82f92d86a63da79eba10a37c80d943dce883bd72dbc99ebe5bdb7022d3e2391
SIZE (silnrsi-graphite-1.3.9_GH0.tar.gz) = 3888994
TIMESTAMP = 1494060879
SHA256 (silnrsi-graphite-1.3.10_GH0.tar.gz) = 68908cf38cfe09d8aadbbb2c5197f1784e3c1df4be315a462f59e2a1f85cbbc2
SIZE (silnrsi-graphite-1.3.10_GH0.tar.gz) = 3889555

View File

@ -1,12 +0,0 @@
--- src/FeatureMap.cpp.orig 2016-11-11 09:53:21 UTC
+++ src/FeatureMap.cpp
@@ -275,7 +275,8 @@ bool FeatureRef::applyValToFeature(uint3
else
if (pDest.m_pMap!=&m_pFace->theSill().theFeatureMap())
return false; //incompatible
- pDest.reserve(m_index);
+ if (m_index >= pDest.size())
+ pDest.resize(m_index+1);
pDest[m_index] &= ~m_mask;
pDest[m_index] |= (uint32(val) << m_bits);
return true;