diff options
Diffstat (limited to 'lib/clang/include/lldb/Host/Config.h')
-rw-r--r-- | lib/clang/include/lldb/Host/Config.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/lib/clang/include/lldb/Host/Config.h b/lib/clang/include/lldb/Host/Config.h new file mode 100644 index 0000000..670eca5 --- /dev/null +++ b/lib/clang/include/lldb/Host/Config.h @@ -0,0 +1,28 @@ +// $FreeBSD$ +//===-- Config.h -----------------------------------------------*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#ifndef LLDB_HOST_CONFIG_H +#define LLDB_HOST_CONFIG_H + +#define LLDB_CONFIG_TERMIOS_SUPPORTED + +/* #undef LLDB_DISABLE_POSIX */ + +#define HAVE_SYS_EVENT_H 1 + +#define HAVE_PPOLL 1 + +#define HAVE_SIGACTION 1 + +#define HAVE_PROCESS_VM_READV 0 + +#define HAVE_NR_PROCESS_VM_READV 0 + +#endif // #ifndef LLDB_HOST_CONFIG_H |