ibrdtn-tools: fix compilation with GCC11
throw() is not supported with C++17. Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
parent
77e696ccdc
commit
20d01239c7
1 changed files with 3 additions and 1 deletions
|
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
|||
|
||||
PKG_NAME:=ibrdtn-tools
|
||||
PKG_VERSION:=1.0.1
|
||||
PKG_RELEASE:=3
|
||||
PKG_RELEASE:=4
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=http://www.ibr.cs.tu-bs.de/projects/ibr-dtn/releases
|
||||
|
@ -36,6 +36,8 @@ endef
|
|||
CONFIGURE_ARGS += \
|
||||
--without-libdaemon
|
||||
|
||||
TARGET_CXXFLAGS += -std=c++11
|
||||
|
||||
define Package/ibrdtn-tools/install
|
||||
$(INSTALL_DIR) $(1)/usr/bin/
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/dtnping $(1)/usr/bin/dtnping
|
||||
|
|
Loading…
Reference in a new issue