aboutsummaryrefslogtreecommitdiff
path: root/ports/python3
AgeCommit message (Collapse)Author
2019-02-06[hyperscan] New port (#5285)Bobby Martin
* add support for building hyperscan * patch hyperscan to work with latest boost * correct hyperscan source dir name * speed the build by depending on only the parts of boost we actually need * make python3 support release-only builds * upgrade to hyperscan 5.1.0 * remove redundant disambiguate patch * Add comments about how to build * restore original x64-windows-static.cmake * [hyperscan] Check linkage * [python3] Allow DLLs without LIBs * [hyperscan] Only static library * [python3] Revert changes that cause regression in boost-python * [python3] Revert changes that cause regression in boost-python
2019-01-30[boost][python3] Fix building with VS 2019Robert Schumacher
2018-07-03Fix for python3 compile, fixes issue 3715 (#3827)Miodrag Milanović
* Fix for python3 compile, fixes issue 3715 * [python3] Use PATCHES of vcpkg_from_github
2018-04-26[python3] Fix folder handlingAlexander Karatarakis
2018-03-18Include windows.h before including consoleapi.h (#3050)Daniel Strommen
* Include windows.h before including consoleapi.h Issue: cpython fails to build against Windows Insider Preview SDK 17115 Root Cause: Failure to include windows.h before other Windows headers (consoleapi.h) Solution: Include windows.h before consoleapi.h If you don't include Windows.h before other Windows headers, then your code is likely to break with new versions of the Windows Platform SDK, as headers move around or new intraheader dependencies are added. That is what happened here. * Remove redundant consoleapi.h The documented header for all the console API's is windows.h, which includes wincon.h which includes consoleapi.h. Consoleapi.h used to also include windows.h, but this caused a circular dependency. So, adjusting this to only include windows.h and omit the consoleapi.h which is redundant. * [python3] formatting
2018-01-04[python3] Update to 3.6.4Albert Ziegenhagel
2017-05-20Add warning for unsupported linkage combinationMartin Müller
Don't remove source directories Install Python's standard library
2017-05-19Add port for Python 3Martin Müller