You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.6 KiB

Index: Regexp-Keep-0.02/Keep.xs
--- Regexp-Keep-0.02/Keep.xs.orig 2004-05-07 19:23:36 +0200
+++ Regexp-Keep-0.02/Keep.xs 2008-08-01 19:58:19 +0200
@@ -11,4 +11,4 @@
KEEP()
PROTOTYPE:
CODE:
- PL_regstartp[0] = PL_reginput - PL_bostr;
+ PL_reg_state.re_state_regoffs[0].start = PL_reginput - PL_bostr;
Index: re-engine-Lua-0.05/Makefile.PL
--- re-engine-Lua-0.05/Makefile.PL.orig 2008-08-01 19:58:20 +0200
+++ re-engine-Lua-0.05/Makefile.PL 2008-08-01 19:59:12 +0200
@@ -12,12 +12,10 @@
# t/
build_requires 'Config' => 0;
build_requires 'XSLoader' => 0;
-build_requires 'Test::More' => 0;
-build_requires 'Test::Warn' => 0;
-build_requires 'Test::Exception' => 0;
#tests 't/*.t t/*/*.t';
tests 't/*.t';
auto_install;
WriteAll;
+
Index: re-engine-PCRE-0.15/Makefile.PL
--- re-engine-PCRE-0.15/Makefile.PL.orig 2007-12-19 00:38:26 +0100
+++ re-engine-PCRE-0.15/Makefile.PL 2008-08-01 19:58:19 +0200
@@ -7,5 +7,6 @@
VERSION_FROM => 'PCRE.pm',
ABSTRACT_FROM => 'PCRE.pm',
LICENSE => 'perl',
- LIBS => [ '-lpcre' ],
+ INC => `pcre-config --cflags`,
+ LIBS => [ `pcre-config --libs` ],
);
Index: re-engine-TRE-0.04/Makefile.PL
--- re-engine-TRE-0.04/Makefile.PL.orig 2008-02-18 12:11:31 +0100
+++ re-engine-TRE-0.04/Makefile.PL 2008-08-01 19:58:19 +0200
@@ -8,6 +8,6 @@
ABSTRACT_FROM => 'TRE.pm',
LICENSE => 'perl',
DIR => [ 'tre' ],
- INC => '-Itre',
- LDDLFLAGS => '-shared tre/*.o',
+ INC => `pkg-config tre --cflags`,
+ LDDLFLAGS => [ `pkg-config tre --libs` ]
);