Add missing Jamroot files in binr/

This commit is contained in:
pancake 2014-01-03 01:03:39 +01:00
parent 98053a806d
commit 4a5165f232
5 changed files with 22 additions and 3 deletions

5
binr/r2agent/Jamroot Normal file
View File

@ -0,0 +1,5 @@
exe r2agent : r2agent.c :
<library>../../libr/util
<library>../../libr/cons
<library>../../libr/socket
<include>../../libr/include ;

7
binr/ragg2/Jamroot Normal file
View File

@ -0,0 +1,7 @@
exe ragg2 : ragg2.c :
<define>LIBDIR=""
<library>../../libr/bin
<library>../../libr/egg
<library>../../libr/util
<include>../../libr/include
;

5
binr/rahash2/Jamroot Normal file
View File

@ -0,0 +1,5 @@
exe rahash2 : rahash2.c :
<library>../../libr/util
<library>../../libr/hash
<library>../../libr/io
<include>../../libr/include ;

4
binr/rarun2/Jamroot Normal file
View File

@ -0,0 +1,4 @@
exe rarun2 : rarun2.c :
<library>../../libr/util
<library>../../libr/socket
<include>../../libr/include ;

View File

@ -221,13 +221,11 @@ R_API int r_asm_del(RAsm *a, const char *name) {
R_API int r_asm_is_valid(RAsm *a, const char *name) {
char file[1024];
RAsmPlugin *h;
RListIter *iter;
r_list_foreach (a->plugins, iter, h) {
if (!strcmp (h->name, name)) {
if (!strcmp (h->name, name))
return R_TRUE;
}
}
return R_FALSE;
}