Date: Fri, 19 Jan 2018 20:33:23 +0000 (UTC) From: Palle Girgensohn <girgen@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r459469 - in head/security/apache-xml-security-c: . files Message-ID: <201801192033.w0JKXNsR096566@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: girgen Date: Fri Jan 19 20:33:23 2018 New Revision: 459469 URL: https://svnweb.freebsd.org/changeset/ports/459469 Log: Fix build problems with clang Two patches where pulled from upstream repository. Added: head/security/apache-xml-security-c/files/ head/security/apache-xml-security-c/files/patch-xsec_canon_XSECC14n20010315.cpp (contents, props changed) head/security/apache-xml-security-c/files/patch-xsec_enc_OpenSSL_OpenSSLCryptoSymmetricKey.hpp (contents, props changed) head/security/apache-xml-security-c/files/patch-xsec_tools_checksig_InteropResolver.cpp (contents, props changed) Modified: head/security/apache-xml-security-c/Makefile Modified: head/security/apache-xml-security-c/Makefile ============================================================================== --- head/security/apache-xml-security-c/Makefile Fri Jan 19 20:17:58 2018 (r459468) +++ head/security/apache-xml-security-c/Makefile Fri Jan 19 20:33:23 2018 (r459469) @@ -16,10 +16,12 @@ LIB_DEPENDS+= libxerces-c.so.3:textproc/xerces-c3 GNU_CONFIGURE= yes CONFIGURE_ARGS+=--with-xerces=${LOCALBASE} -USES= gmake libtool tar:bzip2 ssl +USES= cpe gmake libtool tar:bzip2 ssl USE_LDCONFIG= yes CONFIGURE_ARGS+=--with-openssl=${OPENSSLBASE} +CPE_PRODUCT= xml_security_for_c\+\+ +CPE_VENDOR= apache BROKEN_SSL= openssl-devel BROKEN_SSL_REASON_openssl-devel= field has incomplete type HMAC_CTX (aka hmac_ctx_st) Added: head/security/apache-xml-security-c/files/patch-xsec_canon_XSECC14n20010315.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/apache-xml-security-c/files/patch-xsec_canon_XSECC14n20010315.cpp Fri Jan 19 20:33:23 2018 (r459469) @@ -0,0 +1,22 @@ +Index: xsec/canon/XSECC14n20010315.cpp +=================================================================== +--- xsec/canon/XSECC14n20010315.cpp (revision 1821687) ++++ xsec/canon/XSECC14n20010315.cpp (working copy) +@@ -1148,7 +1148,7 @@ + // Is this the default? + if (currentName.sbStrcmp("xmlns") == 0 && + (!m_XPathSelection || m_XPathMap.hasNode(tmpAtts->item(i))) && +- !currentValue.sbStrcmp("") == 0) ++ currentValue.sbStrcmp("") != 0) + xmlnsFound = true; + + // A namespace node - See if we need to output +@@ -1297,7 +1297,7 @@ + // Is this the default? + if (currentName.sbStrcmp("xmlns") == 0 && + (!m_XPathSelection || m_XPathMap.hasNode(nsnode)) && +- !currentValue.sbStrcmp("") == 0) ++ currentValue.sbStrcmp("") != 0) + xmlnsFound = true; + + // A namespace node - See if we need to output Added: head/security/apache-xml-security-c/files/patch-xsec_enc_OpenSSL_OpenSSLCryptoSymmetricKey.hpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/apache-xml-security-c/files/patch-xsec_enc_OpenSSL_OpenSSLCryptoSymmetricKey.hpp Fri Jan 19 20:33:23 2018 (r459469) @@ -0,0 +1,33 @@ +------------------------------------------------------------------------ +r1806743 | scantor | 2017-08-31 01:23:01 +0200 (Thu, 31 Aug 2017) | 1 line + +Fix NULL warnings + +Index: xsec/enc/OpenSSL/OpenSSLCryptoSymmetricKey.hpp +=================================================================== +--- xsec/enc/OpenSSL/OpenSSLCryptoSymmetricKey.hpp (revision 1806742) ++++ xsec/enc/OpenSSL/OpenSSLCryptoSymmetricKey.hpp (revision 1806743) +@@ -151,7 +151,7 @@ + SymmetricKeyMode mode = MODE_CBC, + const unsigned char * iv = NULL, + const unsigned char* tag = NULL, +- unsigned int taglen = NULL); ++ unsigned int taglen = 0); + + /** + * \brief Continue an decrypt operation using this key. +Index: xsec/enc/XSECCryptoSymmetricKey.hpp +=================================================================== +--- xsec/enc/XSECCryptoSymmetricKey.hpp (revision 1806742) ++++ xsec/enc/XSECCryptoSymmetricKey.hpp (revision 1806743) +@@ -185,7 +185,7 @@ + SymmetricKeyMode mode = MODE_CBC, + const unsigned char* iv = NULL, + const unsigned char* tag = NULL, +- unsigned int taglen = NULL) = 0; ++ unsigned int taglen = 0) = 0; + + /** + * \brief Continue a decrypt operation using this key. + +------------------------------------------------------------------------ Added: head/security/apache-xml-security-c/files/patch-xsec_tools_checksig_InteropResolver.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/apache-xml-security-c/files/patch-xsec_tools_checksig_InteropResolver.cpp Fri Jan 19 20:33:23 2018 (r459469) @@ -0,0 +1,20 @@ +------------------------------------------------------------------------ +r1807005 | scantor | 2017-09-01 22:42:20 +0200 (Fri, 01 Sep 2017) | 1 line + +Cleanup, reverse double negatives in Xalan code paths + +Index: xsec/tools/checksig/InteropResolver.cpp +=================================================================== +--- xsec/tools/checksig/InteropResolver.cpp (revision 1807004) ++++ xsec/tools/checksig/InteropResolver.cpp (revision 1807005) +@@ -648,7 +648,7 @@ + + } + +- return false; ++ return NULL; + + } + + +------------------------------------------------------------------------
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201801192033.w0JKXNsR096566>