aboutsummaryrefslogtreecommitdiff
path: root/utils/telldus-core
diff options
context:
space:
mode:
authorRosen Penev <rosenp@gmail.com>2019-05-12 00:38:50 -0700
committerRosen Penev <rosenp@gmail.com>2019-05-12 00:40:27 -0700
commit654d857536fb63d3672e159107a3cbf42709be3c (patch)
tree24b335bbd922f0227fbf9ab6694340fb7c5a3425 /utils/telldus-core
parent6d6bceed8cf6d38a98d6464cdb62a513ba6554f9 (diff)
telldus-core: Fix compilation with full NLS
-fpermissive is needed due to mismatching parameters (const char vs char). Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'utils/telldus-core')
-rw-r--r--utils/telldus-core/Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/utils/telldus-core/Makefile b/utils/telldus-core/Makefile
index 0dbe28f0f..ea3ba6ff5 100644
--- a/utils/telldus-core/Makefile
+++ b/utils/telldus-core/Makefile
@@ -1,4 +1,4 @@
-#
+#
# Copyright (C) 2010 Telldus Technologies AB
#
# This is free software, licensed under the GNU General Public License v2.
@@ -7,10 +7,10 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=telldus-core
PKG_VERSION:=2.1.2
-PKG_RELEASE:=1
+PKG_RELEASE:=2
PKG_LICENSE:=LGPL-2.1
-PKG_BUILD_DEPENDS:=argp-standalone
+PKG_BUILD_DEPENDS:=argp-standalone
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://download.telldus.com/TellStick/Software/telldus-core/
PKG_HASH:=a20f6c74814afc23312d2c93ebbb37fdea9deaaee05ae7b6a6275e11e4662014
@@ -40,6 +40,8 @@ CMAKE_OPTIONS+=\
-DGENERATE_MAN=0 \
-DICONV_LIBRARY=-liconv
+TARGET_CXXFLAGS += -fpermissive
+
define Package/telldus-core/conffiles
/etc/tellstick.conf
endef