From: Nicholas Clark Date: Sun, 5 Mar 2006 12:12:56 +0000 (+0000) Subject: Only #define PERL_DONT_CREATE_GVSV if it wasn't already defined. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7459f06bb5d2ce197f3e9fd16e46ba87a2ab6995;p=p5sagit%2Fp5-mst-13.2.git Only #define PERL_DONT_CREATE_GVSV if it wasn't already defined. p4raw-id: //depot/perl@27378 --- diff --git a/perl.h b/perl.h index 797a7c3..c7807b4 100644 --- a/perl.h +++ b/perl.h @@ -823,7 +823,9 @@ int usleep(unsigned int); /* We no longer default to creating a new SV for GvSV. Do this before embed. */ #ifndef PERL_CREATE_GVSV -#define PERL_DONT_CREATE_GVSV +# ifndef PERL_DONT_CREATE_GVSV +# define PERL_DONT_CREATE_GVSV +# endif #endif #if !defined(HAS_WAITPID) && !defined(HAS_WAIT4) || defined(HAS_WAITPID_RUNTIME)