Skip to content

Commit

Permalink
0.54_01: import Fcntl constants for flock
Browse files Browse the repository at this point in the history
Bareword "LOCK_EX" not allowed while "strict subs" in use at ../blib/lib/Inline.pm line 861
  • Loading branch information
Reini Urban committed Apr 4, 2014
1 parent f195ee2 commit 96f0092
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions C/Makefile.PL
Expand Up @@ -36,8 +36,8 @@ Inline::C is packaged with Inline.pm because it is the most commonly used
Inline Language Support Module (ILSM).
See also: Inline::ASM, ::Awk, ::BC, ::Basic, ::Befunge, ::CPP (C++), ::CPR,
::Foo, ::Guile, ::Java, ::Octave, ::PERL, ::Python, ::Ruby, ::TT,
::Tcl and ::WebChat.
::Filters, ::Foo, ::Guile, ::Java, ::Octave, ::PERL, ::Python, ::Ruby,
::TT, ::Tcl and ::WebChat.
Config.pm indicates that your version of Perl was built with this C compiler:
Expand Down
3 changes: 2 additions & 1 deletion Inline.pm
Expand Up @@ -2,7 +2,7 @@ package Inline;

use strict;
require 5.006;
$Inline::VERSION = '0.54';
$Inline::VERSION = '0.54_01';
$Inline::VERSION = eval $Inline::VERSION;

use AutoLoader 'AUTOLOAD';
Expand All @@ -12,6 +12,7 @@ use Carp;
use Cwd qw(abs_path cwd);
use File::Spec;
use File::Spec::Unix;
use Fcntl qw(LOCK_EX LOCK_UN);

my %CONFIG = ();
my @DATA_OBJS = ();
Expand Down

0 comments on commit 96f0092

Please sign in to comment.