Bump capstone to 2.1.1 + dont check https cert

This commit is contained in:
pancake 2014-03-15 01:59:16 +01:00
parent 57fcf95fbe
commit 48966d7af3
2 changed files with 5 additions and 4 deletions

View File

@ -472,7 +472,7 @@ static void update_sdb(RCore *core) {
sdb_ns_set (core->sdb, "anal", core->anal->sdb);
//sdb_ns_set (core->sdb, "flags", core->flags->sdb);
//sdb_ns_set (core->sdb, "bin", core->bin->sdb);
//sdb_ns_set (core->sdb, "syscall", core->assembler->syscall->syspair);
sdb_ns_set (core->sdb, "syscall", core->assembler->syscall->db);
}
R_API int r_core_init(RCore *core) {

View File

@ -1,7 +1,8 @@
include ../config-user.mk
include ../mk/${COMPILER}.mk
CS_VER=2.1
WGET?=wget
CS_VER=2.1.1
CS_TAR=https://github.com/aquynh/capstone/archive/$(CS_VER).tar.gz
CS_URL=https://github.com/aquynh/capstone.git
CS_UPD=20140307
@ -144,8 +145,8 @@ capstone: capstone-$(CS_VER).tar.gz
tar xzvf capstone-$(CS_VER).tar.gz
rm -rf capstone
mv capstone-$(CS_VER) capstone
cd capstone ; for a in ../capstone-patches/* ; do patch -p1 < $$a ; done
#cd capstone ; for a in ../capstone-patches/* ; do patch -p1 < $$a ; done
capstone-$(CS_VER).tar.gz:
wget -O capstone-$(CS_VER).tar.gz -c $(CS_TAR)
$(WGET) --no-check-certificate -O capstone-$(CS_VER).tar.gz -c $(CS_TAR)
endif