]> git.vpit.fr Git - perl/modules/re-engine-Hooks.git/blobdiff - README
Update VPIT::TestHelpers to 15e8aee3
[perl/modules/re-engine-Hooks.git] / README
diff --git a/README b/README
index 812b41dfa25c92584927b2f8919a3f05af291c3f..c708a09e5a1e1e384e20cec28d966e0e7d669271 100644 (file)
--- a/README
+++ b/README
@@ -3,7 +3,7 @@ NAME
     engine.
 
 VERSION
-    Version 0.02
+    Version 0.05
 
 SYNOPSIS
     In your XS file :
@@ -14,8 +14,8 @@ SYNOPSIS
          ...
         }
 
-        STATIC void dri_exec_hook(pTHX_ regexp *rx, regnode *node,
-                                  regmatch_info *info, regmatch_state *state) {
+        STATIC void dri_exec_node_hook(pTHX_
+           regexp *rx, regnode *node, regmatch_info *info, regmatch_state *state) {
          ...
         }
 
@@ -41,7 +41,7 @@ SYNOPSIS
         use re::engine::Hooks; # Before loading our own shared library
 
         BEGIN {
-         $VERSION = '0.02';
+         $VERSION = '0.01';
          require DynaLoader;
          push @ISA, 'DynaLoader';
          __PACKAGE__->bootstrap($VERSION);
@@ -80,7 +80,7 @@ C API
 
         typedef void (*reh_comp_node_hook)(pTHX_ regexp *, regnode *);
 
-  "reh_exec_hook"
+  "reh_exec_node_hook"
     The typedef for the regexp node_execution phase hook. Currently
     evaluates to :
 
@@ -128,7 +128,11 @@ EXAMPLES
     distribution. It implements a couple of simple examples.
 
 DEPENDENCIES
-    perl 5.10.1.
+    Any stable release of perl since 5.10.1, or a development release of
+    perl from the 5.19 branch.
+
+    A C compiler. This module may happen to build with a C++ compiler as
+    well, but don't rely on it, as no guarantee is made in this regard.
 
     ExtUtils::Depends.
 
@@ -153,7 +157,7 @@ SUPPORT
         perldoc re::engine::Hooks
 
 COPYRIGHT & LICENSE
-    Copyright 2012 Vincent Pit, all rights reserved.
+    Copyright 2012,2013 Vincent Pit, all rights reserved.
 
     This program is free software; you can redistribute it and/or modify it
     under the same terms as Perl itself.