diff options
| author | Mateusz Loskot <mateusz@loskot.net> | 2018-05-01 10:14:18 +0200 |
|---|---|---|
| committer | Robert Schumacher <roschuma@microsoft.com> | 2018-05-01 01:14:18 -0700 |
| commit | 793019b9cd362aefac06cd7f94d6e6db77d31b69 (patch) | |
| tree | be2dde21ac73b2182e40282f799de33836e232d5 /ports/geos/CONTROL | |
| parent | c4caf29213f54b1786102c1b4dc085b6d7142998 (diff) | |
| download | vcpkg-793019b9cd362aefac06cd7f94d6e6db77d31b69.tar.gz vcpkg-793019b9cd362aefac06cd7f94d6e6db77d31b69.zip | |
[GEOS] Generate debug library names with `d` suffix (#3371)
* [GEOS] Generate debug library names with `d` suffix
Currently geos.lib name is used for both, debug and optimised
GEOS libraries. This leads to situation when:
```
find_library(GEOS_LIBRARY_DEBUG NAMES geos)
find_library(GEOS_LIBRARY_RELEASE NAMES geos)
```
finds the same library for both
```
GEOS_LIBRARY_DEBUG=D:/vcpkg/installed/x64-windows/debug/lib/geos.lib
GEOS_LIBRARY_RELEASE=D:/vcpkg/installed/x64-windows/debug/lib/geos.lib
```
This is minimal patch that works around the problem.
Next, complete fix should be submitted to GEOS upstream,
preferably using exported targets.
* [libspatialite] Add missing geos suffixes in static builds
Diffstat (limited to 'ports/geos/CONTROL')
| -rw-r--r-- | ports/geos/CONTROL | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/geos/CONTROL b/ports/geos/CONTROL index 2b192d088..1a32a8103 100644 --- a/ports/geos/CONTROL +++ b/ports/geos/CONTROL @@ -1,3 +1,3 @@ Source: geos -Version: 3.6.2-2 +Version: 3.6.2-3 Description: Geometry Engine Open Source |
