/usr/include/libr/r_userconf.h is in libradare2-dev 0.9.6-3.1+deb8u1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | #ifndef _INCLUDE_R_CONFIGURE_H_
#define _INCLUDE_R_CONFIGURE_H_
#ifdef LIL_ENDIAN
#undef LIL_ENDIAN
#endif
#define LIL_ENDIAN 1
#define CPU_ENDIAN 0
#define DEBUGGER 1
#if __WIN32__ || __CYGWIN__ || MINGW32
#define R2_PREFIX "."
#define R2_LIBDIR "./lib"
#define R2_INCDIR "./include/libr"
#define R2_DATDIR "./share"
#else
#define R2_PREFIX "/usr"
#define R2_LIBDIR "/usr/lib/x86_64-linux-gnu"
#define R2_INCDIR "/usr/include/libr"
#define R2_DATDIR "/usr/share"
#endif
#define R2_VERSION "0.9.6"
#define HAVE_LIB_MAGIC 1
#define USE_LIB_MAGIC 1
#define HAVE_LIB_SSL 0
#define HAVE_LIB_EWF 0
#define R2_WWWROOT "/usr/share/radare2/0.9.6/www"
#endif
|