diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-03-05 12:12:56 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-03-05 12:12:56 +0000 |
commit | 7459f06bb5d2ce197f3e9fd16e46ba87a2ab6995 (patch) | |
tree | 65655bb68eeaef2cb39c1c2e705907184972a180 /perl.h | |
parent | f5c1e8072077f841044d944ef64ecf3a45cff725 (diff) | |
download | perl-7459f06bb5d2ce197f3e9fd16e46ba87a2ab6995.tar.gz |
Only #define PERL_DONT_CREATE_GVSV if it wasn't already defined.
p4raw-id: //depot/perl@27378
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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) |