summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Signes <rjbs@cpan.org>2014-04-23 21:53:23 -0400
committerRicardo Signes <rjbs@cpan.org>2014-05-12 10:56:46 -0400
commit9e776d3b36b5e23629499cfe9e611d90be5149c6 (patch)
tree0a002a245dfb4d50980d2c4fd0b60eb4fd09b8cf
parent4cf68109b6b961805f4de4b77a33a1ee77bc64bd (diff)
downloadperl-9e776d3b36b5e23629499cfe9e611d90be5149c6.tar.gz
perldelta: correct Configure args for COW
-rw-r--r--Porting/perl5200delta.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/Porting/perl5200delta.pod b/Porting/perl5200delta.pod
index 7eddc1b8dc..171039afbf 100644
--- a/Porting/perl5200delta.pod
+++ b/Porting/perl5200delta.pod
@@ -413,11 +413,11 @@ This feature was already available in 5.18.0, but wasn't enabled by
default. It is the default now, and so you no longer need build perl with
the F<Configure> argument:
- -Accflags=PERL_NEW_COPY_ON_WRITE
+ -Accflags=-DPERL_NEW_COPY_ON_WRITE
It can be disabled (for now) in a perl build with:
- -Accflags=PERL_NO_COW
+ -Accflags=-DPERL_NO_COW
On some operating systems Perl can be compiled in such a way that any
attempt to modify string buffers shared by multiple SVs will crash. This