From owner-svn-ports-all@freebsd.org Sat Feb 1 20:05:10 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 5E3C222A229; Sat, 1 Feb 2020 20:05:10 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4894nf1rPfz40Ng; Sat, 1 Feb 2020 20:05:10 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 395E344E3; Sat, 1 Feb 2020 20:05:10 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 011K5AdZ033662; Sat, 1 Feb 2020 20:05:10 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 011K59J3033659; Sat, 1 Feb 2020 20:05:09 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <202002012005.011K59J3033659@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Sat, 1 Feb 2020 20:05:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r524787 - in head/graphics/flasm: . files X-SVN-Group: ports-head X-SVN-Commit-Author: dinoex X-SVN-Commit-Paths: in head/graphics/flasm: . files X-SVN-Commit-Revision: 524787 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Feb 2020 20:05:10 -0000 Author: dinoex Date: Sat Feb 1 20:05:09 2020 New Revision: 524787 URL: https://svnweb.freebsd.org/changeset/ports/524787 Log: - fix build with gperf 3.1 PR: 243163 Approved by: (maintainer timeout) Added: head/graphics/flasm/files/patch-keywords.gperf (contents, props changed) head/graphics/flasm/files/patch-util.h (contents, props changed) Modified: head/graphics/flasm/Makefile Modified: head/graphics/flasm/Makefile ============================================================================== --- head/graphics/flasm/Makefile Sat Feb 1 20:00:07 2020 (r524786) +++ head/graphics/flasm/Makefile Sat Feb 1 20:05:09 2020 (r524787) @@ -2,6 +2,7 @@ PORTNAME= flasm PORTVERSION= 1.62 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= LOCAL/kuriyama \ http://www.nowrap.de/download/ Added: head/graphics/flasm/files/patch-keywords.gperf ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/flasm/files/patch-keywords.gperf Sat Feb 1 20:05:09 2020 (r524787) @@ -0,0 +1,18 @@ +--- keywords.gperf.orig 2020-01-07 17:04:30 UTC ++++ keywords.gperf +@@ -11,7 +11,7 @@ All rights reserved. See LICENSE.TXT for terms of use. + #ifdef MEMWATCH + #include "memwatch.h" + #endif +-struct keyword *in_word_set(register const char *str, register unsigned int len); ++struct keyword *in_word_set(register const char *str, register size_t len); + %} + struct keyword {} + %% +@@ -266,4 +266,4 @@ hexdata, 0, HEXDATA + off, 0, OFF + from, 0, FROM + recursion, 0, RECURSION +-timeout, 0, TIMEOUT +\ No newline at end of file ++timeout, 0, TIMEOUT Added: head/graphics/flasm/files/patch-util.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/flasm/files/patch-util.h Sat Feb 1 20:05:09 2020 (r524787) @@ -0,0 +1,11 @@ +--- util.h.orig 2020-01-07 17:07:08 UTC ++++ util.h +@@ -47,7 +47,7 @@ struct keyword { + int token; + }; + +-extern struct keyword *in_word_set(register const char *str, register unsigned int len); ++extern struct keyword *in_word_set(register const char *str, register size_t len); + + void checkByteOrder(void); + int longintCompare(const void *ap, const void *bp);