Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 20 Apr 2015 17:37:20 +0000 (UTC)
From:      Mathieu Arnold <mat@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r384375 - head/net-mgmt/wmi-client/files
Message-ID:  <201504201737.t3KHbKfC083868@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mat
Date: Mon Apr 20 17:37:20 2015
New Revision: 384375
URL: https://svnweb.freebsd.org/changeset/ports/384375

Log:
  Fix build with Perl 5.21.1+
  
  "defined(@array)" and "defined(%hash)" are now fatal errors
      These have been deprecated since v5.6.1 and have raised deprecation
      warnings since v5.16.
  
  With hat:	perl@
  Sponsored by:	Absolight

Added:
  head/net-mgmt/wmi-client/files/patch-Samba_source_pidl_pidl   (contents, props changed)

Added: head/net-mgmt/wmi-client/files/patch-Samba_source_pidl_pidl
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/wmi-client/files/patch-Samba_source_pidl_pidl	Mon Apr 20 17:37:20 2015	(r384375)
@@ -0,0 +1,11 @@
+--- Samba/source/pidl/pidl.orig	2008-07-30 19:44:55 UTC
++++ Samba/source/pidl/pidl
+@@ -580,7 +580,7 @@ sub process_file($)
+ 		require Parse::Pidl::IDL;
+ 
+ 		$pidl = Parse::Pidl::IDL::parse_file($idl_file, \@opt_incdirs);
+-		defined @$pidl || die "Failed to parse $idl_file";
++		@$pidl || die "Failed to parse $idl_file";
+ 		require Parse::Pidl::Typelist;
+ 		Parse::Pidl::Typelist::LoadIdl($pidl);
+ 	}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201504201737.t3KHbKfC083868>