Date: Sun, 22 Jan 2017 20:39:36 +0000 From: bugzilla-noreply@freebsd.org To: freebsd-ports-bugs@FreeBSD.org Subject: [Bug 215694] New port: dns/s6-dns: suite of DNS client programs and libraries Message-ID: <bug-215694-13-H1ePoZGRk0@https.bugs.freebsd.org/bugzilla/> In-Reply-To: <bug-215694-13@https.bugs.freebsd.org/bugzilla/> References: <bug-215694-13@https.bugs.freebsd.org/bugzilla/>
next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D215694 Colin Booth <colin-ports@heliocat.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |colin-ports@heliocat.net --- Comment #1 from Colin Booth <colin-ports@heliocat.net> --- s6-dns currently doesn't build correctly because of the following line: LIB_DEPENDS+=3D libskarnet.so>=3D2.4:devel/skalibs It's looking for a file called libskarnet.so>=3D2.4 on disk, which obviously isn't the case. What you want is something more like this: LIB_DEPENDS+=3D libskarnet.so:devel/skalibs BUILD_DEPENDS+=3D skalibs>=3D2.4.0.0:devel/skalibs The LIB_DEPENDS line isn't required since all of the skarnet software (assu= ming 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. --=20 You are receiving this mail because: You are the assignee for the bug.=
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-215694-13-H1ePoZGRk0>