* dynload.h [__MINGW32__]: Define RTLD_LAZY.

This commit is contained in:
Werner Koch 2004-03-16 10:47:08 +00:00
parent 501267f88b
commit b541bbde6d
3 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,11 @@
2004-03-11 Werner Koch <wk@gnupg.org>
* dynload.h [__MINGW32__]: Define RTLD_LAZY.
2004-03-09 Werner Koch <wk@gnupg.org>
* maperror.c (map_assuan_err): Map the Locale_Problem item.
2004-03-03 Werner Koch <wk@gnupg.org>
* asshelp.c, asshelp.h: New.

View File

@ -25,6 +25,8 @@
#else
#include <windows.h>
#define RTLD_LAZY 0
static __inline__ void *
dlopen (const char * name, int flag)
{

View File

@ -72,9 +72,7 @@ map_assuan_err (int err)
case ASSUAN_Not_Confirmed: ec = GPG_ERR_NOT_CONFIRMED; break;
case ASSUAN_Invalid_Id: ec = GPG_ERR_INV_ID; break;
#if 0 /* FIXME: Enable this after releasing libgpg error 0.7 */
case ASSUAN_Locale_Problem: ec = GPG_ERR_LOCALE_PROBLEM; break;
#endif
default:
ec = err < 100? GPG_ERR_ASSUAN_SERVER_FAULT : GPG_ERR_ASSUAN;