On Ubuntu 16.04, old versions of g++ such as 4.9 are available. Other
Linux distributions may also ship with g++ versions older than 5. With
the previous test, the bootstrap script was not failing fast and instead
was starting to compile vcpkg before it encountered the unsupported flag
-std=c++1z. The error message was not very explicit and that was making
it difficult to the developer to understand what the problem was. However,
when using g++ 5, an clear error message was printed to help the user.
This commit shows the helpful error message anytime g++ is older than
version 6.
* Improve cmake routine for nodejs/http-parser. Now it is installed as a
propper target and can be searched with `find_package(http-parser REQUIRED)` and then used as
a dependency like this: `target_link_libraries(main PRIVATE
nodejs::http_parser)`. Also using namespace for referencing http-parser
lib, which is safer, although the old name must still work, as names of
the binaries remained unchanged.
* Remove duplicate variable definition and add newlines at the end of files.
* [http-parser] Rename exported targets to "unofficial", since they are not blessed by upstream
* [bigint] Add missing header file.
File BigIntegerUtils.hh, which is required by the library, was not being copied.
* [bigint] Bump control file version
* Remove Windows as specific prerequisite
* Add crossplatform announcement to docs
* [find_acquire.cmake] Fix ninja path for mac
* Another pass at making more platfrom neutral
* two additional fixes
* [osx] Ignore .DS_Store file. Fixes#3306
* Remove noexcept from BinaryParagraph()
* Add Bash shebang to bootstrap script
* Update gitignore to exclude the `vcpkg` binary (artifact of the build
script) from the git repo
* [sh] Change to #!/bin/sh
* [sh] Remove merge conflict lines
* [sh] permissions
* Since the auto_ptr is removed in c++17, so use unique_ptr to instead of it.
* [libxmlpp] Bump version in CONTROL file
* [readme] Add additional supported host platforms
* [readme] Slight packing and reformatting