pkgconf looks for Requires.private even if shared linking is requested #248
Loading…
Reference in New Issue
There is no content yet.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may exist for a short time before cleaning up, in most cases it CANNOT be undone. Continue?
Hi, I don't know if this is a bug or not, but when looking for a package with
pkgconf --cflags pcname
dependency resolution fails if one of the packages listed inRequries.private
is not found, even if--static
is not passed.Example:
This is a design defect in the
Requires.private
feature, it assumes that the headers for the private SDK will be referenced, and therefore an implementation must always assume--static
when looking for CFLAGS.Oh ok, thanks for the explanation.
Is this documented somewhere? If not, I may add it as part of #245