From: Simon Wunderlich Date: Wed, 15 Jan 2014 17:24:47 +0000 (+0100) Subject: alfred: bump version to 2014.0.0 X-Git-Url: http://git.openwrt.org/?p=feed%2Frouting.git;a=commitdiff_plain;h=9c4108db7cf6e9e87b579c3b863a7ba9cfc2b3bd 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 --- diff --git a/alfred/Makefile b/alfred/Makefile index c8e73c2..7d58a0d 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_MD5SUM:=3891697e127b1037cfc9349fd96e9993 +PKG_VERSION:=2014.0.0 +PKG_RELEASE:=0 +PKG_MD5SUM:=d149ed50e9db994d38aadf1d121f17ae PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://downloads.open-mesh.org/batman/releases/batman-adv-$(PKG_VERSION) 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 -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 ---- - 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 -