crc32c.patch 844 B

12345678910111213141516171819202122232425
  1. diff -Nuar a/cmake/libcrc32c.cmake b/cmake/libcrc32c.cmake
  2. --- a/cmake/libcrc32c.cmake 2022-06-29 18:11:40.492018000 +0300
  3. +++ b/cmake/libcrc32c.cmake 2022-06-29 18:46:54.004865939 +0300
  4. @@ -2,7 +2,7 @@
  5. init_target(libcrc32c)
  6. add_library(tg_owt::libcrc32c ALIAS libcrc32c)
  7. -set(libcrc32c_loc ${third_party_loc}/crc32c/src)
  8. +set(libcrc32c_loc ${third_party_loc}/crc32c)
  9. configure_file(
  10. ${libcrc32c_loc}/src/crc32c_config.h.in
  11. diff -Nuar a/src/net/dcsctp/packet/crc32c.cc b/src/net/dcsctp/packet/crc32c.cc
  12. --- a/src/net/dcsctp/packet/crc32c.cc 2022-06-29 18:11:40.874018000 +0300
  13. +++ b/src/net/dcsctp/packet/crc32c.cc 2022-06-29 18:57:39.967819329 +0300
  14. @@ -11,7 +11,7 @@
  15. #include <cstdint>
  16. -#include "third_party/crc32c/src/include/crc32c/crc32c.h"
  17. +#include "third_party/crc32c/include/crc32c/crc32c.h"
  18. namespace dcsctp {