1 /* libjnlib-config.h - local configuration of the jnlib functions
2 * Copyright (C) 2000, 2001, 2006 Free Software Foundation, Inc.
4 * This file is part of GnuPG.
6 * GnuPG is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * GnuPG is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
23 * This header is to be included only by the files in this directory
24 * it should not be used by other modules.
27 #ifndef LIBJNLIB_CONFIG_H
28 #define LIBJNLIB_CONFIG_H
30 #include <gcrypt.h> /* gcry_malloc & Cie. */
33 /* We require support for utf-8 conversion. */
34 #define JNLIB_NEED_UTF8CONV 1
36 #ifdef USE_SIMPLE_GETTEXT
37 int set_gettext_file( const char *filename
);
38 const char *gettext( const char *msgid
);
40 # define _(a) gettext (a)
50 # define _(a) gettext (a)
52 # define N_(a) gettext_noop (a)
60 #endif /* !USE_SIMPLE_GETTEXT */
63 #define jnlib_xmalloc(a) gcry_xmalloc( (a) )
64 #define jnlib_xcalloc(a,b) gcry_xcalloc( (a), (b) )
65 #define jnlib_xrealloc(a,n) gcry_xrealloc( (a), (n) )
66 #define jnlib_xstrdup(a) gcry_xstrdup( (a) )
67 #define jnlib_free(a) gcry_free( (a) )
69 #define jnlib_log_debug log_debug
70 #define jnlib_log_info log_info
71 #define jnlib_log_error log_error
72 #define jnlib_log_fatal log_fatal
73 #define jnlib_log_bug log_bug
76 #endif /*LIBJNUTIL_CONFIG_H*/