diff options
author | Melvyn Sopacua <msopacua@php.net> | 2003-05-27 00:42:39 +0000 |
---|---|---|
committer | Melvyn Sopacua <msopacua@php.net> | 2003-05-27 00:42:39 +0000 |
commit | e4006659b21109c54efec42dbabb04e5028f7c0f (patch) | |
tree | b33ec5906b6ea8dc8551532d3b6dea347e0c9150 | |
parent | 119e15018922f2569cccbe438eadb1da69651294 (diff) | |
download | php-git-e4006659b21109c54efec42dbabb04e5028f7c0f.tar.gz |
MFB: LC_MESSAGES support
-rw-r--r-- | ext/standard/string.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/standard/string.c b/ext/standard/string.c index a004e1cc2e..ed2e47e299 100644 --- a/ext/standard/string.c +++ b/ext/standard/string.c @@ -37,6 +37,9 @@ #ifdef HAVE_MONETARY_H # include <monetary.h> #endif +#ifdef HAVE_LIBINTL +# include <libintl.h> /* For LC_MESSAGES */ +#endif #include <math.h> |