blob: b3e338e2398152eb69280eec0e252248c01f575d (
plain)
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
#ifndef _CONFIG_H_
#define _CONFIG_H_
@TOP@
/* Define this, if you have sys/time.h */
#undef HAVE_SYS_TIME_H
/* Define this, if libc provides bind_textdomain_codeset */
#undef HAVE_BIND_TEXTDOMAIN_CODESET
/* Define this, if you have libreadline */
#undef HAVE_LIBREADLINE
/* Define this, if you have libhistory */
#undef HAVE_LIBHISTORY
/* Define if the C++ compiler supports BOOL */
#undef HAVE_BOOL
/* Define this, if you want NLS support */
#undef ENABLE_NLS
/* Define this, if you have catgets */
#undef HAVE_CATGETS
/* Define this, if you have gettext */
#undef HAVE_GETTEXT
/* Define this, if you have stpcpy */
#undef HAVE_STPCPY
/* Define this, if your locale.h defines LC_MESSAGES */
#undef HAVE_LC_MESSAGES
/* The package version */
#undef VERSION
/* The package name */
#undef PACKAGE
/* Define this to your mtab's path */
#undef MTAB_PATH
/* Define this to your temporary mtab's path */
#undef MTAB_TMP
/* Define this this if you want to prevent plpnfsd from updating mtab */
#undef DONT_UPDATE_MTAB
/* Define this to your serial device node */
#undef DDEV
/* Define this to your serial device speed */
#undef DSPEED
/* Define this to the TCP port ncpd should listen on */
#undef DPORT
/* Define this to your default drive on your Psion */
#undef DDRIVE
/* Define this to your default directory on your Psion */
#undef DBASEDIR
/* Define this to your default mountpoint for plpnfsd */
#undef DMOUNTPOINT
/* Define this to enable debugging code */
#undef DEBUG
@BOTTOM@
/* Some reasonable defaults */
#ifndef PSIONHOSTNAME
# define PSIONHOSTNAME "localhost"
#endif
/* misc tweaks */
#ifdef _IBMR2
# undef DONT_UPDATE_MTAB
# define DONT_UPDATE_MTAB /* The mount table is obtained from the kernel (!?) */
#endif
/* Disable assert macro if DEBUG is not defined */
#ifndef DEBUG
# define NDEBUG
#endif
#ifndef HAVE_BOOL
# ifndef bool
# define bool int
# endif
# ifndef true
# define true 1
# endif
# ifndef false
# define false 0
# endif
#endif
#endif /* _CONFIG_H_ */
|