Index: head/sysutils/acpica-tools/Makefile =================================================================== --- head/sysutils/acpica-tools/Makefile (revision 509083) +++ head/sysutils/acpica-tools/Makefile (revision 509084) @@ -1,35 +1,35 @@ # $FreeBSD$ PORTNAME= acpica -PORTVERSION= 20190703 +PORTVERSION= 20190816 CATEGORIES= sysutils devel MASTER_SITES= https://acpica.org/sites/acpica/files/ \ LOCAL/jkim PKGNAMESUFFIX= -tools DISTNAME= ${PORTNAME}-unix-${PORTVERSION} MAINTAINER= jkim@FreeBSD.org COMMENT= Tools from the ACPI Component Architecture (ACPICA) project LICENSE= BSD3CLAUSE GPLv2 LICENSE_COMB= dual BROKEN_powerpc64= fails to compile: comparison is always true due to limited range of data type -USES= gmake +USES= bison gmake BUILD_WRKSRC= ${WRKSRC}/generate/unix ACPICA_TOOLS= acpibin acpidump acpiexec acpihelp acpinames acpisrc ACPICA_TOOLS+= acpixtract iasl PLIST_FILES= ${ACPICA_TOOLS:S,^,bin/,} MAKE_ARGS= HOST=_FreeBSD NOOPT=TRUE PROGS="${ACPICA_TOOLS}" -MAKE_ARGS+= CC="${CC}" LEX="${FLEX}" YACC="${YACC}" +MAKE_ARGS+= CC="${CC}" LEX="${FLEX}" YACC="${LOCALBASE}/bin/bison" do-install: ${INSTALL_PROGRAM} ${ACPICA_TOOLS:S,^,${BUILD_WRKSRC}/bin/,} \ ${STAGEDIR}${PREFIX}/bin .include Index: head/sysutils/acpica-tools/distinfo =================================================================== --- head/sysutils/acpica-tools/distinfo (revision 509083) +++ head/sysutils/acpica-tools/distinfo (revision 509084) @@ -1,3 +1,3 @@ -TIMESTAMP = 1562691275 -SHA256 (acpica-unix-20190703.tar.gz) = 212563b55c5db1eed84f2e6e9abfee60ab281423f018d39dd93b81a08808350c -SIZE (acpica-unix-20190703.tar.gz) = 1845874 +TIMESTAMP = 1565969994 +SHA256 (acpica-unix-20190816.tar.gz) = 7aec4dc88a3ba148eecd898e59fb5378573eb6a94585e5538e0b396840d0fc5c +SIZE (acpica-unix-20190816.tar.gz) = 1856681 Index: head/sysutils/acpica-tools/files/patch-source_common_dmtables.c =================================================================== --- head/sysutils/acpica-tools/files/patch-source_common_dmtables.c (nonexistent) +++ head/sysutils/acpica-tools/files/patch-source_common_dmtables.c (revision 509084) @@ -0,0 +1,11 @@ +--- source/common/dmtables.c.orig 2019-08-16 15:01:10 UTC ++++ source/common/dmtables.c +@@ -327,7 +327,7 @@ AdCreateTableHeader ( + * makes it easier to rename the disassembled ASL file if needed. + */ + AcpiOsPrintf ( +- "DefinitionBlock (\"\", \"%4.4s\", %hu, \"%.6s\", \"%.8s\", 0x%8.8X)\n", ++ "DefinitionBlock (\"\", \"%4.4s\", %hhu, \"%.6s\", \"%.8s\", 0x%8.8X)\n", + Table->Signature, Table->Revision, + Table->OemId, Table->OemTableId, Table->OemRevision); + } Property changes on: head/sysutils/acpica-tools/files/patch-source_common_dmtables.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/acpica-tools/files/patch-source_components_namespace_nsdump.c =================================================================== --- head/sysutils/acpica-tools/files/patch-source_components_namespace_nsdump.c (nonexistent) +++ head/sysutils/acpica-tools/files/patch-source_components_namespace_nsdump.c (revision 509084) @@ -0,0 +1,20 @@ +--- source/components/namespace/nsdump.c.orig 2019-08-16 15:01:13 UTC ++++ source/components/namespace/nsdump.c +@@ -478,7 +478,7 @@ AcpiNsDumpOneObject ( + AcpiOsPrintf (" ="); + for (i = 0; (i < ObjDesc->Buffer.Length && i < 12); i++) + { +- AcpiOsPrintf (" %.2hX", ObjDesc->Buffer.Pointer[i]); ++ AcpiOsPrintf (" %.2hhX", ObjDesc->Buffer.Pointer[i]); + } + } + AcpiOsPrintf ("\n"); +@@ -575,7 +575,7 @@ AcpiNsDumpOneObject ( + case ACPI_TYPE_LOCAL_BANK_FIELD: + case ACPI_TYPE_LOCAL_INDEX_FIELD: + +- AcpiOsPrintf (" Off %.3X Len %.2X Acc %.2hd\n", ++ AcpiOsPrintf (" Off %.3X Len %.2X Acc %.2hhd\n", + (ObjDesc->CommonField.BaseByteOffset * 8) + + ObjDesc->CommonField.StartFieldBitOffset, + ObjDesc->CommonField.BitLength, Property changes on: head/sysutils/acpica-tools/files/patch-source_components_namespace_nsdump.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property