Update to 20171214.

https://acpica.org/node/150
This commit is contained in:
Jung-uk Kim 2017-12-14 22:37:49 +00:00
parent 5d0c42cb25
commit 99bd8ec26b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=456376
3 changed files with 4 additions and 27 deletions

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= acpica
PORTVERSION= 20171110
PORTVERSION= 20171214
CATEGORIES= sysutils devel
MASTER_SITES= https://acpica.org/sites/acpica/files/ \
LOCAL/jkim

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1510335467
SHA256 (acpica-unix-20171110.tar.gz) = 56ac1f870db698fc46f9be0698abe6f4b5bf189bfb12cf982302c0a8f920856a
SIZE (acpica-unix-20171110.tar.gz) = 1767952
TIMESTAMP = 1513288988
SHA256 (acpica-unix-20171214.tar.gz) = 8a0c06c2d0528ed192608e60faebbb287c1e78f840dc746b784190aa901ef755
SIZE (acpica-unix-20171214.tar.gz) = 1769044

View File

@ -1,23 +0,0 @@
--- source/compiler/aslsupport.l.orig 2017-11-10 16:05:28 UTC
+++ source/compiler/aslsupport.l
@@ -525,7 +525,7 @@ static void
count (
int Type)
{
- int i;
+ char *p;
switch (Type)
@@ -547,9 +547,9 @@ count (
break;
}
- for (i = 0; (yytext[i] != 0) && (yytext[i] != EOF); i++)
+ for (p = yytext; *p != '\0'; p++)
{
- AslInsertLineBuffer (yytext[i]);
+ AslInsertLineBuffer (*p);
*Gbl_LineBufPtr = 0;
}
}