File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ EXTERNAL_DIR := ${CURDIR}/external
6
6
SQLCIPHER_DIR := ${EXTERNAL_DIR}/sqlcipher
7
7
LICENSE := SQLCIPHER_LICENSE
8
8
ASSETS_DIR := assets
9
+ OPENSSL_DIR := ${EXTERNAL_DIR}/openssl
9
10
LATEST_TAG := $(shell git tag | sort -r | head -1)
10
11
SECOND_LATEST_TAG := $(shell git tag | sort -r | head -2 | tail -1)
11
12
RELEASE_DIR := "SQLCipher for Android ${LATEST_TAG}"
@@ -15,6 +16,8 @@ README := ${RELEASE_DIR}/README
15
16
init :
16
17
git submodule update --init
17
18
android update project -p .
19
+ cd ${OPENSSL_DIR} && git clean -dfx && \
20
+ git checkout -f && ./Configure dist
18
21
19
22
all : build-external build-jni build-java copy-libs
20
23
Original file line number Diff line number Diff line change 8
8
HOST_INFO=` uname -a`
9
9
case ${HOST_INFO} in
10
10
Darwin* )
11
- TOOLCHAIN_SYSTEM=darwin-x86_64
11
+ TOOLCHAIN_SYSTEM=darwin-x86
12
12
;;
13
13
Linux* )
14
14
if [[ " ${HOST_INFO} " == * i686* ]]
You can’t perform that action at this time.
0 commit comments