1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-18 00:10:04 +00:00
Po-Chuan Hsieh 2024-02-21 22:30:19 +08:00
parent 2a3dadc897
commit e0d6b9962e
No known key found for this signature in database
GPG Key ID: 9A4BD10F002DD04B
3 changed files with 4 additions and 33 deletions

View File

@ -1,5 +1,5 @@
PORTNAME= afdko
PORTVERSION= 4.0.0
PORTVERSION= 4.0.1
CATEGORIES= x11-fonts
MASTER_SITES= https://github.com/adobe-type-tools/afdko/releases/download/${PORTVERSION}/

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1695143263
SHA256 (afdko-4.0.0.tar.gz) = eba7daa1606e096d254193fcfe60492d3f84ad1181977f7a1dd1b545f3ce61c3
SIZE (afdko-4.0.0.tar.gz) = 17812167
TIMESTAMP = 1708448990
SHA256 (afdko-4.0.1.tar.gz) = 22dd90f0f7b4bc6eacbe8cddb0d72a484cf3f2d6cb474b0e3496de161177f019
SIZE (afdko-4.0.1.tar.gz) = 17815957

View File

@ -1,29 +0,0 @@
--- c/shared/source/uforead/uforead.c.orig 2023-04-24 14:46:56 UTC
+++ c/shared/source/uforead/uforead.c
@@ -1243,7 +1243,7 @@ static void updateGLIFRec(ufoCtx h, char* glyphName, x
if (fileName == NULL) {
/* this is basically muted for now, as the previous check will return and skip if not parseable.
We'll add this back once we add verbosity flag */
- message(h, ufoErrParse, "Encountered glyph reference %s in alternate layer's contents.plist with an empty file path. ", glyphName);
+ message(h, "Encountered glyph reference %s in alternate layer's contents.plist with an empty file path. ", glyphName);
return;
}
@@ -2009,7 +2009,7 @@ static long strtolCheck(ufoCtx h, char* keyValue, bool
fatal(h, ufoErrParse, msg);
else if (msg)
message(h, msg);
- return NULL;
+ return 0;
}
}
@@ -2024,7 +2024,7 @@ static unsigned long strtoulCheck(ufoCtx h, char* keyV
fatal(h, ufoErrParse, msg);
else if (msg)
message(h, msg);
- return NULL;
+ return 0;
}
}