From: Nicholas Clark Date: Mon, 28 Sep 2009 16:51:49 +0000 (+0100) Subject: Move XSLoader from ext/ to dist/ X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=710e07e27761e9989c10a90b08bcfb94284b9806;p=p5sagit%2Fp5-mst-13.2.git Move XSLoader from ext/ to dist/ --- diff --git a/MANIFEST b/MANIFEST index b06e697..f3ce266 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1233,6 +1233,9 @@ dist/threads/t/stress_cv.t Test with multiple threads, coderef cv argument. dist/threads/t/stress_re.t Test with multiple threads, string cv argument and regexes. dist/threads/t/stress_string.t Test with multiple threads, string cv argument. dist/threads/t/thread.t General ithread tests from thr5005 +dist/XSLoader/Makefile.PL Dynamic Loader makefile writer +dist/XSLoader/t/XSLoader.t See if XSLoader works +dist/XSLoader/XSLoader_pm.PL Simple XS Loader perl module djgpp/config.over DOS/DJGPP port djgpp/configure.bat DOS/DJGPP port djgpp/djgpp.c DOS/DJGPP port @@ -3177,9 +3180,6 @@ ext/XS-APItest/t/svpeek.t XS::APItest extension ext/XS-APItest/t/svsetsv.t Test behaviour of sv_setsv with/without PERL_CORE ext/XS-APItest/t/xs_special_subs_require.t for require too ext/XS-APItest/t/xs_special_subs.t Test that XS BEGIN/CHECK/INIT/END work -ext/XSLoader/Makefile.PL Dynamic Loader makefile writer -ext/XSLoader/t/XSLoader.t See if XSLoader works -ext/XSLoader/XSLoader_pm.PL Simple XS Loader perl module ext/XS-Typemap/Makefile.PL XS::Typemap extension ext/XS-Typemap/README XS::Typemap extension ext/XS-Typemap/stdio.c XS::Typemap extension diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index da8eaa1..9542da3 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -1717,7 +1717,7 @@ use File::Glob qw(:case); { 'MAINTAINER' => 'saper', 'DISTRIBUTION' => 'SAPER/XSLoader-0.10.tar.gz', - 'FILES' => q[ext/XSLoader], + 'FILES' => q[dist/XSLoader], 'EXCLUDED' => [ qr{^eg/}, qw{t/pod.t t/podcover.t diff --git a/ext/XSLoader/.gitignore b/dist/XSLoader/.gitignore similarity index 100% rename from ext/XSLoader/.gitignore rename to dist/XSLoader/.gitignore diff --git a/ext/XSLoader/Makefile.PL b/dist/XSLoader/Makefile.PL similarity index 100% rename from ext/XSLoader/Makefile.PL rename to dist/XSLoader/Makefile.PL diff --git a/ext/XSLoader/XSLoader_pm.PL b/dist/XSLoader/XSLoader_pm.PL similarity index 100% rename from ext/XSLoader/XSLoader_pm.PL rename to dist/XSLoader/XSLoader_pm.PL diff --git a/ext/XSLoader/t/XSLoader.t b/dist/XSLoader/t/XSLoader.t similarity index 100% rename from ext/XSLoader/t/XSLoader.t rename to dist/XSLoader/t/XSLoader.t