Do not download Sqlite3 during make process
This commit is contained in:
parent
32eb7bbfe9
commit
15d1a58974
4 changed files with 147732 additions and 52 deletions
62
.gitignore
vendored
62
.gitignore
vendored
|
@ -1,41 +1,39 @@
|
||||||
libs
|
|
||||||
obj
|
|
||||||
gen
|
|
||||||
bin
|
|
||||||
doc
|
|
||||||
*.orig
|
*.orig
|
||||||
*.rej
|
*.rej
|
||||||
.settings
|
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
.gradle
|
||||||
|
.idea
|
||||||
|
.settings
|
||||||
|
adb.pid
|
||||||
|
bc-android.keystore
|
||||||
|
bin
|
||||||
|
build
|
||||||
|
certdata.txt
|
||||||
|
check_tools.mk
|
||||||
default.properties
|
default.properties
|
||||||
|
doc
|
||||||
|
gen
|
||||||
|
liblinphone-junit-report.xml
|
||||||
|
liblinphonetester_*.zip
|
||||||
|
libs
|
||||||
|
linphone-android.iml
|
||||||
|
linphone-junit-report.xml
|
||||||
|
linphonetester_*.zip
|
||||||
|
lint.xml
|
||||||
local.properties
|
local.properties
|
||||||
|
obj
|
||||||
|
proguard-project.txt
|
||||||
project.properties
|
project.properties
|
||||||
|
res/.DS_Store
|
||||||
|
res/raw/lpconfig.xsd
|
||||||
|
res/raw/rootca.pem
|
||||||
|
submodules/externals/build/cunit/CUnit/
|
||||||
|
submodules/externals/build/ffmpeg/arm/
|
||||||
|
submodules/externals/build/ffmpeg/x86
|
||||||
|
submodules/externals/build/libvpx/arm
|
||||||
|
submodules/externals/build/libvpx/x86
|
||||||
|
submodules/externals/build/openh264/arm
|
||||||
|
submodules/externals/build/openh264/x86
|
||||||
tests/*$py.class
|
tests/*$py.class
|
||||||
tests/build.xml
|
tests/build.xml
|
||||||
tests/project.properties
|
tests/project.properties
|
||||||
res/.DS_Store
|
|
||||||
bc-android.keystore
|
|
||||||
res/raw/lpconfig.xsd
|
|
||||||
res/raw/rootca.pem
|
|
||||||
submodules/externals/sqlite3/sqlite3.*
|
|
||||||
certdata.txt
|
|
||||||
check_tools.mk
|
|
||||||
proguard-project.txt
|
|
||||||
sqlite-amalgamation-*.zip
|
|
||||||
submodules/externals/build/ffmpeg/arm/
|
|
||||||
submodules/externals/build/ffmpeg/x86
|
|
||||||
submodules/externals/build/libvpx/x86
|
|
||||||
submodules/externals/build/libvpx/arm
|
|
||||||
submodules/externals/build/openh264/arm
|
|
||||||
submodules/externals/build/openh264/x86
|
|
||||||
lint.xml
|
|
||||||
submodules/externals/build/cunit/CUnit/
|
|
||||||
.gradle
|
|
||||||
.idea
|
|
||||||
build
|
|
||||||
linphone-android.iml
|
|
||||||
linphone-junit-report.xml
|
|
||||||
liblinphone-junit-report.xml
|
|
||||||
linphonetester_*.zip
|
|
||||||
liblinphonetester_*.zip
|
|
||||||
adb.pid
|
|
||||||
|
|
21
Makefile
21
Makefile
|
@ -373,24 +373,6 @@ prepare-liblinphone_tester: $(TOPDIR)/submodules/linphone/tester/tester_hosts $(
|
||||||
cp -rf $(TOPDIR)/submodules/linphone/tester/rcfiles $(TOPDIR)/liblinphone_tester/assets/config_files
|
cp -rf $(TOPDIR)/submodules/linphone/tester/rcfiles $(TOPDIR)/liblinphone_tester/assets/config_files
|
||||||
|
|
||||||
|
|
||||||
#SQLite3
|
|
||||||
SQLITE_SRC_DIR=$(TOPDIR)/submodules/externals/sqlite3
|
|
||||||
SQLITE_BUILD_DIR=$(SQLITE_SRC_DIR)
|
|
||||||
ifeq ($(BUILD_SQLITE), 1)
|
|
||||||
prepare-sqlite3: $(SQLITE_BUILD_DIR)/sqlite3.c
|
|
||||||
else
|
|
||||||
prepare-sqlite3:
|
|
||||||
endif
|
|
||||||
|
|
||||||
$(SQLITE_BUILD_DIR)/sqlite3.c: $(SQLITE_BASENAME).zip
|
|
||||||
unzip -oq "$<" "*/sqlite3.?" -d $(SQLITE_BUILD_DIR)/
|
|
||||||
mv "$(SQLITE_BUILD_DIR)/$(SQLITE_BASENAME)/sqlite3".? $(SQLITE_BUILD_DIR)/
|
|
||||||
rmdir "$(SQLITE_BUILD_DIR)/$(SQLITE_BASENAME)/"
|
|
||||||
|
|
||||||
$(SQLITE_BASENAME).zip:
|
|
||||||
curl -sO $(SQLITE_URL)
|
|
||||||
|
|
||||||
|
|
||||||
#Matroska2
|
#Matroska2
|
||||||
MATROSKA_SRC_DIR=$(TOPDIR)/submodules/externals/libmatroska
|
MATROSKA_SRC_DIR=$(TOPDIR)/submodules/externals/libmatroska
|
||||||
MATROSKA_BUILD_DIR=$(TOPDIR)/submodules/externals/build/libmatroska
|
MATROSKA_BUILD_DIR=$(TOPDIR)/submodules/externals/build/libmatroska
|
||||||
|
@ -404,8 +386,7 @@ $(MATROSKA_SRC_DIR)/patch_applied.txt: $(MATROSKA_BUILD_DIR)/fix_libmatroska2.pa
|
||||||
cd $(MATROSKA_SRC_DIR); patch -p1 < $<; touch $@
|
cd $(MATROSKA_SRC_DIR); patch -p1 < $<; touch $@
|
||||||
|
|
||||||
#Build targets
|
#Build targets
|
||||||
prepare-sources: build-ffmpeg build-x264 build-openh264 prepare-ilbc build-vpx prepare-srtp prepare-mediastreamer2 prepare-antlr3 prepare-belle-sip $(TOPDIR)/res/raw/rootca.pem prepare-sqlite3 prepare-matroska2
|
prepare-sources: build-ffmpeg build-x264 build-openh264 prepare-ilbc build-vpx prepare-srtp prepare-mediastreamer2 prepare-antlr3 prepare-belle-sip $(TOPDIR)/res/raw/rootca.pem prepare-matroska2
|
||||||
|
|
||||||
|
|
||||||
GENERATE_OPTIONS = NDK_DEBUG=$(NDK_DEBUG) BUILD_FOR_X86=$(BUILD_FOR_X86) \
|
GENERATE_OPTIONS = NDK_DEBUG=$(NDK_DEBUG) BUILD_FOR_X86=$(BUILD_FOR_X86) \
|
||||||
BUILD_AMRNB=$(BUILD_AMRNB) BUILD_AMRWB=$(BUILD_AMRWB) BUILD_SILK=$(BUILD_SILK) BUILD_G729=$(BUILD_G729) BUILD_OPUS=$(BUILD_OPUS) \
|
BUILD_AMRNB=$(BUILD_AMRNB) BUILD_AMRWB=$(BUILD_AMRWB) BUILD_SILK=$(BUILD_SILK) BUILD_G729=$(BUILD_G729) BUILD_OPUS=$(BUILD_OPUS) \
|
||||||
|
|
140456
submodules/externals/sqlite3/sqlite3.c
vendored
Normal file
140456
submodules/externals/sqlite3/sqlite3.c
vendored
Normal file
File diff suppressed because it is too large
Load diff
7245
submodules/externals/sqlite3/sqlite3.h
vendored
Normal file
7245
submodules/externals/sqlite3/sqlite3.h
vendored
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue