[go: up one dir, main page]

Activity for Giulio Benetti

  • Giulio Benetti Giulio Benetti committed [55ade1] on Git

    server.c: fix build failure as static library

  • Giulio Benetti Giulio Benetti committed [9b4ed0] on Armadeus ATF Custom Repo

    feat(plat/zynqmp): fix section `coherent_ram' will not fit in region `RAM'

  • Giulio Benetti Giulio Benetti created ticket #9

    Fix build failure as static library

  • Giulio Benetti Giulio Benetti committed [c6455f]

    configure: fix AC_CHECK_FUNCS(EVP_sha224 EVP_sha384 ...) failure on static linking

  • Giulio Benetti Giulio Benetti committed [876d96]

    configure: fix AC_CHECK_FUNCS(TLS_method TLSv1_method ...) failure on static linking

  • Giulio Benetti Giulio Benetti updated merge request #21

    fix AC_CHECK_FUNCS(...) failure on static linking

  • Giulio Benetti Giulio Benetti created merge request #21

    fix AC_CHECK_FUNCS(...) failure on static linking

  • Giulio Benetti Giulio Benetti committed [2f3c31]

    configure: fix AC_CHECK_FUNCS(EVP_sha224 EVP_sha384 ...) failure on static linking

  • Giulio Benetti Giulio Benetti committed [ea3a72]

    configure: fix AC_CHECK_FUNCS(TLS_method TLSv1_method ...) failure on static linking

  • Giulio Benetti Giulio Benetti committed [12df01]

    configure: fix AC_CHECK_FUNCS(EVP_sha224 EVP_sha384 ...) failure on static linking

  • Giulio Benetti Giulio Benetti committed [9ecb5d]

    configure: fix AC_CHECK_FUNCS(TLS_method TLSv1_method ...) failure on static linking

  • Giulio Benetti Giulio Benetti committed [8e273c]

    configure: fix AC_CHECK_FUNCS(EVP_sha224 EVP_sha384 ...) failure on

  • Giulio Benetti Giulio Benetti committed [1ab6e3]

    configure: fix AC_CHECK_FUNCS(TLS_method TLSv1_method ...) failure on

  • Giulio Benetti Giulio Benetti updated merge request #19

    configure: Invert AC_CHECK_LIB(EVP_md5,..) without -lz with -lz

  • Giulio Benetti Giulio Benetti posted a comment on merge request #19

    This patch is wrong. EVP_md5 is found correctly in -lcrypto. The problem comes after with AC_CHECK_FUNCS() I close this PR and after fixing correctly I will reopen another one. Best regards

  • Giulio Benetti Giulio Benetti committed [b4c57c]

    ci/Appveyor: Also build against MinGW32

  • Giulio Benetti Giulio Benetti committed [ddb9f9]

    MinGW32: Fix OpenSSL build

  • Giulio Benetti Giulio Benetti committed [8f7c44]

    ci, MinGW32: Use the MSYS OpenSSL library

  • Giulio Benetti Giulio Benetti posted a comment on merge request #19

    Hello, any news about this patch? This shows up only in static linking. Best regards

  • Giulio Benetti Giulio Benetti committed [065066]

    configure: Invert AC_CHECK_LIB(EVP_md5,..) without -lz with -lz

  • Giulio Benetti Giulio Benetti committed [b5f5c8]

    configure: Invert AC_CHECK_LIB(EVP_md5,..) without -lz with -lz

  • Giulio Benetti Giulio Benetti created merge request #19

    configure: Invert AC_CHECK_LIB(EVP_md5,..) without -lz with -lz

  • Giulio Benetti Giulio Benetti updated merge request #18

    Fix static linking build failure on DTLS

  • Giulio Benetti Giulio Benetti committed [77062d]

    configure: Invert AC_CHECK_LIB(EVP_md5,..) without -lz with -lz

  • Giulio Benetti Giulio Benetti posted a comment on ticket #1374

    Well, using AC_MSG_NOTICE() as logger, I've found the problem. I open another Merge Request. There shouldn't be other drawbacks.

  • Giulio Benetti Giulio Benetti posted a comment on ticket #1374

    Pardon, you were right. configure recognizes correctly EVP_md5 linking it with -lz But still getting error: The DTLS based transports require the libssl library from OpenSSL to be available and support DTLS I dig more.

  • Giulio Benetti Giulio Benetti posted a comment on ticket #1374

    And of course my patch on top of latest commit of master you've pointed me.

  • Giulio Benetti Giulio Benetti posted a comment on ticket #1374

    I mean I recompile Buildroot from scratch with same Architecture, static and without zlib package. All with my latest patch inverting the testing of -lz. So let's see if that rules(nested AC_CHECK_LIB()) works or not. If I find it tries to link with -lz, there is something wrong, otherwise it should be ok.

  • Giulio Benetti Giulio Benetti modified a comment on ticket #1374

    I explained myself bad. I've already tried, but stil gives problem with DTLS. So: Build static with master and AC_CHECK_LIB() with -lz inverted works. Now I'm going to compile without -lz, so let's see what happens Any other idea?

  • Giulio Benetti Giulio Benetti posted a comment on ticket #1374

    I explained myself bad. I've already tried, but stil gives problem with DTLS. So: Build static with master and AC_CHECK_LIB() with -lz inverted works. Now I'm going to compile with shared, so let's see what happens Any other idea?

  • Giulio Benetti Giulio Benetti committed [e2fdd5]

    configure: Fix -lcrypto -lz check during configure with static build

  • Giulio Benetti Giulio Benetti posted a comment on ticket #1374

    And invert AC_CHECK_LIB like below too? Because otherwise, with latest master we've got the same -lz dependency problem. if test x$CRYPTO = x; then AC_CHECK_LIB([crypto], [EVP_md5], [CRYPTO="crypto"; LIBCRYPTO="-lcrypto -lz"], [ AC_CHECK_LIB([crypto], [EVP_md5], [CRYPTO="crypto"; LIBCRYPTO="-lcrypto"])], [], [-lz]) else LIBCRYPTO="-l${CRYPTO}" fi

  • Giulio Benetti Giulio Benetti committed [d86949]

    configure: Fix -lcrypto -lz test

  • Giulio Benetti Giulio Benetti committed [ec049e]

    configure: Fix -lcrypto -lz test

  • Giulio Benetti Giulio Benetti committed [e02bb2]

    configure, static linking: Fix CRYPTO checks

  • Giulio Benetti Giulio Benetti modified a comment on merge request #18

    Do you mean something like this? if test x$CRYPTO = x; then AC_CHECK_LIB([crypto], [EVP_md5], [CRYPTO="crypto"; LIBCRYPTO="-lcrypto -lz"], [ AC_CHECK_LIB([crypto], [EVP_md5], [CRYPTO="crypto"; LIBCRYPTO="-lcrypto"])], [], [-lz]) else LIBCRYPTO="-l${CRYPTO}" fi Because in this way it works fine.

  • Giulio Benetti Giulio Benetti posted a comment on merge request #18

    Do you mean something like this? if test x$CRYPTO = x; then AC_CHECK_LIB([crypto], [EVP_md5], [CRYPTO="crypto"; LIBCRYPTO="-lcrypto -lz"], [ AC_CHECK_LIB([crypto], [EVP_md5], [CRYPTO="crypto"; LIBCRYPTO="-lcrypto"])], [], [-lz]) else LIBCRYPTO="-l${CRYPTO}" fi

  • Giulio Benetti Giulio Benetti posted a comment on merge request #18

    I give it a try. I didn't think about it, good idea. I let you know. Thanks

  • Giulio Benetti Giulio Benetti posted a comment on ticket #1374

    Here is the Merge Request: https://sourceforge.net/p/net-snmp/code/merge-requests/18/

  • Giulio Benetti Giulio Benetti created merge request #18

    Fix static linking build failure on DTLS

  • Giulio Benetti Giulio Benetti committed [c3c68d]

    configure, static linking: Fix CRYPTO checks

  • Giulio Benetti Giulio Benetti committed [da2ba9]

    configure, static linking: Fix CRYPTO checks

  • Giulio Benetti Giulio Benetti posted a comment on ticket #1374

    Found the problem. There was a mix of issues. Going to send a patch for libz check in static linking.

  • Giulio Benetti Giulio Benetti modified a comment on ticket #1374

    Sorry, same problem as before, but we're almost there. Now it's missing only zlib on "checking for DTLS_method" I'm going to try to fix your patch too. Here you have a Merge request for the same problem though: https://sourceforge.net/p/net-snmp/code/merge-requests/17/

  • Giulio Benetti Giulio Benetti modified a comment on ticket #1374

    Sorry, same problem as before, but we're almost there. I'm going to try to fix your patch too. Here you have a Merge request for the same problem though: https://sourceforge.net/p/net-snmp/code/merge-requests/17/

  • Giulio Benetti Giulio Benetti posted a comment on ticket #1374

    Sorry, same problem as before. Here you have a Merge request for the same problem: https://sourceforge.net/p/net-snmp/code/merge-requests/17/ I'm going to try to fix your patch too.

  • Giulio Benetti Giulio Benetti posted a comment on ticket #1374

    Oh yes. I've just realized somebody else took exactly that patch for Buildroot. Here is mailing list mail: http://buildroot-busybox.2317881.n4.nabble.com/PATCH-1-1-netsnmp-fix-static-build-with-openssl-td203429.html So we can close this ticket! Thank you.

  • Giulio Benetti Giulio Benetti posted a comment on ticket #1374

    Hello, this is a only workaround. It doesn't take into account autotools. You can notice I don't touch configure.ac. Anyway here is the log of a build failure with Buildroot: http://autobuild.buildroot.net/results/e27/e2787d15f72949cbb347e8a1d344f5f80b4d7697/build-end.log And here they're discussing a better patch: https://patchwork.ozlabs.org/patch/967726/ So what I propose is something temporary before the one proposed on buildroot patchwork. Kind regards

  • Giulio Benetti Giulio Benetti created ticket #1374

    configure: fix checking for DTLS_method

  • Giulio Benetti Giulio Benetti posted a comment on ticket #21

    Hi Robert, first of all, great job with this plugin. The x's stay for "don't care"...

  • Giulio Benetti Giulio Benetti modified a comment on ticket #21

    Hi Robert, first of all, great job with this plugin. The x's stay for "don't care"...

  • Giulio Benetti Giulio Benetti posted a comment on ticket #21

    Hi Robert, first of all, great job with this plugin. The x's stay for "don't care"...

  • Giulio Benetti Giulio Benetti created ticket #21

    Fixed bug in binary values

1