~ubuntu-branches/ubuntu/precise/gnupg2/precise-updates

« back to all changes in this revision

Viewing changes to jnlib/libjnlib-config.h

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Mueller
  • Date: 2005-03-29 10:30:32 UTC
  • Revision ID: james.westby@ubuntu.com-20050329103032-sj42n2ain3ipx310
Tags: upstream-1.9.15
ImportĀ upstreamĀ versionĀ 1.9.15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* libjnlib-config.h - local configuration of the jnlib functions
 
2
 *      Copyright (C) 2000, 2001 Free Software Foundation, Inc.
 
3
 *
 
4
 * This file is part of GnuPG.
 
5
 *
 
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.
 
10
 *
 
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.
 
15
 *
 
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
 
19
 */
 
20
 
 
21
/****************
 
22
 * This header is to be included only by the files in this directory
 
23
 * it should not be used by other modules.
 
24
 */
 
25
 
 
26
#ifndef LIBJNLIB_CONFIG_H
 
27
#define LIBJNLIB_CONFIG_H
 
28
 
 
29
#include <gcrypt.h> /* gcry_malloc & Cie. */
 
30
#include "logging.h"
 
31
 
 
32
#ifdef USE_SIMPLE_GETTEXT
 
33
  int set_gettext_file( const char *filename );
 
34
  const char *gettext( const char *msgid );
 
35
 
 
36
  #define _(a) gettext (a)
 
37
  #define N_(a) (a)
 
38
 
 
39
#else
 
40
#ifdef HAVE_LOCALE_H
 
41
  #include <locale.h>
 
42
#endif
 
43
 
 
44
#ifdef ENABLE_NLS
 
45
  #include <libintl.h>
 
46
  #define _(a) gettext (a)
 
47
  #ifdef gettext_noop
 
48
    #define N_(a) gettext_noop (a)
 
49
  #else
 
50
    #define N_(a) (a)
 
51
  #endif
 
52
#else
 
53
  #define _(a) (a)
 
54
  #define N_(a) (a)
 
55
#endif
 
56
#endif /* !USE_SIMPLE_GETTEXT */
 
57
 
 
58
 
 
59
#define jnlib_xmalloc(a)    gcry_xmalloc( (a) )
 
60
#define jnlib_xcalloc(a,b)  gcry_xcalloc( (a), (b) )
 
61
#define jnlib_xrealloc(a,n) gcry_xrealloc( (a), (n) )
 
62
#define jnlib_xstrdup(a)    gcry_xstrdup( (a) )
 
63
#define jnlib_free(a)       gcry_free( (a) )
 
64
 
 
65
#define jnlib_log_debug    log_debug
 
66
#define jnlib_log_info     log_info
 
67
#define jnlib_log_error    log_error
 
68
#define jnlib_log_fatal    log_fatal
 
69
#define jnlib_log_bug      log_bug
 
70
 
 
71
 
 
72
#endif /*LIBJNUTIL_CONFIG_H*/