From owner-svn-ports-head@FreeBSD.ORG Mon Apr 20 13:53:40 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 57BC0ABD; Mon, 20 Apr 2015 13:53:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2DA79669; Mon, 20 Apr 2015 13:53:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3KDre33005594; Mon, 20 Apr 2015 13:53:40 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3KDrdQr005592; Mon, 20 Apr 2015 13:53:39 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201504201353.t3KDrdQr005592@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 20 Apr 2015 13:53:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r384360 - head/games/acm/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Apr 2015 13:53:40 -0000 Author: mat Date: Mon Apr 20 13:53:39 2015 New Revision: 384360 URL: https://svnweb.freebsd.org/changeset/ports/384360 Log: Fix build with Perl 5.21.1+ Omitting % and @ on hash and array names is no longer permitted Really old Perl let you omit the @ on array names and the % on hash names in some spots. This has issued a deprecation warning since Perl 5.0, and is no longer permitted. With hat: perl@ Sponsored by: Absolight Added: head/games/acm/files/patch-dis_data_create-tables-4 (contents, props changed) head/games/acm/files/patch-dis_data_create-tables-5 (contents, props changed) Added: head/games/acm/files/patch-dis_data_create-tables-4 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/acm/files/patch-dis_data_create-tables-4 Mon Apr 20 13:53:39 2015 (r384360) @@ -0,0 +1,19 @@ +--- dis/data/create-tables-4.orig 1996-01-04 17:20:34 UTC ++++ dis/data/create-tables-4 +@@ -36,7 +36,7 @@ while () { + @last_a = @a; + + } +-dbmclose (entities); ++dbmclose (%entities); + close (ENTITIES); + + open (SITES, "./sites"); +@@ -51,6 +51,6 @@ while () { + $sites{$key} = $a[1]; + } + } +-dbmclose (sites); ++dbmclose (%sites); + close (ENTITIES); + Added: head/games/acm/files/patch-dis_data_create-tables-5 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/acm/files/patch-dis_data_create-tables-5 Mon Apr 20 13:53:39 2015 (r384360) @@ -0,0 +1,19 @@ +--- dis/data/create-tables-5.orig 1996-01-04 17:20:40 UTC ++++ dis/data/create-tables-5 +@@ -38,7 +38,7 @@ while () { + @last_a = @a; + + } +-dbmclose (entities); ++dbmclose (%entities); + close (ENTITIES); + + open (SITES, "./sites"); +@@ -53,6 +53,6 @@ while () { + $sites{$key} = $a[1]; + } + } +-dbmclose (sites); ++dbmclose (%sites); + close (ENTITIES); +