diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-12-12 10:00:45 -0800 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-12-13 10:00:59 -0800 |
commit | 3011d55f725e280fe29a49bd70a2e0157587b17a (patch) | |
tree | 1a95b4a52cbc617a0cf5f84a2c35912366efa1a0 /lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | |
parent | 40d72134fd341c79397ec1a57cc6dfd11fd1acc5 (diff) | |
download | bcm5719-llvm-3011d55f725e280fe29a49bd70a2e0157587b17a.tar.gz bcm5719-llvm-3011d55f725e280fe29a49bd70a2e0157587b17a.zip |
[lldb/Host] Use cmakedefine01 for LLDB_ENABLE_POSIX
Rename LLDB_DISABLE_POSIX to LLDB_ENABLE_POSIX and use cmakedefine01 for
consistency.
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp index 95f3d1fcc53..028171e337d 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp @@ -10,7 +10,7 @@ #include <errno.h> #include <stdlib.h> -#ifndef LLDB_DISABLE_POSIX +#if LLDB_ENABLE_POSIX #include <netinet/in.h> #include <sys/mman.h> #include <sys/socket.h> |