pkgsrc/sysutils/p5-Mac-AppleScript-Glue/patches/patch-aa
seb ea3cae9ed8 Initial import of p5-Mac-AppleScript-Glue version 0.03 in the NetBSD
Packages Collection.

The Perl 5 module Mac::AppleScript::Glue allows you to write Perl
code in object-oriented syntax to control Mac applications. The
module does not actually execute Apple Events, but actually translates
Perl code to AppleScript code and causes it to be executed.
2010-02-18 02:56:35 +00:00

15 lines
403 B
Text

$NetBSD: patch-aa,v 1.1.1.1 2010/02/18 02:56:35 seb Exp $
Use prefered form, warning free with current Perl, for require's argument.
--- Glue.pm.orig 2002-09-15 07:48:11.000000000 +0200
+++ Glue.pm
@@ -231,7 +231,7 @@ statements that work even though they lo
use strict;
use warnings;
-require 5.6.0;
+require 5.006_000;
######################################################################