summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2001-07-05 10:53:15 +0000
committerWez Furlong <wez@php.net>2001-07-05 10:53:15 +0000
commit4948cb1691e6b519ec53f79599e42bc2ee056931 (patch)
tree6ed5f1f6eecfda87c19b4c49f64865df7ec17202
parentca9c4b3753fe68768fca4442a8045d256fc5a914 (diff)
downloadphp-git-4948cb1691e6b519ec53f79599e42bc2ee056931.tar.gz
More ifdefs, just in case.
-rw-r--r--ext/standard/string.c10
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