Skip to content

Commit

Permalink
Merge branch 'hotfix/0.4.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
lparam committed Nov 20, 2015
2 parents 73b68aa + 3417b3c commit 4f77da3
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
v0.4.3 (2015-10-18)
-----------
* Hotfix: Android build script


v0.4.2 (2015-10-20)
-----------
* Change: Rename program name
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MAJOR = 0
MINOR = 4
PATCH = 2
PATCH = 3
NAME = xSocks

ifdef O
Expand Down
8 changes: 4 additions & 4 deletions dist-build/android-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ fi

export MAKE_TOOLCHAIN="${ANDROID_NDK_HOME}/build/tools/make-standalone-toolchain.sh"
export TOOLCHAIN_DIR="$(pwd)/android-toolchain-${TARGET_ARCH}"
export PREFIX="$(pwd)/xsocks-android-${TARGET_ARCH}"
export PREFIX="$(pwd)/xSocks-android-${TARGET_ARCH}"
export PATH="${PATH}:${TOOLCHAIN_DIR}/bin"

if [ ! -d $TOOLCHAIN_DIR ]; then
Expand All @@ -24,6 +24,6 @@ if [ ! -d $TOOLCHAIN_DIR ]; then
fi

make CROSS="${HOST_COMPILER}-" O="${PREFIX}" android
${HOST_COMPILER}-strip --strip-unneeded $PREFIX/xsocks
${HOST_COMPILER}-strip --strip-unneeded $PREFIX/xforwarder
echo "xsocks has been installed into $PREFIX"
${HOST_COMPILER}-strip --strip-unneeded $PREFIX/xSocks
${HOST_COMPILER}-strip --strip-unneeded $PREFIX/xForwarder
echo "xSocks has been installed into $PREFIX"
2 changes: 1 addition & 1 deletion openwrt/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=xSocks
PKG_VERSION:=0.4.2
PKG_VERSION:=0.4.3
PKG_RELEASE=

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
Expand Down
2 changes: 1 addition & 1 deletion src/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include "uv.h"
#include "socks.h"

#define XSOCKS_VERSION "0.4.2"
#define XSOCKS_VERSION "0.4.3"

struct server_context {
int index;
Expand Down

0 comments on commit 4f77da3

Please sign in to comment.