mirror of
https://github.com/openwrt/packages.git
synced 2025-02-07 04:39:51 +00:00
When looping through addrinfo lists in AddrsMatch, keep a copy of the original addrinfo pointers to free instead of ending up at the terminating NULLs and trying to free those. OpenWRT uses musl in which freeaddrinfo(NULL) is not safe (which is fine, it's not required by the spec) so this fixes a segfault. Signed-off-by: Darren Tucker <dtucker@dtucker.net>
84 lines
2.6 KiB
Makefile
84 lines
2.6 KiB
Makefile
#
|
|
# Copyright (C) 2017 Bjørn Mork <bjorn@mork.no>
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=conserver
|
|
PKG_VERSION:=8.2.6
|
|
PKG_RELEASE:=3
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://codeload.github.com/conserver/conserver/tar.gz/v$(PKG_VERSION)?
|
|
PKG_HASH:=1c8b86f123d2d8e3ce568b782087b43dfac9cf6ffd5a9bdfcfdc6718d749a923
|
|
|
|
PKG_MAINTAINER:=Bjørn Mork <bjorn@mork.no>
|
|
PKG_LICENSE:=BSD-3-Clause
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
PKG_FIXUP:=autoreconf
|
|
PKG_INSTALL:=1
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/conserver
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=Connect multiple user to a serial console with logging
|
|
URL:=http://www.conserver.com/
|
|
DEPENDS:=+libopenssl
|
|
endef
|
|
|
|
define Package/conserver/description
|
|
Conserver is an application that allows multiple users to watch a
|
|
serial console at the same time. It can log the data, allows users
|
|
to take write-access of a console (one at a time), and has a
|
|
variety of bells and whistles to accentuate that basic
|
|
functionality. The idea is that conserver will log all your serial
|
|
traffic so you can go back and review why something crashed, look
|
|
at changes (if done on the console), or tie the console logs into a
|
|
monitoring system (just watch the logfiles it creates). With
|
|
multi-user capabilities you can work on equipment with others,
|
|
mentor, train, etc. It also does all that client-server stuff so
|
|
that, assuming you have a network connection, you can interact with
|
|
any of the equipment from home or wherever.
|
|
endef
|
|
|
|
define Package/conserver/conffiles
|
|
/etc/conserver/conserver.cf
|
|
/etc/conserver/conserver.passwd
|
|
/etc/conserver/console.cf
|
|
endef
|
|
|
|
CONFIGURE_ARGS += \
|
|
--with-openssl \
|
|
$(if $(CONFIG_IPV6),--with-ipv6) \
|
|
--sysconfdir=/etc/conserver \
|
|
--with-port=3109 \
|
|
--with-logfile=/var/log/conserver/server.log
|
|
|
|
define Build/Prepare
|
|
$(call Build/Prepare/Default)
|
|
$(CP) ./files/config.sub $(PKG_BUILD_DIR)/
|
|
$(CP) ./files/config.guess $(PKG_BUILD_DIR)/
|
|
endef
|
|
|
|
define Package/conserver/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/conserver $(1)/usr/sbin/
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/console $(1)/usr/bin/
|
|
$(INSTALL_DIR) $(1)/etc/conserver
|
|
$(INSTALL_CONF) ./files/conserver.cf $(1)/etc/conserver/
|
|
$(INSTALL_CONF) ./files/console.cf $(1)/etc/conserver/
|
|
touch $(1)/etc/conserver/conserver.passwd
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/conserver.init $(1)/etc/init.d/conserver
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,conserver))
|