cppdev123

Results 20 comments of cppdev123

currently the macros added are `NO_WOLFSSL_STUB`, `HAVE_SNI` and `HAVE_EX_DATA` `HAVE_SNI` is essential since some sites will not accept the ssl connection without setting the host name `NO_WOLFSSL_STUB` prevents link error...

From what I saw in the docs there are currently two ways to overcome this: 1- Add a patch to wolfssl portfile.cmake to add desired macros but this will work...

I tried adding features support to vcpkg builds but the current commit does not seem to compile with vcpkg I made a new portfile.cmake and used the current commit: ```...

After adding `stdint.h` include to `wolfcrypto/src/evp.c` the build completed but with this option `-DWOLFSSL_OPENSSLEXTRA=yes` being set by default which is not what I want so I removed it and I...

after trials with vcpkg features and portfile.cmake it turned out that vcpkg will set features as follows "-DFEATURE=ON/OFF" while wolfssl uses "yes/no" instead of "ON/OFF" and it seems to be...

I opened the pull request https://github.com/wolfSSL/wolfssl/pull/5598 after transforming vcpkg ON/OFF to yes/no

@embhorn I reverted non cmake changes. vcpkg on/off options could be transformed to yes/no as follows: ``` foreach(FET ${FEATURE_OPTIONS}) string(REPLACE "=ON" "=yes" FET ${FET}) string(REPLACE "=OFF" "=no" FET ${FET}) set(FEATURE_OPTIONS_YES_NO...

same for me https://github.com/slint-ui/slint/issues/1313

regarding the check box I was using an old version of slint but please don't show a right mark when hovering the check box this confuses the user and makes...

For the read only property check here: https://github.com/slint-ui/slint/pull/1321 The problem with text is that it is not sharp like the rest of texts I think it needs some type of...