radare2/libr/config.h.in
pancake c3953d64d6
Use gperf on anal/d and improve build and checks ##anal
* Add --without-gperf configure flag
* Update sdb to support gperf.foreach and faster ls.sort()
* Support cc and types sdb gperfs
* add r_str_newvf
* Honor HAVE_GPERF in more places
* Add CI job to build and test cmds with gperf
2021-05-20 00:22:20 +02:00

31 lines
887 B
C

#ifndef _INCLUDE_CONFIG_H_
#define _INCLUDE_CONFIG_H_
#ifndef HAVE_GPERF
#define HAVE_GPERF 0
#endif
#define R_DEBUG 0
#define R_RTDEBUG 1
/* inlined APIs */
#define R_INLINE 0
#define R2_LOADLIBS 1
#define R_EGG_STATIC_PLUGINS @plugins_egg@
#define R_BIN_STATIC_PLUGINS @plugins_bin@
#define R_BIN_LDR_STATIC_PLUGINS @plugins_bin_ldr@
#define R_BIN_XTR_STATIC_PLUGINS @plugins_bin_xtr@
#define R_FS_STATIC_PLUGINS @plugins_fs@
#define R_IO_STATIC_PLUGINS @plugins_io@
#define R_DEBUG_STATIC_PLUGINS @plugins_debug@
#define R_BP_STATIC_PLUGINS @plugins_bp@
#define R_ASM_STATIC_PLUGINS @plugins_asm@
#define R_ANAL_STATIC_PLUGINS @plugins_anal@
#define R_ESIL_STATIC_PLUGINS @plugins_esil@
#define R_CORE_STATIC_PLUGINS @plugins_core@
#define R_LANG_STATIC_PLUGINS @plugins_lang@
#define R_PARSE_STATIC_PLUGINS @plugins_parse@
#define R_CRYPTO_STATIC_PLUGINS @plugins_crypto@
#endif