From 0074a5e67e36311d2dd3e6ad0a828a675427668a Mon Sep 17 00:00:00 2001 From: Hans Dedecker Date: Sun, 16 Dec 2018 12:43:43 +0100 Subject: [PATCH] omcproxy: switch to OpenWrt github repo Switch to OpenWrt github repo in PKG_SOURCE_URL so we can remove the out of tree patch Signed-off-by: Hans Dedecker --- package/network/services/omcproxy/Makefile | 10 +++--- ...-use-cpu_to_be32-outside-of-function.patch | 35 ------------------- 2 files changed, 5 insertions(+), 40 deletions(-) delete mode 100644 package/network/services/omcproxy/patches/100-mrib.c-don-t-use-cpu_to_be32-outside-of-function.patch diff --git a/package/network/services/omcproxy/Makefile b/package/network/services/omcproxy/Makefile index e121fa0b23..efdbcdb22a 100644 --- a/package/network/services/omcproxy/Makefile +++ b/package/network/services/omcproxy/Makefile @@ -8,13 +8,13 @@ include $(TOPDIR)/rules.mk PKG_NAME:=omcproxy -PKG_RELEASE:=5 +PKG_RELEASE:=6 -PKG_SOURCE_URL:=https://github.com/sbyx/omcproxy.git +PKG_SOURCE_URL:=https://github.com/openwrt/omcproxy.git PKG_SOURCE_PROTO:=git -PKG_SOURCE_DATE:=2017-02-14 -PKG_SOURCE_VERSION:=1fe6f48f8a5067685cbcf6427baf1b3e8b889da1 -PKG_MIRROR_HASH:=b5a5e09149bd08a945ada8a29a30c3e42834524747d7fd0911717f5a0ec59c72 +PKG_SOURCE_DATE:=2018-12-14 +PKG_SOURCE_VERSION:=722151f04348cf1b759613c087bced52fb45790a +PKG_MIRROR_HASH:=4d218923c149e2dc9010b8932ea92ab7e06f30df06814ffedaba7e081f2d4640 PKG_MAINTAINER:=Steven Barth PKG_LICENSE:=Apache-2.0 diff --git a/package/network/services/omcproxy/patches/100-mrib.c-don-t-use-cpu_to_be32-outside-of-function.patch b/package/network/services/omcproxy/patches/100-mrib.c-don-t-use-cpu_to_be32-outside-of-function.patch deleted file mode 100644 index d71315b60e..0000000000 --- a/package/network/services/omcproxy/patches/100-mrib.c-don-t-use-cpu_to_be32-outside-of-function.patch +++ /dev/null @@ -1,35 +0,0 @@ -From 721064f2eb1dabe5bda63dcaff249b73ab891e6c Mon Sep 17 00:00:00 2001 -From: Eneas U de Queiroz -Date: Fri, 14 Dec 2018 15:13:41 -0200 -Subject: [PATCH] mrib.c: don't use cpu_to_be32 outside of function - -cpu_to_be32 is not a constant, so it can't be used outside of a -function. - -Signed-off-by: Eneas U de Queiroz - ---- a/src/mrib.c -+++ b/src/mrib.c -@@ -21,6 +21,7 @@ - #include - #include - #include -+#include - #include - #include - #include -@@ -54,7 +55,13 @@ struct mrib_iface { - struct uloop_timeout timer; - }; - --static uint32_t ipv4_rtr_alert = cpu_to_be32(0x94040000); -+/* we can't use cpu_to_be32 outside a function */ -+#if __BYTE_ORDER == __BIG_ENDIAN -+static uint32_t ipv4_rtr_alert = 0x94040000; -+#else -+static uint32_t ipv4_rtr_alert = 0x00000494; -+#endif -+ - static struct { - struct ip6_hbh hdr; - struct ip6_opt_router rt;