Skip to content

Commit

Permalink
update to zerotier 1.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
mwarning committed Jul 9, 2016
1 parent 7aa2c35 commit 732f270
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 4 deletions.
8 changes: 4 additions & 4 deletions zerotier/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2015 OpenWrt.org
# Copyright (C) 2016 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v3.
# See /LICENSE for more information.
Expand All @@ -8,9 +8,9 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=zerotier
PKG_VERSION:=1.1.4
PKG_REV:=9cc2733ed877faed30154035f0efe95633e88ac2
PKG_RELEASE:=2
PKG_VERSION:=1.1.8
PKG_REV:=898d889537670dc13649174266a61dc4158a0401
PKG_RELEASE:=1

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=git://github.com/zerotier/ZeroTierOne.git
Expand Down
70 changes: 70 additions & 0 deletions zerotier/patches/0001-zerotier-fix-build.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
From f05a574e36c110ddab5912ea7f06f7c41a1c18dd Mon Sep 17 00:00:00 2001
From: Moritz Warning <moritzwarning@web.de>
Date: Sat, 9 Jul 2016 17:45:14 +0200
Subject: [PATCH 1/1] zerotier: fix build

---
make-linux.mk | 30 +++++++++++++++---------------
osdep/ManagedRoute.cpp | 2 +-
2 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/make-linux.mk b/make-linux.mk
index 13b1547..ed944ff 100644
--- a/make-linux.mk
+++ b/make-linux.mk
@@ -39,24 +39,24 @@ include objects.mk

# On Linux we auto-detect the presence of some libraries and if present we
# link against the system version. This works with our package build images.
-ifeq ($(wildcard /usr/include/lz4.h),)
+#ifeq ($(wildcard /usr/include/lz4.h),)
OBJS+=ext/lz4/lz4.o
-else
- LDLIBS+=-llz4
- DEFS+=-DZT_USE_SYSTEM_LZ4
-endif
-ifeq ($(wildcard /usr/include/http_parser.h),)
+#else
+# LDLIBS+=-llz4
+# DEFS+=-DZT_USE_SYSTEM_LZ4 -DLOL
+#endif
+#ifeq ($(wildcard /usr/include/http_parser.h),)
OBJS+=ext/http-parser/http_parser.o
-else
- LDLIBS+=-lhttp_parser
- DEFS+=-DZT_USE_SYSTEM_HTTP_PARSER
-endif
-ifeq ($(wildcard /usr/include/json-parser/json.h),)
+#else
+# LDLIBS+=-lhttp_parser
+# DEFS+=-DZT_USE_SYSTEM_HTTP_PARSER
+#endif
+#ifeq ($(wildcard /usr/include/json-parser/json.h),)
OBJS+=ext/json-parser/json.o
-else
- LDLIBS+=-ljsonparser
- DEFS+=-DZT_USE_SYSTEM_JSON_PARSER
-endif
+#else
+# LDLIBS+=-ljsonparser
+# DEFS+=-DZT_USE_SYSTEM_JSON_PARSER
+#endif

ifeq ($(ZT_USE_MINIUPNPC),1)
OBJS+=osdep/PortMapper.o
diff --git a/osdep/ManagedRoute.cpp b/osdep/ManagedRoute.cpp
index 5499012..0fdc846 100644
--- a/osdep/ManagedRoute.cpp
+++ b/osdep/ManagedRoute.cpp
@@ -33,7 +33,7 @@
#ifdef __UNIX_LIKE__
#include <unistd.h>
#include <sys/param.h>
-#include <sys/sysctl.h>
+//#include <sys/sysctl.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <sys/wait.h>
--
2.9.0

0 comments on commit 732f270

Please sign in to comment.