Imported Upstream version 0.18

This commit is contained in:
Mario Fetka
2017-09-15 15:16:18 +02:00
commit ac16e136c6
35 changed files with 6895 additions and 0 deletions

23
Makefile.PL Normal file
View File

@@ -0,0 +1,23 @@
use strict;
use lib '.';
use inc::Module::Install;
name ('CGI-Cookie-XS');
license ('perl');
author ('Agent Zhang <agentzh@yahoo.cn>');
perl_version ('5.006001');
all_from ('lib/CGI/Cookie/XS.pm');
repository ('http://github.com/agentzh/cookiexs/tree/master');
cc_inc_paths '.';
cc_files (glob("*.c"), (-e 'XS.c' ? () : 'XS.c'));
cc_optimize_flags '-g3';
can_cc or die "This module requires a C compiler";
#build_requires ('Test::More');
requires ('Filter::Util::Call');
use_test_base();
auto_install();
WriteAll();