* Some build fixes

This commit is contained in:
pancake 2010-03-23 16:01:18 +01:00
parent bf1ab7da0c
commit de6e7e5900
5 changed files with 5 additions and 4 deletions

2
configure vendored
View File

@ -391,7 +391,7 @@ done
do_remove
echo
echo "Final report:"
for A in PREFIX HAVE_LIB_EWF HAVE_LIB_TCC HAVE_VALAC DEBUGGER USERCC USEROSTYPE ; do # REPORT
for A in PREFIX HAVE_LIB_EWF HAVE_LIB_TCC DEBUGGER USERCC USEROSTYPE ; do # REPORT
eval VAL="\$${A}"
[ -z "${VAL}" ] && VAL="(null)"
echo " - ${A} = ${VAL}"

View File

@ -34,7 +34,7 @@ IFEQ USEROSTYPE auto ; {
ARG_WITHOUT WITHPIC pic do not build libr as a program independent location ;
REPORT PREFIX HAVE_LIB_EWF HAVE_LIB_TCC HAVE_VALAC DEBUGGER USERCC USEROSTYPE ;
REPORT PREFIX HAVE_LIB_EWF HAVE_LIB_TCC DEBUGGER USERCC USEROSTYPE ;
(( TODO: Add the rest of .pc files here.. add a rule for acr? ))
SUBDIRS ./config-user.mk libr/include/r_userconf.h

View File

@ -6,7 +6,7 @@
#include <r_lib.h>
#include <r_util.h>
#include <r_asm.h>
#include "csr/csr_disasm/dis.h"
#include "csr/dis.h"
static int disassemble(struct r_asm_t *a, struct r_asm_aop_t *aop, ut8 *buf, ut64 len) {
arch_csr_disasm(aop->buf_asm, buf, a->pc);

View File

@ -274,6 +274,7 @@ R_API int r_anal_reflines_str(RAnal *anal, struct r_anal_refline_t *list,
R_API int r_anal_reflines_middle(RAnal *anal, RAnalRefline *list, ut64 addr, int len);
/* plugin pointers */
extern RAnalHandle r_anal_plugin_csr;
extern RAnalHandle r_anal_plugin_arm;
extern RAnalHandle r_anal_plugin_x86;
extern RAnalHandle r_anal_plugin_ppc;

View File

@ -1,6 +1,6 @@
OBJ=parse.o
BIN=parse
BINDEPS=r_util r_lib r_parse
BINDEPS=r_util r_lib r_parse r_flags r_cons
LIBS+=${DL_LIBS}
include ../../rules.mk