-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix incorrect dependency name (#396)
* Fix incorrect dependency name * Remove unnecessary dependency zlib * Happy New Year
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# | ||
# Copyright (C) 2014-2018 Jian Chang <[email protected]> | ||
# Copyright (C) 2014-2019 Jian Chang <[email protected]> | ||
# | ||
# This is free software, licensed under the GNU General Public License v3. | ||
# See /LICENSE for more information. | ||
|
@@ -27,7 +27,7 @@ PKG_INSTALL:=1 | |
PKG_FIXUP:=autoreconf | ||
PKG_USE_MIPS16:=0 | ||
PKG_BUILD_PARALLEL:=1 | ||
PKG_BUILD_DEPENDS:=libev libpcre libcares libsodium libmbedtls | ||
PKG_BUILD_DEPENDS:=c-ares libev libsodium mbedtls pcre | ||
|
||
PKG_CONFIG_DEPENDS:= \ | ||
CONFIG_SHADOWSOCKS_STATIC_LINK \ | ||
|
@@ -44,7 +44,7 @@ define Package/shadowsocks-libev | |
CATEGORY:=Network | ||
TITLE:=Lightweight Secured Socks5 Proxy | ||
URL:=https://github.com/shadowsocks/shadowsocks-libev | ||
DEPENDS:=+zlib +libpthread \ | ||
DEPENDS:=+libpthread \ | ||
+!SHADOWSOCKS_WITH_EV:libev \ | ||
+!SHADOWSOCKS_WITH_PCRE:libpcre \ | ||
+!SHADOWSOCKS_WITH_CARES:libcares \ | ||
|