/usr/include/xbase64/xbwincfg.h is in libxbase64-dev 3.1.2-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /* 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 <ctype.h> header file. */
#define HAVE_CTYPE_H 1
/* Define if you have the <fcntl.h> header file. */
#define HAVE_FCNTL_H 1
/* Define if you have the <string.h> 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
|