summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorTomasz Konojacki <me@xenu.pl>2021-06-04 22:05:04 +0200
committerxenu <me@xenu.pl>2021-06-09 19:32:14 +0200
commit6e512bc2beef5b8b17502db7edf50b5984776318 (patch)
treeedaaaa9d096a12cf43b5620afa8712a8951c1472 /win32
parent44e4059baf939468ae61cb63c0c2871c40147dc3 (diff)
downloadperl-6e512bc2beef5b8b17502db7edf50b5984776318.tar.gz
replace all instances of PERL_IMPLICIT_CONTEXT with MULTIPLICITY
Since the removal of PERL_OBJECT (acfe0abcedaf592fb4b9cb69ce3468308ae99d91) PERL_IMPLICIT_CONTEXT and MULTIPLICITY have been synonymous and they're being used interchangeably. To simplify the code, this commit replaces all instances of PERL_IMPLICIT_CONTEXT with MULTIPLICITY. PERL_IMPLICIT_CONTEXT will stay defined for compatibility with XS modules.
Diffstat (limited to 'win32')
-rw-r--r--win32/GNUmakefile2
-rw-r--r--win32/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/win32/GNUmakefile b/win32/GNUmakefile
index d466826da6..14494c7df9 100644
--- a/win32/GNUmakefile
+++ b/win32/GNUmakefile
@@ -338,7 +338,7 @@ BUILDOPT += -DUSE_SITECUSTOMIZE
endif
ifneq ($(USE_MULTI),undef)
-BUILDOPT += -DPERL_IMPLICIT_CONTEXT
+BUILDOPT += -DMULTIPLICITY
endif
ifneq ($(USE_IMP_SYS),undef)
diff --git a/win32/Makefile b/win32/Makefile
index 545b742e47..040ec35507 100644
--- a/win32/Makefile
+++ b/win32/Makefile
@@ -314,7 +314,7 @@ BUILDOPT = $(BUILDOPT) -DUSE_SITECUSTOMIZE
!ENDIF
!IF "$(USE_MULTI)" != "undef"
-BUILDOPT = $(BUILDOPT) -DPERL_IMPLICIT_CONTEXT
+BUILDOPT = $(BUILDOPT) -DMULTIPLICITY
!ENDIF
!IF "$(USE_IMP_SYS)" != "undef"