apr: Update to 1.6.3

This commit is contained in:
Alexey Pavlov
2018-06-26 09:31:09 +03:00
parent 63a1162b3c
commit c0b5a0bb2f
2 changed files with 6 additions and 16 deletions

View File

@@ -1,7 +1,7 @@
# Maintainer: Alexey Pavlov <alexpux@gmail.com>
pkgname=('apr' 'apr-devel')
pkgver=1.5.2
pkgver=1.6.3
pkgrel=1
pkgdesc="The Apache Portable Runtime"
arch=('i686' 'x86_64')
@@ -17,8 +17,8 @@ source=(https://archive.apache.org/dist/apr/apr-${pkgver}.tar.bz2
'tests-fix_paths.patch'
'tests.patch'
'fix-debian-layout.patch')
sha256sums=('7d03ed29c22a7152be45b8e50431063736df9e1daa1ddf93f6a547ba7a28f67a'
'7b5d67e690860c8a575aa0b42629e6c4122d897199a403d716695774d08c7bb7'
sha256sums=('131f06d16d7aabd097fa992a33eec2b6af3962f93e6d570a9bd4d85e95993172'
'a247a6b23dd0681613297d3ecc17a3491052da5bf502181f508edc095d154503'
'746861efed2c2e064b6acfef6ab2ee3f343ad411528a48a63dc4a3028a7aa333'
'94657ee8603f12cc4a767f819cc52c4fef6721c98c5c94d9a5e0b8c87cdd5c72'
'e4b823a600bc3efa948229ad12d157e8038fd570f95ca7f2f260c431eeef1a09'

View File

@@ -1,25 +1,15 @@
diff -Naur apr-1.4.8-orig/build/config.guess apr-1.4.8/build/config.guess
--- apr-1.4.8-orig/build/config.guess 2013-04-27 12:51:45.000000000 +0400
+++ apr-1.4.8/build/config.guess 2013-06-25 12:43:36.319336000 +0400
@@ -802,6 +802,9 @@
*:MINGW64*:*)
echo ${UNAME_MACHINE}-pc-mingw64
exit ;;
+ i*:MSYS*:*)
+ echo ${UNAME_MACHINE}-pc-msys
+ exit ;;
*:MINGW*:*)
echo ${UNAME_MACHINE}-pc-mingw32
exit ;;
@@ -845,6 +848,9 @@
@@ -870,6 +870,9 @@
amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*)
echo x86_64-unknown-cygwin
exit ;;
+ amd64:MSYS*:*:* | x86_64:MSYS*:*:*)
+ echo x86_64-unknown-msys
+ exit ;;
p*:CYGWIN*:*)
echo powerpcle-unknown-cygwin
prep*:SunOS:5.*:*)
echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
exit ;;
diff -Naur apr-1.4.8-orig/configure.in apr-1.4.8/configure.in
--- apr-1.4.8-orig/configure.in 2013-06-25 12:43:55.459961000 +0400