forked from rurban/optimize
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- enabled block-level register/unregister - stabilized 11-integer.t left shift test (newlib)
- Loading branch information
Reini Urban
committed
Feb 27, 2011
1 parent
5d7db4a
commit e62b489
Showing
7 changed files
with
73 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,26 @@ | ||
use 5.008; | ||
use ExtUtils::MakeMaker; | ||
WriteMakefile | ||
( | ||
'NAME' => 'optimize', | ||
'VERSION_FROM' => 'lib/optimize.pm', | ||
'PREREQ_PM' => | ||
{ | ||
'DynaLoader' => 0, | ||
'B::Generate' => '1.34' | ||
}, | ||
AUTHOR => 'Arthur Bergman', | ||
($ExtUtils::MakeMaker::VERSION gt '6.46' ? | ||
('META_MERGE' => | ||
{ | ||
resources => | ||
{ | ||
license => 'http://dev.perl.org/licenses/', | ||
repository => 'http://github.com/rurban/optimize', | ||
}, | ||
} | ||
) : ()), | ||
); | ||
|
||
sub MY::depend { "README : lib/optimize.pm\n\tpod2text lib/optimize.pm > README\n"; } | ||
|
||
use Module::Build::Compat; | ||
Module::Build::Compat->run_build_pl(args => \@ARGV); | ||
Module::Build::Compat->write_makefile(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
|
||
use Test::More tests=> 9; | ||
use Test::More tests=> 7; | ||
use optimize; | ||
|
||
package foo; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters