-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from rurban/master
fix for non-threaded perls
- Loading branch information
Showing
5 changed files
with
33 additions
and
1,016 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,19 @@ | ||
use 5.008008; | ||
use ExtUtils::MakeMaker; | ||
# See lib/ExtUtils/MakeMaker.pm for details of how to influence | ||
# the contents of the Makefile that is written. | ||
WriteMakefile( | ||
NAME => 'AutoTest', | ||
VERSION_FROM => 'lib/AutoTest.pm', # finds $VERSION | ||
PREREQ_PM => {}, # e.g., Module::Name => 1.1 | ||
PREREQ_PM => {}, | ||
LICENSE => 'perl', | ||
OBJECT => join(" ", map {$_.'$(OBJ_EXT)'} qw(AutoTest serializer hash util)), | ||
($] >= 5.005 ? ## Add these new keywords supported since 5.005 | ||
(ABSTRACT_FROM => 'lib/AutoTest.pm', # retrieve abstract from module | ||
AUTHOR => 'A. U. Thor <bkapps@localdomain>') : ()), | ||
LIBS => [''], # e.g., '-lm' | ||
DEFINE => '', # e.g., '-DHAVE_SOMETHING' | ||
INC => '-I.', # e.g., '-I. -I/usr/include/other' | ||
OPTIMIZE => '-O0 -g3', | ||
OBJECT => 'AutoTest.o serializer.o hash.o util.o', | ||
AUTHOR => 'Masaaki Goshima <goccy54@gmail.com>', | ||
) : ()), | ||
($ExtUtils::MakeMaker::VERSION gt '6.46' ? | ||
('META_MERGE' => {resources => { | ||
license => 'http://dev.perl.org/licenses/', | ||
repository => 'https://github.com/goccy/AutoTest', | ||
}, | ||
}) : ()), | ||
INC => '-I.', | ||
); |
Oops, something went wrong.