From 1a0c3c3a02da09abc11bbad291d09a41c1850d1d Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Fri, 8 Jul 2011 03:01:49 -0500 Subject: split this out into its own dist, and implement the custom opcode --- lib/smartmatch/engine/core.pm | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'lib/smartmatch/engine/core.pm') diff --git a/lib/smartmatch/engine/core.pm b/lib/smartmatch/engine/core.pm index 410c983..948152f 100644 --- a/lib/smartmatch/engine/core.pm +++ b/lib/smartmatch/engine/core.pm @@ -2,6 +2,21 @@ package smartmatch::engine::core; use strict; use warnings; use 5.010; +# ABSTRACT: default smartmatch implementation from 5.10 - 5.14 + +use parent 'DynaLoader'; + +sub dl_load_flags { 0x01 } + +__PACKAGE__->bootstrap( + # we need to be careful not to touch $VERSION at compile time, otherwise + # DynaLoader will assume it's set and check against it, which will cause + # fail when being run in the checkout without dzil having set the actual + # $VERSION + exists $smartmatch::engine::core::{VERSION} + ? ${ $smartmatch::engine::core::{VERSION} } : (), +); +smartmatch::engine::core::init(__PACKAGE__->can('match')); use B; use Carp qw(croak); -- cgit v1.2.3-54-g00ecf