mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-08 06:12:13 +00:00
37 lines
791 B
Plaintext
37 lines
791 B
Plaintext
#ifndef _INCLUDE_R_CONFIGURE_H_
|
|
#define _INCLUDE_R_CONFIGURE_H_
|
|
|
|
#ifdef LIL_ENDIAN
|
|
#undef LIL_ENDIAN
|
|
#endif
|
|
#define LIL_ENDIAN @LIL_ENDIAN@
|
|
#define CPU_ENDIAN @BIG_ENDIAN@
|
|
|
|
#define DEBUGGER @DEBUGGER@
|
|
|
|
#if __WIN32__ || __CYGWIN__ || MINGW32
|
|
#define R2_PREFIX "."
|
|
#define R2_LIBDIR "./lib"
|
|
#define R2_INCDIR "./include/libr"
|
|
#define R2_DATDIR "./share"
|
|
#else
|
|
#define R2_PREFIX "@PREFIX@"
|
|
#define R2_LIBDIR "@LIBDIR@"
|
|
#define R2_INCDIR "@INCLUDEDIR@/libr"
|
|
#define R2_DATDIR "@DATADIR@"
|
|
#endif
|
|
|
|
#define R2_VERSION "@VERSION@"
|
|
#define HAVE_LIB_MAGIC @HAVE_LIB_MAGIC@
|
|
#define USE_LIB_MAGIC @USE_LIB_MAGIC@
|
|
#ifndef HAVE_LIB_SSL
|
|
#define HAVE_LIB_SSL @HAVE_OPENSSL@
|
|
#endif
|
|
#ifndef HAVE_LIB_EWF
|
|
#define HAVE_LIB_EWF @HAVE_LIB_EWF@
|
|
#endif
|
|
|
|
#define R2_WWWROOT "@DATADIR@/radare2/@VERSION@/www"
|
|
|
|
#endif
|