From 4f244609f3cf32ae2ab17069f0e267eb59f05f04 Mon Sep 17 00:00:00 2001 From: Arne Schwabe Date: Fri, 3 Jan 2014 16:02:48 +0100 Subject: Update build script to include revision, update openvpn code, remove openssl compat (disables export ciphers) --- misc/build-native.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'misc/build-native.sh') diff --git a/misc/build-native.sh b/misc/build-native.sh index 72ecd1cb..34cd137d 100755 --- a/misc/build-native.sh +++ b/misc/build-native.sh @@ -1,3 +1,21 @@ +if [ -d openvpn/.git ]; then + GIT=git + cd openvpn + CONFIGURE_GIT_CHFILES=$($GIT diff-files --name-status -r --ignore-submodules --quiet -- || echo "+") + CONFIGURE_GIT_UNCOMMITTED=$($GIT diff-index --cached --quiet --ignore-submodules HEAD || echo "*") + CONFIGURE_GIT_REVISION=$($GIT rev-parse --symbolic-full-name HEAD | cut -d/ -f3)-$($GIT rev-parse --short=16 HEAD) + echo "#define CONFIGURE_GIT_REVISION \"${CONFIGURE_GIT_REVISION}\"" > config-version.h.tmp; \ + echo "#define CONFIGURE_GIT_FLAGS \"${CONFIGURE_GIT_CHFILES}${CONFIGURE_GIT_UNCOMMITTED}\"" >> config-version.h.tmp + + if ! [ -f config-version.h ] || ! cmp -s config-version.h.tmp config-version.h; then \ + echo "replacing config-version.h" + mv config-version.h.tmp config-version.h + else + rm -f config-version.h.tmp + fi + cd .. +fi + ndk-build APP_API=all -j 8 if [ $? = 0 ]; then rm -rf build/native-libs/ -- cgit v1.2.3