1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

* dynload.h: Always use it for _WIN32.

* LINGUAS: Better don't have comments in this file.

* mk-w32-dist: Use utf-8 encoding for all MO files.

* simple-gettext.c: Removed windows.h.
(get_string): On the fly translation from utf-8 to active
character set.

* strgutil.c (load_libiconv) [_WIN32]: new.
(set_native_charset) [_WIN32]: Call it here and autodetect the
used code page.
(native_to_utf8, utf8_to_native): Reverted arguments for
iconv_open.
(handle_iconv_error): Made this function match iconv_open argumnet
ordering.
(utf8_to_native): Disable all quoting for DELIM == -1.
This commit is contained in:
Werner Koch 2004-10-27 16:32:51 +00:00
parent ea62673cdc
commit e216c20f40
36 changed files with 5132 additions and 5409 deletions

View file

@ -1,3 +1,7 @@
2004-10-27 Werner Koch <wk@g10code.com>
* dynload.h: Always use it for _WIN32.
2004-10-21 Werner Koch <wk@g10code.com>
* util.h [!HAVE_VASPRINTF]: Removed prototype.

View file

@ -20,7 +20,7 @@
#ifndef GNUPG_DYNLOAD_H
#define GNUPG_DYNLOAD_H
#ifdef ENABLE_CARD_SUPPORT
#if defined (ENABLE_CARD_SUPPORT) || defined(_WIN32)
#ifndef _WIN32
#include <dlfcn.h>
#else
@ -68,6 +68,6 @@ dlclose (void * hd)
}
return -1;
}
#endif /*__MINGW32__*/
#endif /*ENABLE_CARD_SUPPORT*/
#endif /*_WIN32*/
#endif /*ENABLE_CARD_SUPPORT||_WIN32*/
#endif /*GNUPG_DYNLOAD_H*/