mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 21:43:30 +08:00
db3a039e27
Signed-off-by: James Hilliard <james.hilliard1@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
30 lines
810 B
Makefile
30 lines
810 B
Makefile
################################################################################
|
|
#
|
|
# ser2net
|
|
#
|
|
################################################################################
|
|
|
|
SER2NET_VERSION = 4.3.8
|
|
SER2NET_SITE = https://downloads.sourceforge.net/project/ser2net/ser2net
|
|
SER2NET_LICENSE = GPL-2.0+
|
|
SER2NET_LICENSE_FILES = COPYING
|
|
SER2NET_DEPENDENCIES = gensio libyaml
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
|
|
SER2NET_CONF_OPTS += --with-pthreads
|
|
else
|
|
SER2NET_CONF_OPTS += --without-pthreads
|
|
endif
|
|
|
|
# fix gensio detection with openssl enabled
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
SER2NET_CONF_ENV += LIBS="`$(PKG_CONFIG_HOST_BINARY) --libs openssl`"
|
|
endif
|
|
|
|
define SER2NET_INSTALL_INIT_SYSV
|
|
$(INSTALL) -D -m 755 package/ser2net/S50ser2net \
|
|
$(TARGET_DIR)/etc/init.d/S50ser2net
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|