b56083099f
Switch _SITE to github:80264a2631
Mysql support was fixed with83d1d88dc4
there 0001-fix-static-build-with-mysql.patch can be removed. Build-tested using this defconfig http://autobuild.buildroot.net/results/2df/2dfcbd30079d13997de37e2d1c4643653e200be6 mentioned in https://git.buildroot.net/buildroot/commit/package/linknx?id=f35f54585f9e63400bdbd9c9ba2b9fd67be538ea After removing the mysql patch autoreconf is not needed anymore, therefore we can remove the libcurl dependency which was only added to fix autoreconf: https://git.buildroot.net/buildroot/commit/package/linknx?id=e1c9a2349006e657e76dff35706a774376921fb7 LINKNX_CREATE_MISSING_FILES is also not needed anymore after commitef04c6d128
Renumbered remaining patch. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
29 lines
726 B
Makefile
29 lines
726 B
Makefile
################################################################################
|
|
#
|
|
# linknx
|
|
#
|
|
################################################################################
|
|
|
|
LINKNX_VERSION = 0.0.1.33
|
|
LINKNX_SITE = $(call github,linknx,linknx,$(LINKNX_VERSION))
|
|
LINKNX_LICENSE = GPL-2.0+
|
|
LINKNX_INSTALL_STAGING = YES
|
|
LINKNX_CONF_OPTS = \
|
|
--without-lua \
|
|
--without-log4cpp \
|
|
--without-pth-test \
|
|
--with-pth=$(STAGING_DIR)/usr \
|
|
--disable-smtp
|
|
|
|
LINKNX_DEPENDENCIES = libpthsem \
|
|
$(if $(BR2_PACKAGE_ARGP_STANDALONE),argp-standalone)
|
|
|
|
ifeq ($(BR2_PACKAGE_MYSQL),y)
|
|
LINKNX_CONF_OPTS += --with-mysql=$(STAGING_DIR)/usr
|
|
LINKNX_DEPENDENCIES += mysql
|
|
else
|
|
LINKNX_CONF_OPTS += --without-mysql
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|