diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-02-18 13:47:28 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-02-18 18:41:01 +1100 |
commit | 2a3a86a86f3d1ab97adda563beda7ee35f6a2414 (patch) | |
tree | 38b9f9b9818482cdfe6ecdb9ee797fe2f3531e7d /lib/util/charset/wscript_build | |
parent | 5155a5f5c130ff5b71ce4e37877378a6967046b4 (diff) | |
download | samba-2a3a86a86f3d1ab97adda563beda7ee35f6a2414.tar.gz samba-2a3a86a86f3d1ab97adda563beda7ee35f6a2414.tar.bz2 samba-2a3a86a86f3d1ab97adda563beda7ee35f6a2414.zip |
lib/util/charcnv Move iconv handle setup in common
We now use the struct smb_iconv_convenience at the core of all our
iconv code, and use global_iconv_convenience for the callers that
don't specify one.
Andrew Bartlett
Diffstat (limited to 'lib/util/charset/wscript_build')
-rw-r--r-- | lib/util/charset/wscript_build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/util/charset/wscript_build b/lib/util/charset/wscript_build index 18479a9978..7dcd189036 100644 --- a/lib/util/charset/wscript_build +++ b/lib/util/charset/wscript_build @@ -4,7 +4,7 @@ if bld.env._SAMBA_BUILD_ == 4: bld.SAMBA_SUBSYSTEM('CHARSET', source='charcnv.c util_unistr.c', - public_deps='ICONV_WRAPPER CODEPOINTS', + public_deps='CODEPOINTS', public_headers='charset.h', ) @@ -14,5 +14,5 @@ bld.SAMBA_SUBSYSTEM('ICONV_WRAPPER', bld.SAMBA_SUBSYSTEM('CODEPOINTS', source='codepoints.c', - deps='DYNCONFIG' + deps='DYNCONFIG ICONV_WRAPPER' ) |