mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-04 10:01:38 +08:00
c6928dfb9e
* [python3] Update to 3.11.3 * Force set PythonForBuild on windows * Set LD_LIBRARY_PATH on unix * Always use vcpkg_find_acquire_program(PYTHON3) on windows * Remove LD_LIBRARY_PATH shenanigans * [vtk] Parse python version from include folder * Fix static builds on windows * Pass --with-build-python on unix * [omniorb] Fix python version in patch * Resurrect rpath patch * [python3] fix usage * [gobject-introspection] don't hardcode python version * Update vcpkg_find_aquire_program(PYTHON3) This is also required for gobject-introspection * [paraview] don't hardcode python version * [vtk-dicom] don't hardcode python version * Update python in vcpkgTools.xml * Fix host arch detection in vcpkg_find_acquire_program(PYTHON3) * [libpq] Don't hardcode python version * [shiva] Don't pass python variables * [vcpkg-get-python-packages] Delete unused file, update hardcoded python version * [python3] update to 3.11.4 * [omniorb] Use PREPEND in vcpkg_add_to_path So that python from vcpkg is picked before system python * libpq quickfix * re-fix libpq * fix vcpkg-get-python-packages * Make windows 7 patch compatible with unix builds * Copy pyd files to bin Also fixes copying files that do not belong to current build tree * Fix static builds * Speculatively fix osx regression * Fix omniorb on unix * [gobject-introspection] fix windows builds * [vtk] Update vendored copy of mpi4py for python 3.11 support * [mdl-sdk] Fix python * [gobject-introspection] fix the fix of a fix... * Update versions * Undo changes in gobject-introspection and vcpkg_find_aquire_program(PYTHON3) --------- Co-authored-by: root <root@DESKTOP-UIPL9V8>
160 lines
5.8 KiB
CMake
160 lines
5.8 KiB
CMake
vcpkg_download_distfile(ARCHIVE
|
|
URLS "https://ftp.postgresql.org/pub/source/v${VERSION}/postgresql-${VERSION}.tar.bz2"
|
|
FILENAME "postgresql-${VERSION}.tar.bz2"
|
|
SHA512 cac97edeb40df1e8f2162f401b465751132929d7249495ef001e950645a2db46343bd732e7bd6504a7f795e25aea66724f2f4ab0065e3d9331b36db4b3a3bec6
|
|
)
|
|
|
|
vcpkg_extract_source_archive(
|
|
SOURCE_PATH
|
|
ARCHIVE "${ARCHIVE}"
|
|
PATCHES
|
|
unix/fix-configure.patch
|
|
unix/single-linkage.patch
|
|
unix/no-server-tools.patch
|
|
unix/mingw-install.patch
|
|
unix/python.patch
|
|
windows/macro-def.patch
|
|
windows/python_lib.patch
|
|
windows/win_bison_flex.patch
|
|
windows/msbuild.patch
|
|
windows/spin_delay.patch
|
|
)
|
|
|
|
file(GLOB _py3_include_path "${CURRENT_HOST_INSTALLED_DIR}/include/python3*")
|
|
string(REGEX MATCH "python3\\.([0-9]+)" _python_version_tmp "${_py3_include_path}")
|
|
set(PYTHON_VERSION_MINOR "${CMAKE_MATCH_1}")
|
|
vcpkg_replace_string("${SOURCE_PATH}/configure.ac" "python_version=3.REPLACEME" "python_version=3.${PYTHON_VERSION_MINOR}")
|
|
|
|
if("client" IN_LIST FEATURES)
|
|
set(HAS_TOOLS TRUE)
|
|
else()
|
|
set(HAS_TOOLS FALSE)
|
|
endif()
|
|
|
|
set(required_programs PERL)
|
|
if(VCPKG_TARGET_IS_WINDOWS)
|
|
list(APPEND required_programs BISON FLEX)
|
|
endif()
|
|
foreach(program_name IN LISTS required_programs)
|
|
# Need to rename win_bison and win_flex to just bison and flex
|
|
vcpkg_find_acquire_program(${program_name})
|
|
get_filename_component(program_dir ${${program_name}} DIRECTORY)
|
|
vcpkg_add_to_path(PREPEND "${program_dir}")
|
|
endforeach()
|
|
|
|
vcpkg_cmake_get_vars(cmake_vars_file)
|
|
include("${cmake_vars_file}")
|
|
|
|
if(VCPKG_DETECTED_MSVC)
|
|
if("nls" IN_LIST FEATURES)
|
|
vcpkg_acquire_msys(MSYS_ROOT PACKAGES gettext)
|
|
vcpkg_add_to_path("${MSYS_ROOT}/usr/bin")
|
|
endif()
|
|
if("xml" IN_LIST FEATURES)
|
|
x_vcpkg_pkgconfig_get_modules(
|
|
PREFIX PC_LIBXML2
|
|
MODULES --msvc-syntax libxml-2.0
|
|
LIBS
|
|
)
|
|
separate_arguments(LIBXML2_LIBS_DEBUG NATIVE_COMMAND "${PC_LIBXML2_LIBS_DEBUG}")
|
|
separate_arguments(LIBXML2_LIBS_RELEASE NATIVE_COMMAND "${PC_LIBXML2_LIBS_RELEASE}")
|
|
endif()
|
|
if("xslt" IN_LIST FEATURES)
|
|
x_vcpkg_pkgconfig_get_modules(
|
|
PREFIX PC_LIBXSLT
|
|
MODULES --msvc-syntax libxslt
|
|
LIBS
|
|
)
|
|
separate_arguments(LIBXSLT_LIBS_DEBUG NATIVE_COMMAND "${PC_LIBXSLT_LIBS_DEBUG}")
|
|
separate_arguments(LIBXSLT_LIBS_RELEASE NATIVE_COMMAND "${PC_LIBXSLT_LIBS_RELEASE}")
|
|
endif()
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/build-msvc.cmake")
|
|
if(NOT VCPKG_BUILD_TYPE)
|
|
build_msvc(DEBUG "${SOURCE_PATH}")
|
|
endif()
|
|
build_msvc(RELEASE "${SOURCE_PATH}")
|
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin")
|
|
endif()
|
|
|
|
if(HAS_TOOLS)
|
|
vcpkg_copy_tool_dependencies("${CURRENT_PACKAGES_DIR}/tools/${PORT}")
|
|
else()
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/tools")
|
|
endif()
|
|
else()
|
|
file(COPY "${CMAKE_CURRENT_LIST_DIR}/Makefile" DESTINATION "${SOURCE_PATH}")
|
|
|
|
vcpkg_list(SET BUILD_OPTS)
|
|
foreach(option IN ITEMS icu lz4 nls openssl python readline xml xslt zlib zstd)
|
|
if(option IN_LIST FEATURES)
|
|
list(APPEND BUILD_OPTS --with-${option})
|
|
else()
|
|
list(APPEND BUILD_OPTS --without-${option})
|
|
endif()
|
|
endforeach()
|
|
if("nls" IN_LIST FEATURES)
|
|
set(ENV{MSGFMT} "${CURRENT_HOST_INSTALLED_DIR}/tools/gettext/bin/msgfmt${VCPKG_HOST_EXECUTABLE_SUFFIX}")
|
|
if(VCPKG_TARGET_IS_ANDROID)
|
|
list(APPEND BUILD_OPTS [[LIBS=$LIBS -liconv]])
|
|
endif()
|
|
endif()
|
|
if("python" IN_LIST FEATURES)
|
|
vcpkg_find_acquire_program(PYTHON3)
|
|
list(APPEND BUILD_OPTS "PYTHON=${PYTHON3}")
|
|
endif()
|
|
if(VCPKG_TARGET_IS_ANDROID) # AND CMAKE_SYSTEM_VERSION LESS 26)
|
|
list(APPEND BUILD_OPTS ac_cv_header_langinfo_h=no)
|
|
endif()
|
|
if(VCPKG_DETECTED_CMAKE_OSX_SYSROOT)
|
|
list(APPEND BUILD_OPTS "PG_SYSROOT=${VCPKG_DETECTED_CMAKE_OSX_SYSROOT}")
|
|
endif()
|
|
vcpkg_configure_make(
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
|
COPY_SOURCE
|
|
AUTOCONFIG
|
|
ADDITIONAL_MSYS_PACKAGES autoconf-archive
|
|
DIRECT_PACKAGES
|
|
"https://mirror.msys2.org/msys/x86_64/tzcode-2023c-1-x86_64.pkg.tar.zst"
|
|
7550b843964744607f736a7138f10c6cd92489406a1b84ac71d9a9d8aa16bc69048aa1b24e1f49291b010347047008194c334ca9c632e17fa8245e85549e3c7a
|
|
OPTIONS
|
|
${BUILD_OPTS}
|
|
OPTIONS_DEBUG
|
|
--enable-debug
|
|
)
|
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic")
|
|
set(ENV{LIBPQ_LIBRARY_TYPE} shared)
|
|
else()
|
|
set(ENV{LIBPQ_LIBRARY_TYPE} static)
|
|
endif()
|
|
if(VCPKG_TARGET_IS_MINGW)
|
|
set(ENV{LIBPQ_USING_MINGW} yes)
|
|
endif()
|
|
if(HAS_TOOLS)
|
|
set(ENV{LIBPQ_ENABLE_TOOLS} yes)
|
|
endif()
|
|
vcpkg_install_make()
|
|
|
|
vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/include/postgresql/server/pg_config.h" "#define CONFIGURE_ARGS" "// #define CONFIGURE_ARGS")
|
|
vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/include/pg_config.h" "#define CONFIGURE_ARGS" "// #define CONFIGURE_ARGS")
|
|
endif()
|
|
|
|
vcpkg_fixup_pkgconfig()
|
|
configure_file("${CMAKE_CURRENT_LIST_DIR}/vcpkg-cmake-wrapper.cmake" "${CURRENT_PACKAGES_DIR}/share/postgresql/vcpkg-cmake-wrapper.cmake" @ONLY)
|
|
|
|
file(REMOVE_RECURSE
|
|
"${CURRENT_PACKAGES_DIR}/debug/doc"
|
|
"${CURRENT_PACKAGES_DIR}/debug/include"
|
|
"${CURRENT_PACKAGES_DIR}/debug/share"
|
|
"${CURRENT_PACKAGES_DIR}/debug/symbols"
|
|
"${CURRENT_PACKAGES_DIR}/debug/tools"
|
|
"${CURRENT_PACKAGES_DIR}/symbols"
|
|
"${CURRENT_PACKAGES_DIR}/tools/${PORT}/debug"
|
|
)
|
|
|
|
file(INSTALL "${CURRENT_PORT_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
|
|
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/COPYRIGHT")
|