diff options
| author | Alexander Karatarakis <alex@karatarakis.com> | 2017-04-10 12:31:15 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-04-10 12:31:15 -0700 |
| commit | f7944d40a6ca5a3f85f151e81674910ba76dbf10 (patch) | |
| tree | 0204a999636e64468973be52d243a3fac75d9c0c | |
| parent | 0e9b533c2ccbffcdf081b39ad5eaf98408712acc (diff) | |
| parent | 2d581484b4883d8319826fa081b8627ee27613a8 (diff) | |
| download | vcpkg-f7944d40a6ca5a3f85f151e81674910ba76dbf10.tar.gz vcpkg-f7944d40a6ca5a3f85f151e81674910ba76dbf10.zip | |
Merge pull request #925 from jumpinjackie/xercesc-missing-source-files
[xerces-c]: Add missing .c source files
| -rw-r--r-- | ports/xerces-c/CONTROL | 2 | ||||
| -rw-r--r-- | ports/xerces-c/portfile.cmake | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/ports/xerces-c/CONTROL b/ports/xerces-c/CONTROL index e60cb6d01..81a76c325 100644 --- a/ports/xerces-c/CONTROL +++ b/ports/xerces-c/CONTROL @@ -1,3 +1,3 @@ Source: xerces-c -Version: 3.1.4-2 +Version: 3.1.4-3 Description: Xerces-C++ is a XML parser, for parsing, generating, manipulating, and validating XML documents using the DOM, SAX, and SAX2 APIs. diff --git a/ports/xerces-c/portfile.cmake b/ports/xerces-c/portfile.cmake index e940fe881..1208c9787 100644 --- a/ports/xerces-c/portfile.cmake +++ b/ports/xerces-c/portfile.cmake @@ -47,6 +47,8 @@ file(COPY ${SOURCE_PATH}/Build/${OUTPUT_DIR}/VC14/Release/xerces-c_3_1.dll DESTI file(COPY ${SOURCE_PATH}/Build/${OUTPUT_DIR}/VC14/Release/xerces-c_3.lib DESTINATION ${CURRENT_PACKAGES_DIR}/lib) file(COPY ${SOURCE_PATH}/src/xercesc DESTINATION ${CURRENT_PACKAGES_DIR}/include FILES_MATCHING PATTERN *.hpp) +# Certain headers under xercesc/util include .c files, so we need these copied over as well +file(COPY ${SOURCE_PATH}/src/xercesc DESTINATION ${CURRENT_PACKAGES_DIR}/include FILES_MATCHING PATTERN *.c) file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/include/xercesc/NLS) file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/include/xercesc/util/MsgLoaders/ICU/resources) |
