diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2020-03-05 18:11:47 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2020-03-05 18:11:47 +0000 | 
| commit | 8c27c5541e95164a37ac1beb7bd4ef43429aed55 (patch) | |
| tree | 19d62cc4239be95baae56a75f2d7275c55b61163 /contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp | |
| parent | 69660011c6637bc32c9b5ff25f285de3e1209225 (diff) | |
| parent | d652fd2996ce31dfd35dd2a9c58bf051ca7fff44 (diff) | |
Notes
Diffstat (limited to 'contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp')
| -rw-r--r-- | contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp b/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp index 7cea013eea7f..0a98f6a15d75 100644 --- a/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp +++ b/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp @@ -50,7 +50,7 @@  #include <compression.h>  #endif -#if LLVM_ENABLE_ZLIB +#if defined(HAVE_LIBZ)  #include <zlib.h>  #endif @@ -582,7 +582,7 @@ bool GDBRemoteCommunication::DecompressPacket() {    }  #endif -#if LLVM_ENABLE_ZLIB +#if defined(HAVE_LIBZ)    if (decompressed_bytes == 0 && decompressed_bufsize != ULONG_MAX &&        decompressed_buffer != nullptr &&        m_compression_type == CompressionType::ZlibDeflate) {  | 
