apr-util: update to 1.6.1. (#8511)

This commit is contained in:
maxice8 2017-10-24 10:48:58 -02:00 committed by Juan RP
parent 766840e478
commit 220ebd5c1b
2 changed files with 3 additions and 50 deletions

View File

@ -1,47 +0,0 @@
--- crypto/apr_crypto_openssl.c.orig 2017-05-03 23:18:52.000000000 +0000
+++ crypto/apr_crypto_openssl.c 2017-07-30 10:21:22.592591988 +0000
@@ -117,7 +117,7 @@
static apr_status_t crypto_init(apr_pool_t *pool, const char *params,
const apu_err_t **result)
{
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
CRYPTO_malloc_init();
#else
OPENSSL_malloc_init();
@@ -721,7 +721,7 @@
if (!EVP_EncryptUpdate(ctx->cipherCtx, (*out), &outl,
(unsigned char *) in, inlen)) {
#endif
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
EVP_CIPHER_CTX_cleanup(ctx->cipherCtx);
#else
EVP_CIPHER_CTX_reset(ctx->cipherCtx);
@@ -764,7 +764,7 @@
else {
*outlen = len;
}
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
EVP_CIPHER_CTX_cleanup(ctx->cipherCtx);
#else
EVP_CIPHER_CTX_reset(ctx->cipherCtx);
@@ -891,7 +891,7 @@
if (!EVP_DecryptUpdate(ctx->cipherCtx, *out, &outl, (unsigned char *) in,
inlen)) {
#endif
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
EVP_CIPHER_CTX_cleanup(ctx->cipherCtx);
#else
EVP_CIPHER_CTX_reset(ctx->cipherCtx);
@@ -934,7 +934,7 @@
else {
*outlen = len;
}
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
EVP_CIPHER_CTX_cleanup(ctx->cipherCtx);
#else
EVP_CIPHER_CTX_reset(ctx->cipherCtx);

View File

@ -1,7 +1,7 @@
# Template file for 'apr-util' # Template file for 'apr-util'
pkgname=apr-util pkgname=apr-util
version=1.6.0 version=1.6.1
revision=3 revision=1
build_style=gnu-configure build_style=gnu-configure
configure_args=" configure_args="
--with-apr=${XBPS_CROSS_BASE}/usr/bin/apr-1-config --with-pgsql --with-ldap --with-apr=${XBPS_CROSS_BASE}/usr/bin/apr-1-config --with-pgsql --with-ldap
@ -18,7 +18,7 @@ maintainer="Juan RP <xtraeme@voidlinux.eu>"
homepage="http://apr.apache.org/" homepage="http://apr.apache.org/"
license="Apache-2.0" license="Apache-2.0"
distfiles="http://www.apache.org/dist/apr/${pkgname}-${version}.tar.bz2" distfiles="http://www.apache.org/dist/apr/${pkgname}-${version}.tar.bz2"
checksum=8474c93fa74b56ac6ca87449abe3e155723d5f534727f3f33283f6631a48ca4c checksum=d3e12f7b6ad12687572a3a39475545a072608f4ba03a6ce8a3778f607dd0035b
pre_configure() { pre_configure() {
sed -i configure \ sed -i configure \