As was mentioned by Angelo Turetta <aturetta@commit.it> in ports/146766 the patch commited contains a mistake. In files/patch-src-lib-crypto.c there is a part: @@ -316,7 +316,11 @@ */ static ASN1_OCTET_STRING *openssl_cert_keyid(X509 *cert) { X509_EXTENSION *ext; +#if (OPENSSL_VERSION_NUMBER < 0x10000000L) const X509V3_EXT_METHOD *method; +#else + const X509V3_EXT_METHOD *method; +#endif ASN1_OCTET_STRING *keyid; int i; but it does nothing. I've made tests compiling bacula with openssl 0.9.7, 0.9.8 and 1.0.0 - OK without patching this part. So I've removed this part from the patch Fix: patch over files/patch-src-lib-crypto.c Patch attached with submission follows:
Maintainer of sysutils/bacula-server, Please note that PR ports/148967 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/148967 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org
State Changed From-To: open->feedback Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Approved.
State Changed From-To: feedback->open Maintainer approved.
Responsible Changed From-To: freebsd-ports-bugs->ohauer I'll take it
State Changed From-To: open->closed - Fix is no longer needed since bacula-5.0.3 PR 148967 is obsolated with PR 150263