diff options
author | Nicholas Clark <nick@ccl4.org> | 2010-08-16 21:22:44 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2010-08-16 23:15:23 +0200 |
commit | 9a044a43520f6ecb067585bb8014f78c74717da6 (patch) | |
tree | 9195e3b864b2f7ba3a3e12f20b341d31e160a0d6 /perl.c | |
parent | b631e5c23430b9b03441d9cd4a3f7554e356910a (diff) | |
download | perl-9a044a43520f6ecb067585bb8014f78c74717da6.tar.gz |
For both opmini.o and perlmini.o define PERL_EXTERNAL_GLOB and PERL_IS_MINIPERL
Previously only opmini.o was compiled with -DPERL_EXTERNAL_GLOB, and only
perlmini.o with -DPERL_IS_MINIPERL. Add "PERL_EXTERNAL_GLOB" to the output
of (mini)perl -V if it is defined.
Diffstat (limited to 'perl.c')
-rw-r--r-- | perl.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1664,6 +1664,9 @@ S_Internals_V(pTHX_ CV *cv) # ifdef PERL_DONT_CREATE_GVSV " PERL_DONT_CREATE_GVSV" # endif +# ifdef PERL_EXTERNAL_GLOB + " PERL_EXTERNAL_GLOB" +# endif # ifdef PERL_IS_MINIPERL " PERL_IS_MINIPERL" # endif |