radare2/shlr/spp/config.def.h

38 lines
524 B
C
Raw Normal View History

#ifndef HAVE_FORK
2017-10-10 02:27:34 +02:00
#define HAVE_FORK 1
#endif
#if HAVE_FORK
# if TARGET_OS_IPHONE || APPLE_SDK_IPHONEOS || APPLE_SDK_IPHONESIMULATOR
# define SPP_HAVE_SYSTEM 0
2017-10-10 02:27:34 +02:00
# else
# define SPP_HAVE_SYSTEM 1
2017-10-10 02:27:34 +02:00
# endif
#else
# define SPP_HAVE_SYSTEM 0
2017-10-10 02:27:34 +02:00
#endif
#if SPP_HAVE_SYSTEM
2017-07-05 12:01:02 +01:00
#include "p/sh.h"
#endif
2017-10-10 02:27:34 +02:00
#include "p/spp.h"
#include "p/acr.h"
#include "p/pod.h"
#include "p/cpp.h"
struct Proc *procs[] = {
&spp_proc,
&cpp_proc,
&pod_proc,
&acr_proc,
#if SPP_HAVE_SYSTEM
2017-07-05 12:01:02 +01:00
&sh_proc,
#endif
NULL
};
DEFAULT_PROC(spp)
#define DEBUG 0