projects
/
p5sagit/Devel-BeginLift.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
00aef8f
)
moved .xs file to correct place, test.pl removed
Matt S Trout [Wed, 27 Jun 2007 03:08:49 +0000 (
03:08
+0000)]
Makefile.PL
patch
|
blob
|
blame
|
history
lib/Devel/BeginLift.xs
[moved from
BeginLift.xs
with 100% similarity]
patch
|
blob
|
blame
|
history
test.pl
[deleted file]
patch
|
blob
|
blame
|
history
diff --git
a/Makefile.PL
b/Makefile.PL
index
5c2e3cc
..
1ab8fa4
100644
(file)
--- a/
Makefile.PL
+++ b/
Makefile.PL
@@
-5,4
+5,6
@@
license 'perl';
author 'Matt S Trout';
all_from 'lib/Devel/BeginLift.pm';
+makemaker_args(XS => { 'lib/Devel/BeginLift.xs' => 'lib/Devel/BeginList.c' });
+
WriteMakefile;
diff --git
a/BeginLift.xs
b/lib/Devel/BeginLift.xs
similarity index 100%
rename from
BeginLift.xs
rename to
lib/Devel/BeginLift.xs
diff --git
a/test.pl
b/test.pl
deleted file mode 100644
(file)
index
8da537a
..0000000
--- a/
test.pl
+++ /dev/null
@@
-1,21
+0,0 @@
-use Devel::BeginLift 'foo';
-
-use vars qw($int);
-
-BEGIN { $int = 1 }
-
-sub foo { warn "foo: $_[0]\n"; $int++; 4; }
-
-sub bar { warn "bar: $_[0]\n"; }
-
-warn "yep\n";
-
-warn foo("foo");
-
-warn bar("bar");
-
-warn "yep2: $int\n";
-
-no Devel::BeginLift;
-
-foo();