NAME
ExtUtils::FakeConfig - overrides some configuration values
SYNOPSIS
use ExtUtils::FakeConfig cc => 'gcc', make => 'gmake';
DESCRIPTION
This module is basically an hack to be used in Makefile.PL invocation: create a driver module like
package my_Config:
use ExtUtils::FakeConfig cflags => '-lfoo -O14', ld => 'g++';
1;
and invoke
perl -Mmy_Config Makefile.PL
AUTHOR
Mattia Barbon <mbarbon@cpan.org>
LICENSE
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.