diff options
author | Jan Dubois <jand@activestate.com> | 2010-12-07 13:57:10 -0800 |
---|---|---|
committer | Jan Dubois <jand@activestate.com> | 2010-12-07 14:21:12 -0800 |
commit | f36626324a6d43051a06d5a6d634a7e98042725b (patch) | |
tree | c3ef1f572b2304ff23d42e2fa5800fdf3f187ccb /win32/Makefile | |
parent | 9cef83062267e94311e1fd8744396e440642738e (diff) | |
download | perl-f36626324a6d43051a06d5a6d634a7e98042725b.tar.gz |
Don't advertise PERL_HASH_SEED_EXPLICIT and NO_HASH_SEED
These (commented out) options had been advertised/documented in the
Makefile to make it easy to produce binary compatible builds of
Perl 5.8.x after the hash key randomization feature was introduced.
There is no reason to point out these customization option in
a prominent space.
Diffstat (limited to 'win32/Makefile')
-rw-r--r-- | win32/Makefile | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/win32/Makefile b/win32/Makefile index b1680cb82a..dbae5f2001 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -184,16 +184,6 @@ CCLIBDIR = $(CCHOME)\lib BUILDOPT = $(BUILDOPTEXTRA) # -# Adding -DPERL_HASH_SEED_EXPLICIT will disable randomization of Perl's -# internal hash function unless the PERL_HASH_SEED environment variable is set. -# Alternatively, adding -DNO_HASH_SEED will completely disable the -# randomization feature. -# The latter is required to maintain binary compatibility with Perl 5.8.0. -# -#BUILDOPT = $(BUILDOPT) -DPERL_HASH_SEED_EXPLICIT -#BUILDOPT = $(BUILDOPT) -DNO_HASH_SEED - -# # This should normally be disabled. Enabling it will disable the File::Glob # implementation of CORE::glob. # |