File: acconfig.h

package info (click to toggle)
libxbase 2.0.0-8.2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 2,456 kB
  • ctags: 2,128
  • sloc: cpp: 15,115; sh: 6,819; makefile: 165; ansic: 35
file content (87 lines) | stat: -rw-r--r-- 1,865 bytes parent folder | download | duplicates (6)
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
/* $Id: acconfig.h,v 1.2 2001/06/26 19:38:28 dbryson Exp $ */

/* Define if the C++ compiler supports BOOL */
#undef HAVE_BOOL

/* defines if having libgif (always 1) */
#undef HAVE_LIBGIF

/* defines if having libjpeg (always 1) */
#undef HAVE_LIBJPEG

/* defines which to take for ksize_t */
#undef ksize_t

/* define if you have setenv */
#undef HAVE_FUNC_SETENV

/* Define to 1 if NLS is requested.  */
#undef ENABLE_NLS

/* Define as 1 if you have the stpcpy function.  */
#undef HAVE_STPCPY

/* Define if your locale.h file contains LC_MESSAGES.  */
#undef HAVE_LC_MESSAGES    

/* Define if you need the GNU extensions to compile */
#undef _GNU_SOURCE

/* Define if you need to have .ndx indexes */
#undef XB_INDEX_NDX

/* Define if you need to have .ntx indexes */
#undef XB_INDEX_NTX

/* Define if you need to support memo fields */
#undef XB_MEMO_FIELDS

/* Define if you need expressions */
#undef XB_EXPRESSIONS

/* Define if you need html support */
#undef XB_HTML

/* Define if you need locking support */
#undef XB_LOCKING_ON

/* Define if you need to turn on XBase specific debug */
#undef XBASE_DEBUG

/* Define if your compiler support exceptions */
#undef HAVE_EXCEPTIONS

/* Define if you want Castellano (Spanish) Dates */
#undef XB_CASTELLANO

/* Define if using real deletes */
#undef XB_REAL_DELETE

/* Define if need filters */
#undef XB_FILTERS


@BOTTOM@

/* 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 '/'

#ifndef HAVE_BOOL
#define HAVE_BOOL 1
typedef int bool;
const bool false = 0;
const bool true = 1;
#endif