945fd1360e
Also update the download URL. This patch fixes many autobuild failures because drbd-utils packages older than 8.9.9 are no longer provided by linbit.com. Fixes: http://autobuild.buildroot.net/results/a6d61c7ca8e505509d84869f072d812da79e949a http://autobuild.buildroot.net/results/53ea7cfc57d912377b566474b15a47ffc077b047 http://autobuild.buildroot.net/results/3a6d7a384e6558156695b6ac46754976f4db7652 http://autobuild.buildroot.net/results/0576b80240ba439f7c2842a58e8bd418199e6100 http://autobuild.buildroot.net/results/3f9db30f18b58a6258acb5dfb9301936e5e05bf6 Signed-off-by: Christophe Vu-Brugier <cvubrugier@fastmail.fm> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
30 lines
799 B
Makefile
30 lines
799 B
Makefile
################################################################################
|
|
#
|
|
# drbd-utils
|
|
#
|
|
################################################################################
|
|
|
|
DRBD_UTILS_VERSION = 9.2.0
|
|
DRBD_UTILS_SITE = http://www.linbit.com/downloads/drbd/utils
|
|
DRBD_UTILS_LICENSE = GPL-2.0+
|
|
DRBD_UTILS_LICENSE_FILES = COPYING
|
|
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_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))
|