2007-05-19 Marcus Brinkmann <marcus@g10code.de>
[gnupg.git] / jnlib / libjnlib-config.h
blob4554b9d1a0765b82e7437d6a30394e4066948342
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 JNLIB.
6 * JNLIB is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU Lesser General Public License as
8 * published by the Free Software Foundation; either version 2.1 of
9 * the License, or (at your option) any later version.
11 * JNLIB is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 * 02110-1301, USA.
22 /****************
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. */
31 #include "logging.h"
33 /* We require support for utf-8 conversion. */
34 #define JNLIB_NEED_UTF8CONV 1
37 /* Gettext stuff */
38 #ifdef USE_SIMPLE_GETTEXT
39 int set_gettext_file( const char *filename );
40 const char *gettext( const char *msgid );
42 # define _(a) gettext (a)
43 # define N_(a) (a)
45 #else
46 #ifdef HAVE_LOCALE_H
47 # include <locale.h>
48 #endif
50 #ifdef ENABLE_NLS
51 # include <libintl.h>
52 # define _(a) gettext (a)
53 # ifdef gettext_noop
54 # define N_(a) gettext_noop (a)
55 # else
56 # define N_(a) (a)
57 # endif
58 #else
59 # define _(a) (a)
60 # define N_(a) (a)
61 #endif
62 #endif /* !USE_SIMPLE_GETTEXT */
64 /* Malloc functions to be jused by jnlib. */
65 #define jnlib_xmalloc(a) gcry_xmalloc( (a) )
66 #define jnlib_xcalloc(a,b) gcry_xcalloc( (a), (b) )
67 #define jnlib_xrealloc(a,n) gcry_xrealloc( (a), (n) )
68 #define jnlib_xstrdup(a) gcry_xstrdup( (a) )
69 #define jnlib_free(a) gcry_free( (a) )
71 /* Logging functions to be jused by jnlib. */
72 #define jnlib_log_debug log_debug
73 #define jnlib_log_info log_info
74 #define jnlib_log_error log_error
75 #define jnlib_log_fatal log_fatal
76 #define jnlib_log_bug log_bug
79 #endif /*LIBJNUTIL_CONFIG_H*/