/usr/include/libr/r_userconf.h is in libradare2-dev 2.3.0+dfsg-2.
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 33 34 35 36 37 38 | #ifndef R2_CONFIGURE_H
#define R2_CONFIGURE_H
#include "r_version.h"
#define DEBUGGER 1
#if __WINDOWS__ || __CYGWIN__ || MINGW32 || _MSC_VER || CUTTER
#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 HAVE_LIB_MAGIC 1
#define USE_LIB_MAGIC 1
#ifndef HAVE_LIB_SSL
#define HAVE_LIB_SSL 0
#endif
#define HAVE_FORK 1
#define WITH_GPL 1
#define R2_WWWROOT R2_DATDIR "/radare2/" R2_VERSION "/www"
#if __APPLE__ && __POWERPC__
#define HAVE_JEMALLOC 0
#else
#define HAVE_JEMALLOC 1
#endif
#endif
|