From daf17154bf13139d9375f48525d19d6aaba08155 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sat, 2 Aug 2014 08:43:31 +0200 Subject: Imported Upstream version 3.1.2 --- xbase64/xbwincfg.h | 82 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100755 xbase64/xbwincfg.h (limited to 'xbase64/xbwincfg.h') diff --git a/xbase64/xbwincfg.h b/xbase64/xbwincfg.h new file mode 100755 index 0000000..df2d187 --- /dev/null +++ b/xbase64/xbwincfg.h @@ -0,0 +1,82 @@ +/* config file for windows environments */ + +/* Name of package */ +#define PACKAGE "xbase64" + +/* Version number of package */ +#define VERSION "3.1.2" + +/* Define if you have the ANSI C header files. */ +#define STDC_HEADERS 1 + +/* Define if you have io.h */ +#define HAVE_IO_H 1 + +/* Define if you need to have .ndx indexes */ +#define XB_INDEX_NDX 1 + +/* Define if you need to have .ntx indexes */ +#define XB_INDEX_NTX 1 + +/* Define if you need to have .cdx indexes */ +#define XB_INDEX_CDX 1 + +/* Define if you need to support memo fields */ +#define XB_MEMO_FIELDS 1 + +/* Define if you need expressions */ +#define XB_EXPRESSIONS 1 + +/* Define if you need locking support */ +#undef XB_LOCKING_ON + +/* Define if you need to turn on XBase specific debug */ +#define XBASE_DEBUG 1 + +/* Define if using real deletes */ +#define XB_REAL_DELETE 1 + +/* Define if need filters */ +#define XB_FILTERS 1 + +/* Define if you have the fcntl function. */ +#define HAVE_FCNTL 1 + +/* Define if you have the vsnprintf function. */ +//#define HAVE_VSNPRINTF 1 + +/* Define if you have the vsprintf function. */ +#define HAVE_VSPRINTF 1 + +/* Define if you have the header file. */ +#define HAVE_CTYPE_H 1 + +/* Define if you have the header file. */ +#define HAVE_FCNTL_H 1 + +/* Define if you have the header file. */ +#define HAVE_STRING_H 1 + +/* Should we include generic index support? */ +#if defined(XB_INDEX_NDX) || defined(XB_INDEX_NTX) +#define XB_INDEX_ANY 1 +#endif + +/* expressions required for indexes */ +#if defined(XB_INDEX_ANY) && !defined(XB_EXPRESSIONS) +#define XB_EXPRESSIONS 1 +#endif + +/* default memo block size */ +#define XB_DBT_BLOCK_SIZE 512 + +/* filename path separator */ +#define PATH_SEPARATOR '/' + +/* MS uses WIN32, Borland uses __WIN32__ */ +#ifdef WIN32 + #ifndef __WIN32__ + #define __WIN32__ + #endif +#endif + -- cgit v1.2.3