mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-05 04:56:10 +00:00
* Fix build
- Comment out gdiff.c until the cross-dependecy problem with r_core is solved
This commit is contained in:
parent
a2ede77d20
commit
a972644aba
@ -1,6 +1,7 @@
|
||||
NAME=r_diff
|
||||
OBJ=diff.o bdiff.o gdiff.o
|
||||
DEPS=r_util r_core
|
||||
DEPS=r_util
|
||||
#DEPS+=r_core
|
||||
|
||||
#EXTRA_TARGETS=linediff
|
||||
#EXTRA_CLEAN=clean_me
|
||||
|
@ -3,11 +3,13 @@
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <r_anal.h>
|
||||
#include <r_core.h>
|
||||
#include <r_list.h>
|
||||
#include <r_util.h>
|
||||
#include "gdiff.h"
|
||||
|
||||
/* XXX Solve cross-dependency */
|
||||
#if 0
|
||||
#include <r_core.h>
|
||||
/* XXX Fix r_cons and remove this functions (dupped) */
|
||||
static char *gdiff_graph_label(RCore *core, struct r_anal_bb_t *bb) {
|
||||
char cmd[1024], *cmdstr = NULL, *str = NULL;
|
||||
@ -363,3 +365,8 @@ R_API int r_diff_gdiff(char *file1, char *file2, int rad, int va) {
|
||||
|
||||
return R_TRUE;
|
||||
}
|
||||
#else
|
||||
R_API int r_diff_gdiff(char *file1, char *file2, int rad, int va) {
|
||||
return R_FALSE;
|
||||
}
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user