xref: /freebsd/lib/clang/include/lldb/Host/Config.h (revision 19261079)
1 // $FreeBSD$
2 //===-- Config.h -----------------------------------------------*- C++ -*-===//
3 //
4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // See https://llvm.org/LICENSE.txt for license information.
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //
8 //===----------------------------------------------------------------------===//
9 
10 #ifndef LLDB_HOST_CONFIG_H
11 #define LLDB_HOST_CONFIG_H
12 
13 #define LLDB_EDITLINE_USE_WCHAR 1
14 
15 #define LLDB_HAVE_EL_RFUNC_T 1
16 
17 
18 #define HAVE_SYS_TYPES_H 1
19 
20 #define HAVE_SYS_EVENT_H 1
21 
22 #define HAVE_PPOLL 1
23 
24 #define HAVE_PTSNAME_R 1
25 
26 #define HAVE_SIGACTION 1
27 
28 #define HAVE_PROCESS_VM_READV 0
29 
30 #define HAVE_NR_PROCESS_VM_READV 0
31 
32 #ifndef HAVE_LIBCOMPRESSION
33 /* #undef HAVE_LIBCOMPRESSION */
34 #endif
35 
36 #define LLDB_ENABLE_POSIX 1
37 
38 #define LLDB_ENABLE_TERMIOS 1
39 
40 #define LLDB_ENABLE_LZMA 1
41 
42 #define LLDB_ENABLE_CURSES 1
43 
44 #define CURSES_HAVE_NCURSES_CURSES_H 0
45 
46 #define LLDB_ENABLE_LIBEDIT 1
47 
48 #define LLDB_ENABLE_LIBXML2 0
49 
50 #define LLDB_ENABLE_LUA 1
51 
52 #define LLDB_ENABLE_PYTHON 0
53 
54 #define LLDB_EMBED_PYTHON_HOME 0
55 
56 /* #undef LLDB_PYTHON_HOME */
57 
58 #define LLDB_LIBDIR_SUFFIX ""
59 
60 #endif // #ifndef LLDB_HOST_CONFIG_H
61