1 /* acconfig.h - used by autoheader to make config.h.in
2 * Copyright (C) 2000 Werner Koch (dd9jn)
4 * This file is part of GPGME.
6 * GPGME 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 * GPGME 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
20 #ifndef GPGME_CONFIG_H
21 #define GPGME_CONFIG_H
23 /* need this, because some autoconf tests rely on this (e.g. stpcpy)
24 * and it should be used for new programs */
26 /* To allow the use of gpgme in multithreaded programs we have to use
27 * special features from the library.
28 * IMPORTANT: gpgme is not yet fully reentrant and you should use it
29 * only from one thread. */
34 /* defined if we run on some of the PCDOS like systems (DOS, Windoze. OS/2)
35 * with special properties like no file modes */
36 #undef HAVE_DOSISH_SYSTEM
37 /* defined if the filesystem uses driver letters */
38 #undef HAVE_DRIVE_LETTERS
39 /* Some systems have a mkdir that takes a single argument. */
40 #undef MKDIR_TAKES_ONE_ARG
42 /* Path to the GnuPG binary. */
44 /* Min. needed GnuPG version. */
45 #undef NEED_GPG_VERSION
47 /* Path to the GpgSM binary. */
49 /* Min. needed GpgSM version. */
50 #undef NEED_GPGSM_VERSION
52 /* Stuff needed by jnlib. */
53 #undef HAVE_BYTE_TYPEDEF
54 #undef HAVE_USHORT_TYPEDEF
55 #undef HAVE_ULONG_TYPEDEF
56 #undef HAVE_U16_TYPEDEF
57 #undef HAVE_U32_TYPEDEF
63 /* not yet needed #include "gpgme-defs.h"*/
65 #endif /*GPGME_CONFIG_H*/