Date: Fri, 30 Aug 2019 11:10:55 +0000 (UTC) From: Tobias Kortkamp <tobik@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r510260 - head/net/libdmapsharing Message-ID: <201908301110.x7UBAtND053030@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tobik Date: Fri Aug 30 11:10:55 2019 New Revision: 510260 URL: https://svnweb.freebsd.org/changeset/ports/510260 Log: net/libdmapsharing: Explicitly disable the dependency on devel/check By default, the configure script of net/libdmapsharing detects devel/check automatically. If devel/check is installed, net/libdmapsharing will link to it. It can cause problems because devel/check is not declared as a dependency of net/libdmapsharing, so libdmapsharing-3.0.so will be broken if devel/check is removed. $ ldd /usr/local/lib/libdmapsharing-3.0.so ... libcheck.so.0 => not found (0) ... Since devel/check is just a unit test framework, it should be safe to disable it unconditionally. PR: 240195 Submitted by: Ting-Wei Lan <lantw44@gmail.com> Modified: head/net/libdmapsharing/Makefile Modified: head/net/libdmapsharing/Makefile ============================================================================== --- head/net/libdmapsharing/Makefile Fri Aug 30 10:51:37 2019 (r510259) +++ head/net/libdmapsharing/Makefile Fri Aug 30 11:10:55 2019 (r510260) @@ -21,7 +21,8 @@ USES= gettext gnome gmake libtool pathfix pkgconfig USE_GNOME= cairo gdkpixbuf2 gnomeprefix gtk30 introspection:build USE_GSTREAMER1= yes USE_LDCONFIG= yes -CONFIGURE_ARGS= --disable-introspection \ +CONFIGURE_ARGS= --disable-check \ + --disable-introspection \ --with-mdns=avahi GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include `pkg-config --cflags gtk+-3.0`
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201908301110.x7UBAtND053030>