Skip to content

Commit 417e53d

Browse files
committed
bump version to 3.0.2
1 parent ae14fe6 commit 417e53d

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
include $(TOPDIR)/rules.mk
99

1010
PKG_NAME:=shadowsocks-libev
11-
PKG_VERSION:=3.0.1
11+
PKG_VERSION:=3.0.2
1212
PKG_RELEASE:=1
1313

1414
PKG_SOURCE_PROTO:=git
1515
PKG_SOURCE_URL:=https://github.com/shadowsocks/shadowsocks-libev.git
1616
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_RELEASE)
17-
PKG_SOURCE_VERSION:=fdb1f190f8bad4438cc42b673eb98a6f14c1e1bc
17+
PKG_SOURCE_VERSION:=46fa5de9e40eabba94d50375b1263d6d51ca9841
1818
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.xz
1919

2020
PKG_LICENSE:=GPLv3

patches/0001-embed-libudns.patch

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
From 13df793bce0a09769676455cc923410c1af04cc6 Mon Sep 17 00:00:00 2001
1+
From 4492b781ac52e9ff6e8266e5c1a729a838cb9135 Mon Sep 17 00:00:00 2001
22
From: Jian Chang <aa65535@live.com>
33
Date: Tue, 7 Feb 2017 20:53:44 +0800
44
Subject: [PATCH] embed libudns
55

66
---
77
Makefile.am | 4 +-
8-
configure.ac | 1 +
8+
configure.ac | 3 +-
99
libudns/Makefile.am | 8 +
1010
libudns/dnsget.1 | 195 +++++++
1111
libudns/dnsget.c | 759 ++++++++++++++++++++++++++
@@ -33,7 +33,7 @@ Subject: [PATCH] embed libudns
3333
libudns/udns_rr_srv.c | 155 ++++++
3434
libudns/udns_rr_txt.c | 98 ++++
3535
src/Makefile.am | 11 +-
36-
29 files changed, 7605 insertions(+), 7 deletions(-)
36+
29 files changed, 7605 insertions(+), 9 deletions(-)
3737
create mode 100644 libudns/Makefile.am
3838
create mode 100644 libudns/dnsget.1
3939
create mode 100644 libudns/dnsget.c
@@ -76,23 +76,23 @@ index 06af285..8d6070e 100644
7676

7777
if ENABLE_DOCUMENTATION
7878
diff --git a/configure.ac b/configure.ac
79-
index 008c2d2..ce5df55 100755
79+
index c816824..5ac1a6e 100755
8080
--- a/configure.ac
8181
+++ b/configure.ac
8282
@@ -277,13 +277,12 @@ dnl Add define for libudns to enable IPv6 support
8383
dnl This is an option defined in the origin configure script
8484
AC_DEFINE([HAVE_IPv6], [1], [Enable IPv6 support in libudns])
85-
85+
8686
-AC_CHECK_HEADERS([udns.h], [], [AC_MSG_ERROR([Couldn't find libudns. Try installing libudns-dev or udns-devel.])])
8787
-AC_CHECK_LIB([udns], [dns_dnlen], [LIBS="-ludns $LIBS"], [AC_MSG_ERROR([Couldn't find libudns. Try installing libudns-dev or udns-devel.])])
8888
AC_CHECK_HEADERS([ev.h], [], [AC_MSG_ERROR([Couldn't find libev. Try installing libev-dev@<:@el@:>@.])])
8989
AC_CHECK_LIB([ev], [ev_loop_destroy], [LIBS="-lev $LIBS"], [AC_MSG_ERROR([Couldn't find libev. Try installing libev-dev@<:@el@:>@.])])
90-
90+
9191
AC_CONFIG_FILES([shadowsocks-libev.pc
9292
Makefile
9393
+ libudns/Makefile
9494
src/Makefile])
95-
95+
9696
AM_COND_IF([USE_SYSTEM_SHARED_LIB],
9797
diff --git a/libudns/Makefile.am b/libudns/Makefile.am
9898
new file mode 100644

0 commit comments

Comments
 (0)