-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix build process again with new file layout
- Loading branch information
1 parent
5edad7c
commit 13b9925
Showing
15 changed files
with
30 additions
and
60 deletions.
There are no files selected for viewing
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -3,14 +3,22 @@ use ExtUtils::MakeMaker; | |
|
||
WriteMakefile( | ||
'NAME' => 'Cache::FastMmap', | ||
'VERSION_FROM' => 'Cache/FastMmap.pm', | ||
'ABSTRACT_FROM' => 'Cache/FastMmap.pm', | ||
'VERSION_FROM' => 'lib/Cache/FastMmap.pm', | ||
'ABSTRACT_FROM' => 'lib/Cache/FastMmap.pm', | ||
'AUTHOR' => 'Rob Mueller <[email protected]>', | ||
'PREREQ_PM' => { | ||
'Storable' => 0, | ||
}, | ||
'DIR' => [ | ||
'Cache/FastMmap' | ||
], | ||
'LIBS' => [''], | ||
'INC' => '-I.', | ||
'OBJECT' => 'CImpl.o mmap_cache.o ' . ($^O eq 'MSWin32' ? 'win32.o' : 'unix.o'), | ||
# 'OPTIMIZE' => '-g -DDEBUG -ansi -pedantic', | ||
); | ||
|
||
package MY; | ||
|
||
sub constants { | ||
$_[0]->{DLBASE} = "CImpl"; | ||
$_[0]->{FULLEXT} = "Cache/FastMmap/CImpl"; | ||
return shift->SUPER::constants(); | ||
} |
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
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.