The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
ChangeLog 04
META.yml 11
Makefile.PL 10
TRE.pm 11
4 files changed (This is a version diff) 36
@@ -1,3 +1,7 @@
+2008-02-18  Ævar Arnfjörð Bjarmason  <avar@cpan.org> (0.03)
+
+	* Makefile.PL: Linked to -lpcre removed (kill/yank code in 0.02)
+
 2008-02-12  Ævar Arnfjörð Bjarmason  <avar@cpan.org> (0.02)
 
 	* TRE.xs: set rx->offs[i].start/end to -1 if there aren't any
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                re-engine-TRE
-version:             0.02
+version:             0.03
 abstract:            TRE regular expression engine
 license:             perl
 author:              
@@ -7,7 +7,6 @@ WriteMakefile(
     VERSION_FROM  => 'TRE.pm',
     ABSTRACT_FROM => 'TRE.pm',
     LICENSE       => 'perl',
-    LIBS          => [ '-lpcre' ],
     DIR           => [ 'tre' ],
     INC           => '-Itre',
     LDDLFLAGS     => '-shared tre/*.o',
@@ -7,7 +7,7 @@ our @ISA = 'Regexp';
 
 BEGIN
 {
-    $VERSION = '0.02';
+    $VERSION = '0.03';
     XSLoader::load __PACKAGE__, $VERSION;
 }