mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 03:06:45 +08:00
b3c7e74cd2
* [nspr] Add new port 4.33 * [nss] Add new port 3.73.1 * [nss] Add new port 3.73.1 * Improve code * Add supports field * improve code * version * Update doc * [nss] Switch to gyp-nss fork to fix msvc 17 build * [nss] Improve code * [nss] Bump version to 3.74 * [nspr] Add new port 4.33 * [nss] Add new port 3.73.1 * improve code * Update doc * [nss] Switch to gyp-nss fork to fix msvc 17 build * [nss] Improve code * [nss] Bump to 3.74 * [nss] Bump to 3.75 * [nss] Fix mpi.h confusion When GYP generates rules for ninja, it puts nspr include dirs before nss's own include dirs. When the msmpi package is installed, this causes mpi.h from msmpi to be found, instead of multi-precision integer library that comes bundled with nss. This patch uses nspr headers from include/nspr subdirectory which sidesteps the mpi.h from the include root * [nss] add quotes around paths Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com> * [nss] remove debug versions of tools * [nspr] Remove redundant environment variable assignments * Add dependencies vcpkg-tool-mozbuild and vcpkg-tool-gyp-nss * clean doc * version * Remove unnecessary vcpkg_crosscompiling block on vcpkg-tool-gyp-nss. Guard for VCPKG_BUILD_TYPE Improve error reporting for unsupported VCPKG_TARGET_ARCHITECTURE Declare support for x64 rather than !x86 (given that the URI in question only has x64 binaries) Fix version numbers to use 'version'. Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com> Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com> Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
95 lines
3.0 KiB
CMake
95 lines
3.0 KiB
CMake
set(NSPR_VERSION "4.33")
|
|
|
|
vcpkg_download_distfile(ARCHIVE
|
|
URLS "https://releases.mozilla.org/pub/nspr/releases/v${NSPR_VERSION}/src/nspr-${NSPR_VERSION}.tar.gz"
|
|
FILENAME "nspr-${NSPR_VERSION}.tar.gz"
|
|
SHA512 8064f826c977f1302a341ca7a7aaf7977b5d10102062c030b1d42b856638e3408ab262447e8c7cfd5a98879b9b1043d17ceae66fbb1e5ed86d6bc3531f26667e
|
|
)
|
|
|
|
vcpkg_extract_source_archive_ex(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
ARCHIVE ${ARCHIVE}
|
|
REF "${NSPR_VERSION}"
|
|
)
|
|
|
|
set(MOZBUILD_ROOT "${CURRENT_HOST_INSTALLED_DIR}/tools/mozbuild")
|
|
|
|
set(MOZBUILD_BINDIR "${MOZBUILD_ROOT}/bin")
|
|
vcpkg_add_to_path("${MOZBUILD_BINDIR}")
|
|
|
|
set(MOZBUILD_MSYS_ROOT "${MOZBUILD_ROOT}/msys")
|
|
vcpkg_add_to_path(PREPEND "${MOZBUILD_MSYS_ROOT}")
|
|
|
|
set(OPTIONS "")
|
|
if (VCPKG_CRT_LINKAGE STREQUAL "dynamic")
|
|
list(APPEND OPTIONS "--disable-static-rtl")
|
|
else()
|
|
list(APPEND OPTIONS "--enable-static-rtl")
|
|
endif()
|
|
|
|
list(APPEND OPTIONS "--enable-win32-target=win95")
|
|
|
|
if (VCPKG_TARGET_ARCHITECTURE STREQUAL "x64")
|
|
list(APPEND OPTIONS "--enable-64bit")
|
|
elseif(VCPKG_TARGET_ARCHITECTURE STREQUAL "x86")
|
|
list(APPEND OPTIONS "--disable-64bit")
|
|
else()
|
|
message(FATAL_ERROR "Unsupported arch: ${VCPKG_TARGET_ARCHITECTURE}")
|
|
endif()
|
|
|
|
set(OPTIONS_DEBUG
|
|
"--enable-debug-rtl"
|
|
)
|
|
|
|
set(OPTIONS_RELEASE
|
|
"--disable-debug-rtl"
|
|
)
|
|
|
|
vcpkg_configure_make(
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
|
CONFIGURE_ENVIRONMENT_VARIABLES CC CXX LD
|
|
PROJECT_SUBPATH "nspr"
|
|
OPTIONS ${OPTIONS}
|
|
OPTIONS_DEBUG ${OPTIONS_DEBUG}
|
|
OPTIONS_RELEASE ${OPTIONS_RELEASE}
|
|
DISABLE_VERBOSE_FLAGS true
|
|
)
|
|
vcpkg_install_make()
|
|
vcpkg_copy_pdbs()
|
|
|
|
#
|
|
# VCPKG FHS adjustments
|
|
#
|
|
|
|
# Release
|
|
if (NOT VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "release")
|
|
file(GLOB BIN_RELEASE "${CURRENT_PACKAGES_DIR}/lib/*.dll" "${CURRENT_PACKAGES_DIR}/lib/*.pdb")
|
|
list(LENGTH BIN_RELEASE BIN_RELEASE_SIZE)
|
|
if (BIN_RELEASE_SIZE GREATER 0)
|
|
file(MAKE_DIRECTORY "${CURRENT_PACKAGES_DIR}/bin")
|
|
|
|
foreach(path ${BIN_RELEASE})
|
|
get_filename_component(name "${path}" NAME)
|
|
file(RENAME "${CURRENT_PACKAGES_DIR}/lib/${name}" "${CURRENT_PACKAGES_DIR}/bin/${name}")
|
|
endforeach()
|
|
endif()
|
|
endif()
|
|
|
|
# Debug
|
|
if (NOT VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "debug")
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
|
|
file(GLOB BIN_DEBUG "${CURRENT_PACKAGES_DIR}/debug/lib/*.dll" "${CURRENT_PACKAGES_DIR}/debug/lib/*.pdb")
|
|
list(LENGTH BIN_DEBUG BIN_DEBUG_SIZE)
|
|
if (BIN_DEBUG_SIZE GREATER 0)
|
|
file(MAKE_DIRECTORY "${CURRENT_PACKAGES_DIR}/debug/bin")
|
|
|
|
foreach(path IN LISTS BIN_DEBUG)
|
|
get_filename_component(name "${path}" NAME)
|
|
file(RENAME "${CURRENT_PACKAGES_DIR}/debug/lib/${name}" "${CURRENT_PACKAGES_DIR}/debug/bin/${name}")
|
|
endforeach()
|
|
endif()
|
|
endif()
|
|
|
|
# Copy license
|
|
file(INSTALL "${SOURCE_PATH}/nspr/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/nspr" RENAME copyright)
|