]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - include/lldb/Host/Config.h
Vendor import of lldb trunk r338150:
[FreeBSD/FreeBSD.git] / include / lldb / Host / Config.h
1 //===-- Config.h ------------------------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef LLDB_HOST_CONFIG_H
11 #define LLDB_HOST_CONFIG_H
12  
13 #if defined(__APPLE__)
14
15 // This block of code only exists to keep the Xcode project working in the
16 // absence of a configuration step.
17 #define LLDB_CONFIG_TERMIOS_SUPPORTED 1
18
19 #define LLDB_EDITLINE_USE_WCHAR 1
20
21 #define LLDB_HAVE_EL_RFUNC_T 1
22
23 #define HAVE_SYS_EVENT_H 1
24
25 #define HAVE_PPOLL 0
26
27 #define HAVE_SIGACTION 1
28
29 #else
30
31 #error This file is only used by the Xcode build.
32
33 #endif
34
35 #endif // #ifndef LLDB_HOST_CONFIG_H