Commit a fix to gumbo on Linux so that it does include the string changes by default (#3704)

* Commit a fix to gumbo on linux so that it does include the string change macros by default.

* [gumbo] Bump CONTROL file.
This commit is contained in:
Kristina Simpson 2018-06-13 05:19:02 +12:00 committed by Robert Schumacher
parent 80f64c24dc
commit 5c8b828e07
3 changed files with 7 additions and 4 deletions

View File

@ -16,8 +16,10 @@ set(gumbo_srcs
src/vector.c
)
include_directories(visualc/include src)
include_directories(src)
if (MSVC)
include_directories(visualc/include)
endif (MSVC)
add_library(gumbo ${gumbo_srcs})

View File

@ -1,3 +1,3 @@
Source: gumbo
Version: 0.10.1-1
Version: 0.10.1-2
Description: An HTML5 parsing library in pure C99

View File

@ -1,8 +1,9 @@
include(vcpkg_common_functions)
if(VCPKG_LIBRARY_LINKAGE STREQUAL dynamic)
message(WARNING "Dynamic not supported building static")
message(WARNING "Dynamic linking not supported -- building static instead")
set(VCPKG_LIBRARY_LINKAGE static)
endif()
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO google/gumbo-parser