On 01/22/2018 01:21 PM, Steve Saunders (CableLabs) wrote: > Thanks Mats !! > > Yes, I am able to build locally, so we have a suite of build options that we > should test against prior to submitting a patch? > > Also, were you able to get to those build error message by following jenkins > links? I hunted around early, but did not find the specific error that you > did. > > I’ll have a look the implicit declaration of function ‘ConvertDerCertToPem' > error
yeah, from all of those failure pages, click "Console Output" (which gets you the tail end of a slightly styled log) or "Plain Text" (which gets you the whole build log) The code you've added to the end of credresource.c is not inside the big #if defined (__WITH_TLS__) || defined(__WITH_DTLS__) block, which is probably the problem - you end up referencing things that are not defined unless building in secured mode. I'm not a fan of so much conditional code, to be honest, it leads to these kind of issues. _______________________________________________ iotivity-dev mailing list [email protected] https://lists.iotivity.org/mailman/listinfo/iotivity-dev
