summaryrefslogtreecommitdiffstats
path: root/rules/mariadb.in
blob: 06cf4b9ad5814c3d4295706028a6b5d642f27e0a (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
## SECTION=mysql

config MARIADB
	tristate
	select HOST_CMAKE
	select HOST_MARIADB
	select LIBC_CRYPT
	select LIBC_DL
	select LIBC_M
	select LIBC_PTHREAD
	select LIBC_RT
	select GCCLIBS_CXX
	select GCCLIBS_GCC_S
	select LIBAIO
	select LIBPCRE
	select NCURSES
	select SYSTEMD		if MARIADB_SYSTEMD
	select ZLIB
	select ROOTFS_VAR_LIB	if RUNTIME
	prompt "mariadb" if ALLYES
	help
	  MariaDB, a SQL database engine

	  Note: on a read-only root filesystem this package still requires a
	  writable '/var/lib' for the database.

if MARIADB

config MARIADB_SYSTEMD
	bool
	depends on INITMETHOD_SYSTEMD
	default y
	prompt "systemd support"

endif