diff options
author | Werner Koch <[email protected]> | 2010-04-26 11:53:14 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2010-04-26 11:53:14 +0000 |
commit | 31bbe71ad6b6b35016724f1012e66c4253378530 (patch) | |
tree | 17883951b8f656b668a287b9b3fa120990f38977 /common/utf8conv.c | |
parent | Decryption and signi via agent is now implemented. (diff) | |
download | gnupg-31bbe71ad6b6b35016724f1012e66c4253378530.tar.gz gnupg-31bbe71ad6b6b35016724f1012e66c4253378530.zip |
Fix preference setting in new keys
Diffstat (limited to 'common/utf8conv.c')
-rw-r--r-- | common/utf8conv.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/common/utf8conv.c b/common/utf8conv.c index 6cbe4e92c..4ad514247 100644 --- a/common/utf8conv.c +++ b/common/utf8conv.c @@ -62,6 +62,10 @@ static int (* __stdcall iconv_close) (iconv_t cd); static int load_libiconv (void) { +#ifdef HAVE_W32CE_SYSTEM + return -1; /* FIXME No libiconv yet - Need to investigate whether it + is at all required. */ +#else static int done; if (!done) @@ -94,6 +98,7 @@ load_libiconv (void) } } return iconv_open? 0: -1; +#endif } #endif /*HAVE_W32_SYSTEM*/ |