diff options
author | Nicholas Clark <nick@ccl4.org> | 2004-11-27 16:56:35 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2004-11-27 16:56:35 +0000 |
commit | 2d9d81597276b65e555df81f4c0a1e125782c0ca (patch) | |
tree | c7a1a7d073dcaa3575d331967786c2d6498c2b05 /win32 | |
parent | b17c04f34c21c46addcb48d31ee352efe59be622 (diff) | |
download | perl-2d9d81597276b65e555df81f4c0a1e125782c0ca.tar.gz |
Put Config.pm on a diet. 3K rather than 32K
configpm now generates 2 files, a small Config.pm containing the
commonly used functions and values, which AUTOLOADs a
Config_heavy.pl containing anything else needed.
The "common" values in the small Config.pm may need some
tweaking, based on real world data.
p4raw-id: //depot/perl@23554
Diffstat (limited to 'win32')
-rw-r--r-- | win32/Makefile | 2 | ||||
-rw-r--r-- | win32/makefile.mk | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/win32/Makefile b/win32/Makefile index ae2ed4c0a0..b03c1c91d5 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -447,7 +447,7 @@ MINIDIR = .\mini PERLEXE = ..\perl.exe WPERLEXE = ..\wperl.exe GLOBEXE = ..\perlglob.exe -CONFIGPM = ..\lib\Config.pm +CONFIGPM = ..\lib\Config.pm ..\Config_heavy.pl MINIMOD = ..\lib\ExtUtils\Miniperl.pm X2P = ..\x2p\a2p.exe diff --git a/win32/makefile.mk b/win32/makefile.mk index 1117f28d9a..095be64b55 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -584,7 +584,7 @@ MINIDIR = .\mini PERLEXE = ..\perl.exe WPERLEXE = ..\wperl.exe GLOBEXE = ..\perlglob.exe -CONFIGPM = ..\lib\Config.pm +CONFIGPM = ..\lib\Config.pm ..\lib\Config_heavy.pl MINIMOD = ..\lib\ExtUtils\Miniperl.pm X2P = ..\x2p\a2p.exe |