forked from mobydeck/atch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.h
More file actions
29 lines (24 loc) · 657 Bytes
/
Copy pathconfig.h
File metadata and controls
29 lines (24 loc) · 657 Bytes
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
#define HAVE_LIBUTIL 1
#ifdef __APPLE__
#define HAVE_UTIL_H 1
#else
#define HAVE_PTY_H 1
#endif
#define HAVE_SYS_IOCTL_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_UNISTD_H 1
#define PACKAGE_NAME "atch"
#ifndef PACKAGE_VERSION
#define PACKAGE_VERSION "dev"
#endif
#define PACKAGE_URL "https://github.com/mobydeck/atch"
#define RETSIGTYPE void
/* In-memory scrollback ring buffer size — must be a power of two */
#ifndef SCROLLBACK_SIZE
#define SCROLLBACK_SIZE (128 * 1024)
#endif
/* Maximum size of the on-disk session log; older bytes are trimmed on open */
#ifndef LOG_MAX_SIZE
#define LOG_MAX_SIZE (1024 * 1024)
#endif