Repository : ssh://git@open-mesh.org/openwrt-feed-alfred
On branch : master
commit af3317216d9e0f920900df8b1d074fb13c317b30 Author: Simon Wunderlich sw@simonwunderlich.de Date: Wed Jan 15 20:18:59 2014 +0100
alfred: bump version to 2014.0.0
bump alfred to version 2014.0.0. From the CHANGELOG:
* add installation of the alfred-gpsd manpage * add -lm to linker flags for libgps in alfred-gpsd
Signed-off-by: Simon Wunderlich sw@simonwunderlich.de
af3317216d9e0f920900df8b1d074fb13c317b30 alfred/Makefile | 6 ++-- ...ed-gpsd-add-lm-to-linker-flags-for-libgps.patch | 33 -------------------- 2 files changed, 3 insertions(+), 36 deletions(-)
diff --git a/alfred/Makefile b/alfred/Makefile index 3d70246..fd88e06 100644 --- a/alfred/Makefile +++ b/alfred/Makefile @@ -11,9 +11,9 @@ include $(TOPDIR)/rules.mk # The latest alfred git hash in PKG_REV can be obtained from http://git.open-mesh.org/alfred.git # PKG_NAME:=alfred -PKG_VERSION:=2013.4.0 -PKG_RELEASE:=3 -PKG_REV:=67e0d7e9cad9f1e2143925183da64a14ab28eb0f +PKG_VERSION:=2014.0.0 +PKG_RELEASE:=0 +PKG_REV:=7f451ec2ca7140f446b655797c9666673f34b343
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_RELEASE).tar.gz PKG_SOURCE_URL:=git://git.open-mesh.org/alfred.git diff --git a/alfred/patches/0001-alfred-gpsd-add-lm-to-linker-flags-for-libgps.patch b/alfred/patches/0001-alfred-gpsd-add-lm-to-linker-flags-for-libgps.patch deleted file mode 100644 index 3be7169..0000000 --- a/alfred/patches/0001-alfred-gpsd-add-lm-to-linker-flags-for-libgps.patch +++ /dev/null @@ -1,33 +0,0 @@ -From dbaaf2b294af120e42a0e95644640b128044a568 Mon Sep 17 00:00:00 2001 -From: Simon Wunderlich sw@simonwunderlich.de -Date: Wed, 23 Oct 2013 01:17:36 +0200 -Subject: [PATCH] alfred-gpsd: add -lm to linker flags for libgps - -Appearently applications using libgps must link -lm themselves. A patch -was submitted [1] to change this unusual behaviour upstream, but was -never applied. Therefore link to -lm to alfred-gpsd too as this should -not hurt anyway. - -[1] https://lists.berlios.de/pipermail/gpsd-dev/2011-August/009451.html - -Signed-off-by: Simon Wunderlich sw@simonwunderlich.de ---- - gpsd/Makefile | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/gpsd/Makefile b/gpsd/Makefile -index 9b21652..92e690f 100644 ---- a/gpsd/Makefile -+++ b/gpsd/Makefile -@@ -49,7 +49,7 @@ ifeq ($(origin LIBGPS_CFLAGS) $(origin LIBGPS_LDLIBS), undefined undefined) - $(error No $(LIBGPS_NAME) development libraries found!) - endif - LIBGPS_CFLAGS += $(shell $(PKG_CONFIG) --cflags $(LIBGPS_NAME)) -- LIBGPS_LDLIBS += $(shell $(PKG_CONFIG) --libs $(LIBGPS_NAME)) -+ LIBGPS_LDLIBS += $(shell $(PKG_CONFIG) --libs $(LIBGPS_NAME)) -lm - endif - CFLAGS += $(LIBGPS_CFLAGS) - LDLIBS += $(LIBGPS_LDLIBS) --- -1.7.10.4 -