diff options
author | Jan Dubois <jand@activestate.com> | 2010-07-21 18:28:33 -0700 |
---|---|---|
committer | Jan Dubois <jand@activestate.com> | 2010-07-21 18:28:33 -0700 |
commit | cfef31b27d1a56cda74e23698243f3be70bd9cb3 (patch) | |
tree | a24c515a115b3500922a6f9654ce3596fb828e64 /win32 | |
parent | b6c85593a554a961f8d6994f7e4c5551a0a5eb2c (diff) | |
download | perl-cfef31b27d1a56cda74e23698243f3be70bd9cb3.tar.gz |
Get rid of PERL_POLLUTE
PERL_POLLUTE was added (but undefined by default) in 5.6 to optionally
expose older 5.005 symbols for backwards compatibility. It's use was
always discouraged, and MakeMaker contains a more specific escape hatch:
perl Makefile.PL POLLUTE=1
This can be used for modules that have not been upgraded to 5.6 naming
conventions (and really should be completely obsolete by now).
Diffstat (limited to 'win32')
-rw-r--r-- | win32/Makefile | 10 | ||||
-rw-r--r-- | win32/makefile.mk | 10 |
2 files changed, 0 insertions, 20 deletions
diff --git a/win32/Makefile b/win32/Makefile index 33d920c4a5..500d42afbb 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -204,16 +204,6 @@ BUILDOPT = $(BUILDOPTEXTRA) #BUILDOPT = $(BUILDOPT) -DNO_HASH_SEED # -# This should normally be disabled. Adding -DPERL_POLLUTE enables support -# for old symbols by default, at the expense of extreme pollution. You most -# probably just want to build modules that won't compile with -# perl Makefile.PL POLLUTE=1 -# instead of enabling this. Please report such modules to the respective -# authors. -# -#BUILDOPT = $(BUILDOPT) -DPERL_POLLUTE - -# # This should normally be disabled. Enabling it will disable the File::Glob # implementation of CORE::glob. # diff --git a/win32/makefile.mk b/win32/makefile.mk index 27837729b0..c7053ffb99 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -258,16 +258,6 @@ BUILDOPT *= $(BUILDOPTEXTRA) #BUILDOPT += -DNO_HASH_SEED # -# This should normally be disabled. Adding -DPERL_POLLUTE enables support -# for old symbols by default, at the expense of extreme pollution. You most -# probably just want to build modules that won't compile with -# perl Makefile.PL POLLUTE=1 -# instead of enabling this. Please report such modules to the respective -# authors. -# -#BUILDOPT += -DPERL_POLLUTE - -# # This should normally be disabled. Enabling it will disable the File::Glob # implementation of CORE::glob. # |