-
Notifications
You must be signed in to change notification settings - Fork 12
/
Config.uk
78 lines (70 loc) · 1.5 KB
/
Config.uk
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
menuconfig LIBREDIS
bool "Redis"
default n
if LIBREDIS
# hidden
config LIBREDIS_COMMON
bool
default n
select LIBUKDEBUG
select LIBUKALLOC
select LIBUKSCHED
select LIBNEWLIBC
select LIBPOSIX_EVENT
select LIBNEWLIBC_WANT_IO_C99_FORMATS if LIBNEWLIBC
select LIBNEWLIBC_LINUX_ERRNO_EXTENSIONS if LIBNEWLIBC
select LIBPTHREAD_EMBEDDED
select LIBPOSIX_SYSINFO
select LIBPOSIX_LIBDL
select LIBPOSIX_SOCKET
select LIBPOSIX_EVENT
select LIBLWIP
select LWIP_IPV6
select LWIP_TCP_KEEPALIVE
select LWIP_TCP_TIMESTAMPS
select LIBUKRANDOM
select LIBUKRANDOM_DEVFS
select LIBMUSL
# hidden
config LIBREDIS_MAIN_FUNCTION
bool
default n
config LIBREDIS_SERVER
bool "Redis server"
default y
select LIBREDIS_COMMON
select LIBREDIS_HISTOGRAM
select LIBREDIS_HIREDIS
imply LIBREDIS_LUA
help
Build the Redis server library.
if LIBREDIS_SERVER
config LIBREDIS_SERVER_MAIN_FUNCTION
bool "Provide main function"
default n
select LIBREDIS_MAIN_FUNCTION
endif
config LIBREDIS_CLIENT
bool "Redis client"
default n
select LIBREDIS_COMMON
select LIBREDIS_HISTOGRAM
select LIBREDIS_HIREDIS
help
Build the Redis client library.
if LIBREDIS_CLIENT
config LIBREDIS_CLIENT_MAIN_FUNCTION
bool "Provide main function"
default n
select LIBREDIS_MAIN_FUNCTION
endif
config LIBREDIS_LUA
bool "Use internal Lua implementation"
default n
config LIBREDIS_HIREDIS
bool "Use internal Hiredis implementation"
default n
config LIBREDIS_HISTOGRAM
bool "Use internal Histogram implementation"
default n
endif