diff options
-rw-r--r-- | ext/standard/string.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ext/standard/string.c b/ext/standard/string.c index 24d1f9de31..9991f8e36d 100644 --- a/ext/standard/string.c +++ b/ext/standard/string.c @@ -346,11 +346,21 @@ PHP_MINIT_FUNCTION(nl_langinfo) #ifdef THOUSEP REGISTER_NL_LANGINFO_CONSTANT(THOUSEP); #endif +#ifdef GROUPING REGISTER_NL_LANGINFO_CONSTANT(GROUPING); +#endif +#ifdef YESEXPR REGISTER_NL_LANGINFO_CONSTANT(YESEXPR); +#endif +#ifdef NOEXPR REGISTER_NL_LANGINFO_CONSTANT(NOEXPR); +#endif +#ifdef YESSTR REGISTER_NL_LANGINFO_CONSTANT(YESSTR); +#endif +#ifdef NOSTR REGISTER_NL_LANGINFO_CONSTANT(NOSTR); +#endif #ifdef CODESET REGISTER_NL_LANGINFO_CONSTANT(CODESET); #endif |