1. 27 Feb, 2022 4 commits
  2. 26 Feb, 2022 9 commits
  3. 23 Feb, 2022 12 commits
  4. 22 Feb, 2022 1 commit
  5. 21 Feb, 2022 4 commits
  6. 18 Feb, 2022 4 commits
  7. 17 Feb, 2022 1 commit
    • xdiff: use xdl_free not free · b722c45d
      We've added a lovely abstraction layer in xdiff so that it can call our
      allocation functions.  But it also needs to call our free functions.  We
      missed some `free` calls in `xmerge.c`.  Update them to use `xdl_free`.
      Without this, we will pass a pointer allocated with a custom allocator
      to the system free function.  💣
      Edward Thomson committed
  8. 14 Feb, 2022 4 commits
  9. 13 Feb, 2022 1 commit
    • cmake: Fix package name for system http-parser · 8bc9eda7
      Fix building against system http-parser library by fixing
      the find_package() argument.  It seems to have been accidentally changed
      from HTTPParser to HTTP_Parser in de178d36, effectively making
      the build against system library fail to find it:
      
      ```
      CMake Warning at cmake/SelectHTTPParser.cmake:3 (find_package):
        By not providing "FindHTTP_Parser.cmake" in CMAKE_MODULE_PATH this project
        has asked CMake to find a package configuration file provided by
        "HTTP_Parser", but CMake did not find one.
      
        Could not find a package configuration file provided by "HTTP_Parser" with
        any of the following names:
      
          HTTP_ParserConfig.cmake
          http_parser-config.cmake
      
        Add the installation prefix of "HTTP_Parser" to CMAKE_PREFIX_PATH or set
        "HTTP_Parser_DIR" to a directory containing one of the above files.  If
        "HTTP_Parser" provides a separate development package or SDK, be sure it
        has been installed.
      Call Stack (most recent call first):
        src/CMakeLists.txt:97 (include)
      
      CMake Error at cmake/SelectHTTPParser.cmake:11 (message):
        http-parser support was requested but not found
      Call Stack (most recent call first):
        src/CMakeLists.txt:97 (include)
      ```
      Michał Górny committed