aboutsummaryrefslogtreecommitdiff
path: root/pkcs11-helper-config.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--pkcs11-helper-config.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/pkcs11-helper-config.h b/pkcs11-helper-config.h
index b8ea778..5cb6852 100644
--- a/pkcs11-helper-config.h
+++ b/pkcs11-helper-config.h
@@ -43,12 +43,6 @@
#ifdef PKCS11H_ENABLE_HELPER
-#if defined(WIN32)
-#include "cryptoki-win32.h"
-#else
-#include "cryptoki.h"
-#endif
-
#include "error.h"
#include "misc.h"
#include "ssl.h"
@@ -62,6 +56,8 @@
#define PKCS11_LOG_WARN M_WARN
#define PKCS11_LOG_ERROR M_FATAL
+#undef PKCS11_USE_CYGWIN
+
#if !defined(false)
#define false 0
#endif
@@ -81,5 +77,11 @@
#define PKCS11_PRM_OBJ_TYPE "--pkcs11-id-type"
#define PKCS11_PRM_OBJ_ID "--pkcs11-id"
+#if defined(WIN32) || defined(PKCS11_USE_CYGWIN)
+#include "cryptoki-win32.h"
+#else
+#include "cryptoki.h"
+#endif
+
#endif /* PKCS11H_ENABLE_HELPER */
#endif /* __PKCS11_HELPER_CONFIG_H */