Skip to content
  1. Oct 15, 2022
  2. Oct 14, 2022
  3. Oct 13, 2022
  4. Oct 12, 2022
  5. Oct 11, 2022
  6. Oct 10, 2022
    • Michal Vasilek's avatar
      python3: update to 3.10.7 · e9ddc479
      Michal Vasilek authored
      
      
      * fixes CVE-2021-28861
      * adjust pip and setuptools versions
      * refresh patches
      
      Signed-off-by: default avatarMichal Vasilek <michal.vasilek@nic.cz>
      e9ddc479
    • Florian Eckert's avatar
      Merge pull request #19582 from TDT-AG/pr/20221022-stunnel · 0480ee4b
      Florian Eckert authored
      stunnel: update version to 5.66
      0480ee4b
    • Florian Eckert's avatar
      stunnel: update version to 5.66 · b9df9f10
      Florian Eckert authored
      
      
      Signed-off-by: default avatarFlorian Eckert <fe@dev.tdt.de>
      b9df9f10
    • Stan Grishin's avatar
      Merge pull request #19579 from ynezz/upstream/fix-curl-wolfssl · 5518865b
      Stan Grishin authored
      curl: error out if wolfSSL is not usable
      5518865b
    • Petr Štetiar's avatar
      curl: error out if wolfSSL is not usable · 9140f366
      Petr Štetiar authored
      When we explicitly declare, that we would like to have curl built with
      wolfSSL support using `--with-wolfssl` configure option, then we should
      make sure, that we either endup with curl having that support, or it
      shouldn't be available at all, otherwise we risk, that we end up with
      regressions like following:
      
        configure:25299: checking for wolfSSL_Init in -lwolfssl
        configure:25321: x86_64-openwrt-linux-musl-gcc -o conftest [snip]
        In file included from target-x86_64_musl/usr/include/wolfssl/wolfcrypt/dsa.h:33,
                         from target-x86_64_musl/usr/include/wolfssl/wolfcrypt/asn_public.h:35,
                        from target-x86_64_musl/usr/include/wolfssl/ssl.h:35,
                         from conftest.c:47:
        target-x86_64_musl/usr/include/wolfssl/wolfcrypt/integer.h:37:14: fatal error: wolfssl/wolfcrypt/sp_int.h: No such file or directory
             #include <wolfssl/wolfcrypt/sp_int.h>
                      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
        compilation terminated.
      
      and in the end thus produce curl without https support:
      
       curl: (1) Protocol "https" not supported or disabled in libcurl
      
      So fix it, by making the working wolfSSL mandatory and error out in
      configure step when that's not the case:
      
       checking for wolfSSL_Init in -lwolfssl... no
       configure: error: --with-wolfssl but wolfSSL was not found or doesn't work
      
      References: #19005, #19547
      Upstream-Status: Accepted [https://github.com/curl/curl/pull/9682
      
      ]
      Signed-off-by: default avatarPetr Štetiar <ynezz@true.cz>
      9140f366
  7. Oct 09, 2022