1 // $FreeBSD$ 2 //===-- Config.h -----------------------------------------------*- C++ -*-===// 3 // 4 // The LLVM Compiler Infrastructure 5 // 6 // This file is distributed under the University of Illinois Open Source 7 // License. See LICENSE.TXT for details. 8 // 9 //===----------------------------------------------------------------------===// 10 11 #ifndef LLDB_HOST_CONFIG_H 12 #define LLDB_HOST_CONFIG_H 13 14 #define LLDB_CONFIG_TERMIOS_SUPPORTED 15 16 #define LLDB_EDITLINE_USE_WCHAR 0 17 18 #define LLDB_HAVE_EL_RFUNC_T 0 19 20 /* #undef LLDB_DISABLE_POSIX */ 21 22 #define LLDB_LIBDIR_SUFFIX "" 23 24 #define HAVE_SYS_EVENT_H 1 25 26 #define HAVE_PPOLL 1 27 28 #define HAVE_SIGACTION 1 29 30 #define HAVE_PROCESS_VM_READV 0 31 32 #define HAVE_NR_PROCESS_VM_READV 0 33 34 #ifndef HAVE_LIBCOMPRESSION 35 /* #undef HAVE_LIBCOMPRESSION */ 36 #endif 37 38 #endif // #ifndef LLDB_HOST_CONFIG_H 39