[Bug 215694] New port: dns/s6-dns: suite of DNS client programs and libraries

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Sun Jan 22 20:39:36 UTC 2017


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=215694

Colin Booth <colin-ports at heliocat.net> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |colin-ports at heliocat.net

--- Comment #1 from Colin Booth <colin-ports at heliocat.net> ---
s6-dns currently doesn't build correctly because of the following line:
LIB_DEPENDS+=   libskarnet.so>=2.4:devel/skalibs

It's looking for a file called libskarnet.so>=2.4 on disk, which obviously
isn't the case. What you want is something more like this:

LIB_DEPENDS+=   libskarnet.so:devel/skalibs
BUILD_DEPENDS+=  skalibs>=2.4.0.0:devel/skalibs

The LIB_DEPENDS line isn't required since all of the skarnet software (assuming
you are using a similar configure line as s6, execline, and skalibs) only
dynamically links to the libc and static links against the other skarnet
libraries.

-- 
You are receiving this mail because:
You are the assignee for the bug.


More information about the freebsd-ports-bugs mailing list