mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
https://github.com/LINBIT/drbd-utils/blob/v9.34.0/ChangeLog Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
37 lines
993 B
Makefile
37 lines
993 B
Makefile
################################################################################
|
|
#
|
|
# drbd-utils
|
|
#
|
|
################################################################################
|
|
|
|
DRBD_UTILS_VERSION = 9.34.0
|
|
DRBD_UTILS_SITE = http://pkg.linbit.com/downloads/drbd/utils
|
|
DRBD_UTILS_LICENSE = GPL-2.0+
|
|
DRBD_UTILS_LICENSE_FILES = COPYING
|
|
DRBD_UTILS_SELINUX_MODULES = drbd
|
|
DRBD_UTILS_DEPENDENCIES = host-flex
|
|
|
|
DRBD_UTILS_CONF_OPTS = --with-distro=generic --without-manual
|
|
|
|
ifeq ($(BR2_INIT_SYSTEMD),y)
|
|
DRBD_UTILS_CONF_OPTS += --with-initscripttype=systemd
|
|
DRBD_UTILS_DEPENDENCIES += systemd
|
|
else
|
|
DRBD_UTILS_CONF_OPTS += --with-initscripttype=sysv
|
|
endif
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS)$(BR2_TOOLCHAIN_HAS_SYNC_1),yy)
|
|
DRBD_UTILS_CONF_OPTS += --with-drbdmon
|
|
else
|
|
DRBD_UTILS_CONF_OPTS += --without-drbdmon
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_HAS_UDEV),y)
|
|
DRBD_UTILS_CONF_OPTS += --with-udev=yes
|
|
DRBD_UTILS_DEPENDENCIES += udev
|
|
else
|
|
DRBD_UTILS_CONF_OPTS += --with-udev=no
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|