diff options
author | Nicholas Clark <nick@ccl4.org> | 2011-07-18 17:26:09 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2011-07-18 17:26:09 +0200 |
commit | eba804b9d4475c6d8d4728933792c5b7ca90fbf5 (patch) | |
tree | 289c825d7aac2cf922adcd382623a3aeba35fa92 /perl.h | |
parent | f8115845454eee301b4615a45e01bf1bc6b816d4 (diff) | |
download | perl-eba804b9d4475c6d8d4728933792c5b7ca90fbf5.tar.gz |
PL_bincompat_options was missing options that affect the interpreter struct.
It had most, but not all, C pre-processor options that change the size of the
interpreter struct.
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -4629,12 +4629,24 @@ EXTCONST char PL_bincompat_options[] = # ifdef FAKE_THREADS " FAKE_THREADS" # endif +# ifdef FCRYPT + " FCRYPT" +# endif +# ifdef HAS_TIMES + " HAS_TIMES" +# endif +# ifdef HAVE_INTERP_INTERN + " HAVE_INTERP_INTERN" +# endif # ifdef MULTIPLICITY " MULTIPLICITY" # endif # ifdef MYMALLOC " MYMALLOC" # endif +# ifdef PERLIO_LAYERS + " PERLIO_LAYERS" +# endif # ifdef PERL_DEBUG_READONLY_OPS " PERL_DEBUG_READONLY_OPS" # endif @@ -4650,6 +4662,9 @@ EXTCONST char PL_bincompat_options[] = # ifdef PERL_MAD " PERL_MAD" # endif +# ifdef PERL_MICRO + " PERL_MICRO" +# endif # ifdef PERL_NEED_APPCTX " PERL_NEED_APPCTX" # endif @@ -4689,6 +4704,12 @@ EXTCONST char PL_bincompat_options[] = # ifdef USE_LARGE_FILES " USE_LARGE_FILES" # endif +# ifdef USE_LOCALE_COLLATE + " USE_LOCALE_COLLATE" +# endif +# ifdef USE_LOCALE_NUMERIC + " USE_LOCALE_NUMERIC" +# endif # ifdef USE_LONG_DOUBLE " USE_LONG_DOUBLE" # endif |