diff options
| author | ras0219 <533828+ras0219@users.noreply.github.com> | 2020-12-07 18:17:19 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-07 18:17:19 -0800 |
| commit | dd4421808cc9131a0a68e71d9c41b0b6b9ce06d3 (patch) | |
| tree | dea4a8afd788b8e21d3c2a5a02b2a62ba54bb08a /ports/nettle | |
| parent | ced334b24dfc992ab0d1fd3af803dbf20481be25 (diff) | |
| download | vcpkg-dd4421808cc9131a0a68e71d9c41b0b6b9ce06d3.tar.gz vcpkg-dd4421808cc9131a0a68e71d9c41b0b6b9ce06d3.zip | |
[vcpkg_fixup_pkgconfig] Handle spaces in path, do not validate individual libraries (#13126)
Diffstat (limited to 'ports/nettle')
| -rw-r--r-- | ports/nettle/CONTROL | 2 | ||||
| -rw-r--r-- | ports/nettle/portfile.cmake | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ports/nettle/CONTROL b/ports/nettle/CONTROL index 49308ce95..e8cffedd7 100644 --- a/ports/nettle/CONTROL +++ b/ports/nettle/CONTROL @@ -1,6 +1,6 @@ Source: nettle
Version: 3.5.1
-Port-Version: 4
+Port-Version: 5
Homepage: https://git.lysator.liu.se/nettle/nettle
Description: Nettle is a low-level cryptographic library that is designed to fit easily in more or less any context: In crypto toolkits for object-oriented languages (C++, Python, Pike, ...), in applications like LSH or GNUPG, or even in kernel space.
Build-Depends: gmp, vs-yasm (windows), yasm-tool-helper (windows)
diff --git a/ports/nettle/portfile.cmake b/ports/nettle/portfile.cmake index 2d3fc952a..616d9af28 100644 --- a/ports/nettle/portfile.cmake +++ b/ports/nettle/portfile.cmake @@ -84,7 +84,7 @@ if(VCPKG_TARGET_IS_WINDOWS) set(exec_prefix "\${prefix}")
set(libdir "\${prefix}/lib")
set(includedir "\${prefix}/include")
- set(LIBS -lnettle -lgmp)
+ set(LIBS "-lnettle -lgmp")
configure_file("${SOURCE_PATH}/nettle.pc.in" "${CURRENT_PACKAGES_DIR}/lib/pkgconfig/nettle.pc" @ONLY)
set(HOGWEED -lhogweed)
set(LIBS -lnettle)
@@ -93,7 +93,7 @@ if(VCPKG_TARGET_IS_WINDOWS) set(exec_prefix "\${prefix}")
set(libdir "\${prefix}/lib")
set(includedir "\${prefix}/../include")
- set(LIBS -lnettled -lgmpd)
+ set(LIBS "-lnettled -lgmpd")
configure_file("${SOURCE_PATH}/nettle.pc.in" "${CURRENT_PACKAGES_DIR}/debug/lib/pkgconfig/nettle.pc" @ONLY)
set(LIBS -lnettled)
set(HOGWEED -lhogweedd)
|
