From 326df0e414a6f6440a4eac4a69f4ced7246f97ba Mon Sep 17 00:00:00 2001 From: Sebastian Kemper Date: Sun, 18 Feb 2018 10:07:16 +0100 Subject: [PATCH] net/yate: Disable RTTI Yate is the only package in OpenWrt which manually enables RTTI (run-time type information). There's no explanation in the Makefile as to why that would be needed or advisable. Remove it. Signed-off-by: Sebastian Kemper --- net/yate/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/net/yate/Makefile b/net/yate/Makefile index 72d898e..b89e899 100644 --- a/net/yate/Makefile +++ b/net/yate/Makefile @@ -98,7 +98,6 @@ CONFIGURE_ARGS+= \ --disable-wanpipe \ --enable-ilbc \ $(if $(CONFIG_PACKAGE_$(PKG_NAME)-mod-ilbcwebrtc),--enable-ilbc-webrtc,--disable-ilbc-webrtc) \ - --enable-rtti \ $(if $(CONFIG_PACKAGE_$(PKG_NAME)-mod-pgsqldb),--with-libpq="$(STAGING_DIR)/usr",--without-libpq) \ $(if $(CONFIG_PACKAGE_$(PKG_NAME)-mod-mysqldb),--with-mysql="$(STAGING_DIR)/usr",--without-mysql) \ --without-wphwec \