~ubuntu-branches/ubuntu/karmic/gnupg2/karmic-updates

« back to all changes in this revision

Viewing changes to util/libutil-config.h

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Urlichs
  • Date: 2006-01-24 04:31:42 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060124043142-pbg192or6qxv3yk2
Tags: 1.9.20-1
* New Upstream version. Closes:#306890,#344530
  * Closes:#320490: gpg-protect-tool fails to decrypt PKCS-12 files 
* Depend on libopensc2-dev, not -1-. Closes:#348106

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* libutil-config.h - configuration of the libutil functions
 
2
 *      Copyright (C) 1999 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 LIBUTIL_CONFIG_H
 
27
#define LIBUTIL_CONFIG_H
 
28
 
 
29
#define LIBUTIL_CONFIG_OF_GNUPG 1  /* currently we need this kludge */
 
30
 
 
31
#include <sys/types.h>
 
32
 
 
33
#ifndef HAVE_BYTE_TYPEDEF
 
34
  #undef byte       /* (this matches the test used by configure) */
 
35
  typedef unsigned char byte;
 
36
  #define HAVE_BYTE_TYPEDEF
 
37
#endif
 
38
 
 
39
#include "types.h"
 
40
#include "memory.h"
 
41
#include "util.h"
 
42
#include "i18n.h"
 
43
 
 
44
#define libutil_xmalloc(a)   m_alloc( (a) )
 
45
#define libutil_realloc(a,n) m_realloc( (a), (n) )
 
46
#define libutil_strdup(a)    m_strdup( (a) )
 
47
#define libutil_free(a)      m_free( (a) )
 
48
 
 
49
#define libutil_log_debug    log_debug
 
50
#define libutil_log_info     log_info
 
51
#define libutil_log_error    log_error
 
52
#define libutil_log_fatal    log_fatal
 
53
#define libutil_log_bug      log_bug
 
54
 
 
55
 
 
56
#endif /*LIBUTIL_CONFIGH*/