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_SIGACTION 1 25 26 #define HAVE_PROCESS_VM_READV 0 27 28 #define HAVE_NR_PROCESS_VM_READV 0 29 30 #ifndef HAVE_LIBCOMPRESSION 31 /* #undef HAVE_LIBCOMPRESSION */ 32 #endif 33 34 #define LLDB_ENABLE_POSIX 1 35 36 #define LLDB_ENABLE_TERMIOS 1 37 38 #define LLDB_ENABLE_LZMA 1 39 40 #define LLDB_ENABLE_CURSES 1 41 42 #define LLDB_ENABLE_LIBEDIT 1 43 44 #define LLDB_ENABLE_LIBXML2 0 45 46 #define LLDB_ENABLE_LUA 1 47 48 #define LLDB_ENABLE_PYTHON 0 49 50 /* #undef LLDB_PYTHON_HOME */ 51 52 #define LLDB_LIBDIR_SUFFIX "" 53 54 #endif // #ifndef LLDB_HOST_CONFIG_H 55