From 10c562bc3ccaaa440189f279ca562327612f87c6 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Thu, 26 Nov 2009 09:49:58 +0100 Subject: [PATCH] Dont enable 64-bit on Windows --- include/yaz/nmem.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/yaz/nmem.h b/include/yaz/nmem.h index 39c47eb..8e49fee 100644 --- a/include/yaz/nmem.h +++ b/include/yaz/nmem.h @@ -43,8 +43,14 @@ YAZ_BEGIN_CDECL /** \brief NMEM handle (an opaque pointer to memory) */ typedef struct nmem_control *NMEM; +#ifdef _MSC_VER +#define NMEM_64 0 +#endif + /** \brief Set to 1 if YAZ BER integer is 64-bit ; 0 otherwise */ +#ifndef NMEM_64 #define NMEM_64 1 +#endif #if NMEM_64 /** \brief BER/utility integer (64-bit or more) */ -- 1.7.10.4