-
Notifications
You must be signed in to change notification settings - Fork 3
/
conf.h.win32
93 lines (62 loc) · 2.35 KB
/
conf.h.win32
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/* this is a conf.h file to be used with Win32 type operating systems
* it is adapted from the UNIX conf.h by hand */
/* Define to empty if the keyword does not work. */
/* #undef const */
/* Define if you don't have vprintf but do have _doprnt. */
/* #undef HAVE_DOPRNT */
/* Define if you have the vprintf function. */
#define HAVE_VPRINTF 1
/* Define as __inline if that's what the C compiler calls it. */
/* #undef inline */
/* Define as the return type of signal handlers (int or void). */
#define RETSIGTYPE void
/* Define if you have the ANSI C header files. */
#define STDC_HEADERS 1
/* Define if your <sys/time.h> declares struct tm. */
/* #undef TM_IN_SYS_TIME */
/* define if the code is compiled on a UNIX machine */
/* #undef CK_GENERIC */
/* define if the code is compiled on a Win32 machine */
#define CK_Win32 1
/* Define if you have the <fcntl.h> header file. */
#define HAVE_FCNTL_H 1
/* Define if you have the <limits.h> header file. */
#define HAVE_LIMITS_H 1
/* Define if you have the <pthread.h> header file. */
#define HAVE_PTHREAD_H 1
/* Define if you have the <sgtty.h> header file. */
#define HAVE_SGTTY_H 1
/* Define if you have the <sys/file.h> header file. */
#define HAVE_SYS_FILE_H 1
/* Define if you have the <sys/ioctl.h> header file. */
#define HAVE_SYS_IOCTL_H 1
/* Define if you have the <sys/time.h> header file. */
#define HAVE_SYS_TIME_H 1
/* Define if you have the <termio.h> header file. */
#define HAVE_TERMIO_H 1
/* Define if you have the <unistd.h> header file. */
/* #undef HAVE_UNISTD_H */
/* Name of package */
#define PACKAGE "gpkcs11"
/* Version number of package */
#define VERSION "0.5.5"
/* activate and set level of debugging */
/* #undef DEBUG */
/* turn of system assertions */
#define NDEBUG 1
/* activate and set level of debugging */
/* #undef USE_ASSERT */
/* version of OpenSSL which libcrypto is used */
#define CRYPTO_LIB_VERSION 0.9.4
/* major version number of cryptoki that this implements */
#define CRYPTOKI_VERSION_MAJOR 2
/* minor version number of cryptoki that this implements */
#define CRYPTOKI_VERSION_MINOR 01
/* major version number of gpkcs11 */
#define LIBRARY_VERSION_MAJOR 0
/* minor version number og gpkcs11 */
#define LIBRARY_VERSION_MINOR 5
/* patch level of gpkcs11 */
#define TC_LIB_VERSION 5
/* use an pkcs-11 extension in the OpenSSL lib */
/* #undef HAVE_SC_OPENSSL */