diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-06-22 10:40:26 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-06-23 13:47:27 +0200 |
commit | 4d2c56c4b1a4f846b44f24c6f73e1b95fdf3a9bb (patch) | |
tree | 9bb31b76650a6cbe558bfa2d357396220fc94abc /source3/configure.in | |
parent | fb3d5ade9d3f935a69834aaee0046a54dbf38ca1 (diff) | |
download | samba-4d2c56c4b1a4f846b44f24c6f73e1b95fdf3a9bb.tar.gz |
s3-net: Bind our gettext results to 'unix charset'
This ensures that the translations and any embedded strings are in the
same charset. It won't be the one from the user's locale (we no
longer auto-detect that), but it will be self-consistent.
Thanks to Steve Langasek for pointing this function out!
Andrew Bartlett
Diffstat (limited to 'source3/configure.in')
-rw-r--r-- | source3/configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in index d0f841f0171..814c7356d2a 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -1100,7 +1100,7 @@ AC_CHECK_HEADERS(sys/mman.h) # setbuffer, shmget, shm_open are needed for smbtorture AC_CHECK_FUNCS(shmget shm_open) AC_CHECK_FUNCS(gettext dgettext) -AC_CHECK_FUNCS(bindtextdomain textdomain) +AC_CHECK_FUNCS(bindtextdomain textdomain bind_textdomain_codeset) AC_CHECK_FUNCS(strupr) # Find a method of generating a stack trace |