aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ports/apr/CONTROL2
-rw-r--r--ports/apr/portfile.cmake11
2 files changed, 8 insertions, 5 deletions
diff --git a/ports/apr/CONTROL b/ports/apr/CONTROL
index 94581eab0..1f771a0ed 100644
--- a/ports/apr/CONTROL
+++ b/ports/apr/CONTROL
@@ -1,3 +1,3 @@
Source: apr
-Version: 1.6.2-1
+Version: 1.6.3
Description: The Apache Portable Runtime (APR) is a C library that forms a system portability layer that covers many operating systems.
diff --git a/ports/apr/portfile.cmake b/ports/apr/portfile.cmake
index 414ca1dda..64ad02b81 100644
--- a/ports/apr/portfile.cmake
+++ b/ports/apr/portfile.cmake
@@ -7,11 +7,14 @@
#
include(vcpkg_common_functions)
-set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/apr-1.6.2)
+
+set(VERSION 1.6.3)
+
+set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/apr-${VERSION})
vcpkg_download_distfile(ARCHIVE
- URLS "https://www.apache.org/dist/apr/apr-1.6.2.tar.bz2"
- FILENAME "apr-1.6.2.tar.bz2"
- SHA512 20f449fde522f186b919b64ce6f90073b267557e17438607d31af917eca7941222dd7a7379d66f1430ff68f7e28fbccd140d24f3ca7aae8a876a550b19de284a
+ URLS "https://www.apache.org/dist/apr/apr-${VERSION}.tar.bz2"
+ FILENAME "apr-${VERSION}.tar.bz2"
+ SHA512 f6b8679ae7fafff793c825c78775c84a646267c441710a50664589850e13148719b4eab48ab6e7c95b7aed085cff831115687434a7b160dcc2faa0eae63ac996
)
vcpkg_extract_source_archive(${ARCHIVE})