diff options
author | Bruno Randolf <br1@einfach.org> | 2014-09-26 11:16:20 +0100 |
---|---|---|
committer | Bruno Randolf <br1@einfach.org> | 2014-09-26 12:18:56 +0100 |
commit | 7bab6e0995f1c9cdb707bd715dd45852ba1f1ff0 (patch) | |
tree | 1a6552e3aa307a86d279ad407f6eea3daa97d800 /net/horst | |
parent | 27a99783ffc5539933c391af671ef317df7c4ee6 (diff) |
horst: update to version 4.1
4.1 has an important bugfix for platforms (such as ARM cns3xxx) where "char"
does not default to "signed char" and other bugfixes.
Also build with debugging enabled (-D flag) to enable debugging, the size
increase is just +336B (on platform au1000).
Diffstat (limited to 'net/horst')
-rw-r--r-- | net/horst/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/horst/Makefile b/net/horst/Makefile index 22ff4f2b0..116e68146 100644 --- a/net/horst/Makefile +++ b/net/horst/Makefile @@ -8,14 +8,14 @@ include $(TOPDIR)/rules.mk PKG_NAME:=horst -PKG_VERSION:=4.0 +PKG_VERSION:=4.1 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-git.tar.gz PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) PKG_SOURCE_URL:=git://br1.einfach.org/horst PKG_SOURCE_PROTO:=git -PKG_SOURCE_VERSION:=version-4.0 +PKG_SOURCE_VERSION:=version-$(PKG_VERSION) PKG_MAINTAINER:=Bruno Randolf <br1@einfach.org> PKG_LICENSE:=GPL-2.0+ @@ -25,6 +25,8 @@ PKG_BUILD_PARALLEL:=1 include $(INCLUDE_DIR)/package.mk +MAKE_FLAGS += DEBUG=1 + define Package/horst SECTION:=net CATEGORY:=Network |