2020-01-25 06:46:17 +01:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# gensio
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2021-03-24 13:36:04 +01:00
|
|
|
GENSIO_VERSION = 2.2.4
|
2020-02-12 19:06:53 +01:00
|
|
|
GENSIO_SITE = http://downloads.sourceforge.net/project/ser2net/ser2net
|
2020-01-25 06:46:17 +01:00
|
|
|
GENSIO_LICENSE = LGPL-2.1+ (library), GPL-2.0+ (tools)
|
|
|
|
GENSIO_LICENSE_FILES = COPYING.LIB COPYING
|
|
|
|
GENSIO_INSTALL_STAGING = YES
|
|
|
|
GENSIO_CONF_OPTS = \
|
|
|
|
--without-openipmi \
|
|
|
|
--without-swig \
|
|
|
|
--without-python
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
2020-01-28 23:20:45 +01:00
|
|
|
GENSIO_DEPENDENCIES += host-pkgconf openssl
|
|
|
|
GENSIO_CONF_OPTS += --with-openssl
|
|
|
|
else
|
|
|
|
GENSIO_CONF_OPTS += --without-openssl
|
2020-01-25 06:46:17 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
|
|
|
|
GENSIO_CONF_OPTS += --with-pthreads
|
|
|
|
else
|
|
|
|
GENSIO_CONF_OPTS += --without-pthreads
|
|
|
|
endif
|
|
|
|
|
|
|
|
$(eval $(autotools-package))
|