mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 02:49:01 +08:00
6b3a1a2188
* Use VERSION * Update to 0.21.1 * Update win unicode paths patch * Revise uwp patches * Cleanup * Build tools for uwp in CI * tools not supported on uwp * Add license GPL3.0-or-later. gettext.c has: This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. * Fix license, but better. * Version database --------- Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
153 lines
5.9 KiB
CMake
153 lines
5.9 KiB
CMake
if(VCPKG_TARGET_IS_LINUX AND NOT EXISTS "/usr/include/libintl.h")
|
|
message(FATAL_ERROR "When targeting Linux, `libintl.h` is expected to come from the C Runtime Library (glibc). "
|
|
"Please use \"sudo apt-get install libc-dev\" or the equivalent to install development files."
|
|
)
|
|
endif()
|
|
|
|
set(VCPKG_POLICY_ALLOW_RESTRICTED_HEADERS enabled)
|
|
|
|
vcpkg_download_distfile(ARCHIVE
|
|
URLS "https://ftp.gnu.org/pub/gnu/gettext/gettext-${VERSION}.tar.gz"
|
|
"https://www.mirrorservice.org/sites/ftp.gnu.org/gnu/gettext/gettext-${VERSION}.tar.gz"
|
|
FILENAME "gettext-${VERSION}.tar.gz"
|
|
SHA512 ccd43a43fab3c90ed99b3e27628c9aeb7186398153b137a4997f8c7ddfd9729b0ba9d15348567e5206af50ac027673d2b8a3415bb3fc65f87ad778f85dc03a05
|
|
)
|
|
|
|
vcpkg_extract_source_archive(SOURCE_PATH
|
|
ARCHIVE "${ARCHIVE}"
|
|
PATCHES
|
|
android.patch
|
|
uwp.patch
|
|
win-gethostname.patch
|
|
0003-Fix-win-unicode-paths.patch
|
|
rel_path.patch
|
|
)
|
|
|
|
vcpkg_find_acquire_program(BISON)
|
|
get_filename_component(BISON_PATH "${BISON}" DIRECTORY)
|
|
vcpkg_add_to_path("${BISON_PATH}")
|
|
|
|
set(OPTIONS
|
|
--enable-relocatable #symbol duplication with glib-init.c?
|
|
--enable-c++
|
|
--disable-acl
|
|
--disable-csharp
|
|
--disable-curses
|
|
--disable-java
|
|
--disable-openmp
|
|
)
|
|
if(VCPKG_TARGET_IS_WINDOWS)
|
|
list(APPEND OPTIONS
|
|
# Avoid unnecessary test.
|
|
--with-included-glib
|
|
# This is required. For some reason these do not get correctly identified for release builds.
|
|
ac_cv_func_wcslen=yes
|
|
ac_cv_func_memmove=yes
|
|
# The following are required for a full gettext built (libintl and tools).
|
|
gl_cv_func_printf_directive_n=no # segfaults otherwise with popup window
|
|
ac_cv_func_memset=yes # not detected in release builds
|
|
ac_cv_header_pthread_h=no
|
|
ac_cv_header_dirent_h=no
|
|
ac_cv_header_getopt_h=no
|
|
)
|
|
endif()
|
|
|
|
# These functions scope any changes to VCPKG_BUILD_TYPE
|
|
function(build_libintl_and_tools)
|
|
cmake_parse_arguments(arg "" "BUILD_TYPE" "" ${ARGN})
|
|
if(DEFINED arg_BUILD_TYPE)
|
|
set(VCPKG_BUILD_TYPE "${arg_BUILD_TYPE}")
|
|
endif()
|
|
vcpkg_configure_make(SOURCE_PATH "${SOURCE_PATH}"
|
|
DETERMINE_BUILD_TRIPLET
|
|
USE_WRAPPERS
|
|
ADD_BIN_TO_PATH # So configure can check for working iconv
|
|
ADDITIONAL_MSYS_PACKAGES gzip
|
|
OPTIONS
|
|
${OPTIONS}
|
|
)
|
|
vcpkg_install_make(MAKEFILE "${CMAKE_CURRENT_LIST_DIR}/Makefile")
|
|
vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/lib/gettext/user-email" "${CURRENT_INSTALLED_DIR}" "`dirname $0`/../..")
|
|
endfunction()
|
|
|
|
function(build_libintl_only)
|
|
cmake_parse_arguments(arg "" "BUILD_TYPE" "" ${ARGN})
|
|
if(DEFINED arg_BUILD_TYPE)
|
|
set(VCPKG_BUILD_TYPE "${arg_BUILD_TYPE}")
|
|
endif()
|
|
vcpkg_configure_make(SOURCE_PATH "${SOURCE_PATH}/gettext-runtime"
|
|
DETERMINE_BUILD_TRIPLET
|
|
USE_WRAPPERS
|
|
ADD_BIN_TO_PATH # So configure can check for working iconv
|
|
OPTIONS
|
|
${OPTIONS}
|
|
)
|
|
vcpkg_install_make(
|
|
MAKEFILE "${CMAKE_CURRENT_LIST_DIR}/Makefile"
|
|
BUILD_TARGET build-intl
|
|
INSTALL_TARGET install-intl
|
|
)
|
|
endfunction()
|
|
|
|
if("tools" IN_LIST FEATURES)
|
|
# Minimization of gettext tools build time by:
|
|
# - building tools only for release configuration
|
|
# - custom top-level Makefile
|
|
# - configuration cache
|
|
list(APPEND OPTIONS "--cache-file=../config.cache-${TARGET_TRIPLET}")
|
|
file(REMOVE_RECURSE "${CURRENT_BUILDTREES_DIR}/config.cache-${TARGET_TRIPLET}")
|
|
build_libintl_and_tools(BUILD_TYPE "release")
|
|
vcpkg_copy_tool_dependencies("${CURRENT_PACKAGES_DIR}/tools/${PORT}/bin")
|
|
file(GLOB tool_libs
|
|
LIST_DIRECTORIES false
|
|
"${CURRENT_PACKAGES_DIR}/bin/*"
|
|
"${CURRENT_PACKAGES_DIR}/lib/*"
|
|
)
|
|
list(FILTER tool_libs EXCLUDE REGEX "intl[^/\\\\]*$")
|
|
file(REMOVE ${tool_libs})
|
|
file(GLOB tool_includes
|
|
LIST_DIRECTORIES true
|
|
"${CURRENT_PACKAGES_DIR}/include/*"
|
|
)
|
|
list(FILTER tool_includes EXCLUDE REGEX "intl[^/\\\\]*$")
|
|
file(REMOVE_RECURSE ${tool_includes})
|
|
if(VCPKG_TARGET_IS_LINUX)
|
|
set(VCPKG_POLICY_EMPTY_PACKAGE enabled)
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/include")
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/lib")
|
|
elseif(NOT DEFINED VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "debug")
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}.release")
|
|
file(RENAME "${CURRENT_PACKAGES_DIR}" "${CURRENT_PACKAGES_DIR}.release")
|
|
file(READ "${CURRENT_BUILDTREES_DIR}/config.cache-${TARGET_TRIPLET}" config_cache)
|
|
string(REGEX REPLACE "\nac_cv_env[^\n]*" "" config_cache "${config_cache}") # Eliminate build type flags
|
|
file(WRITE "${CURRENT_BUILDTREES_DIR}/config.cache-${TARGET_TRIPLET}" "${config_cache}")
|
|
build_libintl_only(BUILD_TYPE "debug")
|
|
file(RENAME "${CURRENT_PACKAGES_DIR}/debug" "${CURRENT_PACKAGES_DIR}.release/debug")
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}")
|
|
file(RENAME "${CURRENT_PACKAGES_DIR}.release" "${CURRENT_PACKAGES_DIR}")
|
|
endif()
|
|
else()
|
|
if(VCPKG_TARGET_IS_LINUX)
|
|
set(VCPKG_POLICY_EMPTY_PACKAGE enabled)
|
|
else()
|
|
list(APPEND OPTIONS "--config-cache")
|
|
build_libintl_only()
|
|
endif()
|
|
# A fast installation of the autopoint tool and data, needed for autotools
|
|
include("${CMAKE_CURRENT_LIST_DIR}/install-autopoint.cmake")
|
|
install_autopoint()
|
|
endif()
|
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
|
|
|
|
vcpkg_copy_pdbs()
|
|
|
|
if(NOT VCPKG_TARGET_IS_LINUX)
|
|
file(COPY "${CMAKE_CURRENT_LIST_DIR}/vcpkg-cmake-wrapper.cmake" DESTINATION "${CURRENT_PACKAGES_DIR}/share/intl")
|
|
endif()
|
|
if("tools" IN_LIST FEATURES AND NOT VCPKG_CROSSCOMPILING)
|
|
file(COPY "${CMAKE_CURRENT_LIST_DIR}/vcpkg-port-config.cmake" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
|
|
endif()
|
|
|
|
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/gettext-runtime/COPYING" "${SOURCE_PATH}/COPYING")
|