2017-11-27 02:28:16 +08:00
|
|
|
if(VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore")
|
|
|
|
message(FATAL_ERROR "${PORT} does not currently support UWP")
|
|
|
|
endif()
|
2016-11-03 21:06:02 +08:00
|
|
|
|
2020-05-07 04:20:49 +08:00
|
|
|
set(VERSION 1.7.0)
|
2017-11-02 07:35:07 +08:00
|
|
|
|
2016-11-03 21:06:02 +08:00
|
|
|
vcpkg_download_distfile(ARCHIVE
|
2017-11-02 07:35:07 +08:00
|
|
|
URLS "https://www.apache.org/dist/apr/apr-${VERSION}.tar.bz2"
|
|
|
|
FILENAME "apr-${VERSION}.tar.bz2"
|
2020-05-07 04:20:49 +08:00
|
|
|
SHA512 3dc42d5caf17aab16f5c154080f020d5aed761e22db4c5f6506917f6bfd2bf8becfb40af919042bd4ce1077d5de74aa666f5edfba7f275efba78e8893c115148
|
2016-11-03 21:06:02 +08:00
|
|
|
)
|
2019-10-08 01:35:13 +08:00
|
|
|
|
|
|
|
vcpkg_extract_source_archive_ex(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
ARCHIVE ${ARCHIVE}
|
|
|
|
)
|
2016-11-03 21:06:02 +08:00
|
|
|
|
2020-05-07 04:20:49 +08:00
|
|
|
if (VCPKG_TARGET_IS_WINDOWS)
|
|
|
|
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
|
|
|
private-headers INSTALL_PRIVATE_H
|
|
|
|
)
|
2019-03-13 04:37:08 +08:00
|
|
|
|
2020-05-07 04:20:49 +08:00
|
|
|
vcpkg_configure_cmake(
|
|
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
|
|
PREFER_NINJA
|
|
|
|
OPTIONS
|
|
|
|
-DINSTALL_PDB=OFF
|
|
|
|
-DMIN_WINDOWS_VER=Windows7
|
|
|
|
-DAPR_HAVE_IPV6=ON
|
|
|
|
-DAPR_INSTALL_PRIVATE_H=${INSTALL_PRIVATE_H}
|
|
|
|
${FEATURE_OPTIONS}
|
|
|
|
)
|
2016-11-03 21:06:02 +08:00
|
|
|
|
2020-05-07 04:20:49 +08:00
|
|
|
vcpkg_install_cmake()
|
2016-11-03 21:06:02 +08:00
|
|
|
|
2020-05-07 04:20:49 +08:00
|
|
|
# There is no way to suppress installation of the headers in debug builds.
|
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
2016-11-03 21:06:02 +08:00
|
|
|
|
2020-05-07 04:20:49 +08:00
|
|
|
# Both dynamic and static are built, so keep only the one needed
|
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL dynamic)
|
|
|
|
file(REMOVE ${CURRENT_PACKAGES_DIR}/lib/apr-1.lib
|
|
|
|
${CURRENT_PACKAGES_DIR}/lib/aprapp-1.lib
|
|
|
|
${CURRENT_PACKAGES_DIR}/debug/lib/apr-1.lib
|
|
|
|
${CURRENT_PACKAGES_DIR}/debug/lib/aprapp-1.lib)
|
|
|
|
else()
|
|
|
|
file(REMOVE ${CURRENT_PACKAGES_DIR}/lib/libapr-1.lib
|
|
|
|
${CURRENT_PACKAGES_DIR}/lib/libaprapp-1.lib
|
|
|
|
${CURRENT_PACKAGES_DIR}/debug/lib/libapr-1.lib
|
|
|
|
${CURRENT_PACKAGES_DIR}/debug/lib/libaprapp-1.lib)
|
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/bin ${CURRENT_PACKAGES_DIR}/debug/bin)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
vcpkg_copy_pdbs()
|
2016-11-04 03:08:24 +08:00
|
|
|
else()
|
2020-05-07 04:20:49 +08:00
|
|
|
# To cross-compile you will need a triplet file that locates the tool chain and sets --host and --cache parameters of "./configure".
|
|
|
|
# The ${VCPKG_PLATFORM_TOOLSET}.cache file must have been generated on the targeted host using "./configure -C".
|
|
|
|
# For example, to target aarch64-linux-gnu, triplets/aarch64-linux-gnu.cmake should contain (beyond the standard content):
|
|
|
|
# set(VCPKG_PLATFORM_TOOLSET aarch64-linux-gnu)
|
|
|
|
# set(VCPKG_CHAINLOAD_TOOLCHAIN_FILE ${MY_CROSS_DIR}/cmake/Toolchain-${VCPKG_PLATFORM_TOOLSET}.cmake)
|
|
|
|
# set(CONFIGURE_PARAMETER_1 --host=${VCPKG_PLATFORM_TOOLSET})
|
|
|
|
# set(CONFIGURE_PARAMETER_2 --cache-file=${MY_CROSS_DIR}/autoconf/${VCPKG_PLATFORM_TOOLSET}.cache)
|
|
|
|
if(CONFIGURE_PARAMETER_1)
|
|
|
|
message(STATUS "Configuring apr with ${CONFIGURE_PARAMETER_1} ${CONFIGURE_PARAMETER_2} ${CONFIGURE_PARAMETER_3}")
|
|
|
|
else()
|
|
|
|
message(STATUS "Configuring apr")
|
|
|
|
endif()
|
|
|
|
vcpkg_configure_make(
|
|
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
|
|
|
NO_DEBUG
|
|
|
|
OPTIONS
|
|
|
|
"--prefix=${CURRENT_INSTALLED_DIR}"
|
|
|
|
"${CONFIGURE_PARAMETER_1}"
|
|
|
|
"${CONFIGURE_PARAMETER_2}"
|
|
|
|
"${CONFIGURE_PARAMETER_3}"
|
|
|
|
)
|
|
|
|
|
|
|
|
vcpkg_install_make()
|
|
|
|
|
2016-11-04 03:08:24 +08:00
|
|
|
endif()
|
|
|
|
|
2016-11-03 21:06:02 +08:00
|
|
|
# Handle copyright
|
2020-05-07 04:20:49 +08:00
|
|
|
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
|
2016-11-04 00:01:49 +08:00
|
|
|
|