Summary: | devel/cmake-core: Could NOT find LibUV: Found unsuitable version "1.18.0", but r equired is at least "1.28.0" (found /usr/local/lib/libuv.so) | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Product: | Ports & Packages | Reporter: | Marcin Cieślak <saper> | ||||||||||
Component: | Individual Port(s) | Assignee: | freebsd-kde (group) <kde> | ||||||||||
Status: | Closed Not A Bug | ||||||||||||
Severity: | Affects Only Me | CC: | jhale | ||||||||||
Priority: | --- | Flags: | bugzilla:
maintainer-feedback?
(kde) |
||||||||||
Version: | Latest | ||||||||||||
Hardware: | Any | ||||||||||||
OS: | Any | ||||||||||||
Attachments: |
|
Description
Marcin Cieślak
2023-08-02 15:18:45 UTC
Created attachment 243801 [details]
cmake-core.log
script(1) recording of the build attempt
Created attachment 243802 [details]
cmake_bootstrap.log
work/cmake-3.26.1/Bootstrap.cmk/cmake_bootstrap.log
Created attachment 243803 [details]
CMakeOutput.log
work/cmake-3.26.1/CMakeFiles/CMakeOutput.log
Created attachment 243804 [details]
CMakeError.log
work/cmake-3.26.1/CMakeFiles/CMakeError.log
I had libuv installed before, a fresh reinstallation of libuv-1.46.0 did not help. You might have some leftover bits of an ancient libuv installation. FindLibUV.cmake first checks for ${LibUV_INCLUDE_DIR}/uv-version.h and then for ${LibUV_INCLUDE_DIR}/uv/version.h. The former is the older format. I suspect you at least still have a /usr/local/include/uv-version.h which is confusing the version check. This file should be removed. This was it! Thank you very much! |