diff options
author | Gisle Aas <gisle@aas.no> | 2005-03-17 20:06:40 -0800 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-04-06 20:21:51 +0000 |
commit | 5d39362b5edaf4c571d361c02cc8e01cb74667e7 (patch) | |
tree | 32ff01815f8562d8d4aed97a8052c62bc2b6b65b /INSTALL | |
parent | 9ff906c06499d2fc5c894b52d362b368266e17c3 (diff) | |
download | perl-5d39362b5edaf4c571d361c02cc8e01cb74667e7.tar.gz |
Integrate:
[ 24043]
Subject: Re: sitecustomize.pl [PATCH]
Message-ID: <lru0n9w433.fsf@caliper.activestate.com>
Adds a new command-line switch, -f, and a new optional
compile-time setting -DUSE_SITECUSTOMIZE
[ 24104]
Support for -Dusesitecustomize
[ 24105]
Simplify #24043 note now Configure can do -Dusesitecustomize
[ 24120]
Add support for USE_SITECUSTOMIZE in the Win32 makefiles
Note that this feature doesn't actually work correctly on Win32
until the problem described here is solved:
http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2005-03/msg00740.html
[ 24122]
Fix USE_SITECUSTOMIZE on Win32
This fixes the problem described in:
http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2005-03/msg00740.html
p4raw-link: @24122 on //depot/perl: f0c8bec29ec0362a1d5bd0ad2f2e00b2304ea2a8
p4raw-link: @24120 on //depot/perl: 7ada00a0afea1d7eec1411de227ec2e27211e619
p4raw-link: @24105 on //depot/perl: 36de116d52df0633b2c925a475f8b7e43ad9ac11
p4raw-link: @24104 on //depot/perl: 5f106f9c27148e746d86e2ea943381cda96398b4
p4raw-link: @24043 on //depot/perl: 20ef40cf6a00eee95a449854794854a93e411e3b
p4raw-id: //depot/maint-5.8/perl@24184
p4raw-integrated: from //depot/perl@24183 'copy in'
ext/Devel/DProf/t/DProf.t (@20269..) 'merge in' win32/win32.c
(@23200..) config_h.SH (@23674..) win32/config.bc
win32/config.gc win32/config.vc win32/config.vc64 (@23764..)
p4raw-integrated: from //depot/perl@24120 'merge in' win32/Makefile
win32/makefile.mk (@24113..)
p4raw-integrated: from //depot/perl@24105 'edit in' INSTALL (@24043..)
p4raw-integrated: from //depot/perl@24104 'merge in' Configure
(@23909..)
p4raw-integrated: from //depot/perl@24043 'merge in' pod/perlrun.pod
(@23963..) perl.c (@24003..)
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -845,6 +845,17 @@ present, at run time. Of course, you can still search other @INC directories ahead of those in APPLLIB_EXP by using any of the standard run-time methods: $PERLLIB, $PERL5LIB, -I, use lib, etc. +=item USE_SITECUSTOMIZE + +Run-time customization of @INC can be enabled with: + + sh Configure -Dusesitecustomize + +Which will define USE_SITECUSTOMIZE and $Config{usesitecustomize}. +When enabled, make perl run F<$sitelibexp/sitecustomize.pl> before +anything else. This script can then be set up to add additional +entries to @INC. + =item Man Pages In versions 5.005_57 and earlier, the default was to store module man |