diff options
author | Rosen Penev <rosenp@gmail.com> | 2021-07-06 20:54:09 -0700 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2021-07-11 00:24:21 -0700 |
commit | e3b89b6f5d1dc4561b3a9cba4974785d687df174 (patch) | |
tree | f21417757ab0e52cde68c5439dbbec6396d143b4 /libs/ibrcommon/Makefile | |
parent | 20d01239c7c856eaaaae1dabf5c8a8de51821351 (diff) |
ibrcommon: fix compilation with GCC11
GCC11 defaults to C++17, which does not allow throw specifiers.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'libs/ibrcommon/Makefile')
-rw-r--r-- | libs/ibrcommon/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libs/ibrcommon/Makefile b/libs/ibrcommon/Makefile index 43e26252d..b1adfd39f 100644 --- a/libs/ibrcommon/Makefile +++ b/libs/ibrcommon/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ibrcommon PKG_VERSION:=1.0.1 -PKG_RELEASE:=8 +PKG_RELEASE:=9 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://www.ibr.cs.tu-bs.de/projects/ibr-dtn/releases @@ -32,6 +32,8 @@ endef CONFIGURE_ARGS += \ --with-openssl +TARGET_CXXFLAGS += -std=c++11 + define Package/ibrcommon/description A library with common functions for C++. endef |