From nobody Sat Jan 28 06:19:55 2023 X-Original-To: ports@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4P3knY6Ncmz3cV9S for ; Sat, 28 Jan 2023 06:20:01 +0000 (UTC) (envelope-from peo@nethead.se) Received: from ns1.nethead.se (ns1.nethead.se [5.150.237.139]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "ns1.nethead.se", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4P3knX4zNvz4K78 for ; Sat, 28 Jan 2023 06:20:00 +0000 (UTC) (envelope-from peo@nethead.se) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=nethead.se header.s=NETHEADSE header.b="WAbM82/E"; spf=pass (mx1.freebsd.org: domain of peo@nethead.se designates 5.150.237.139 as permitted sender) smtp.mailfrom=peo@nethead.se; dmarc=pass (policy=none) header.from=nethead.se X-Virus-Scanned: amavisd-new at Nethead AB DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=nethead.se; s=NETHEADSE; t=1674886797; bh=/aq1OCPhMGMY1gbxjwuas+kNg5nX+QFB2ZQADcfR9ys=; h=Date:Subject:To:References:From:In-Reply-To; b=WAbM82/EQThtjCaK+bvMdFaK3WWvbzs4uB8fxhOfcvTunIWcu1kshSOMyrpcMVTia taEw7W97ScVaqOHjb9lZPPNWwaeQBPRcbtq3NXl9LcZcCH9/o/HujxsQMAImZXmAz0 mMoGfNsAkmF3X6WWPEmyF1J3WCbyTlJegcLD1M3w= Message-ID: <41817681-dffa-bd20-a6ba-ab5af5a99e26@nethead.se> Date: Sat, 28 Jan 2023 07:19:55 +0100 List-Id: Porting software to FreeBSD List-Archive: https://lists.freebsd.org/archives/freebsd-ports List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:102.0) Gecko/20100101 Thunderbird/102.5.1 Subject: Re: multimedia/gstreamer1-plugins-bad build failure Content-Language: en-US To: ports@freebsd.org References: <298cb2dc-d1fb-3b40-9a25-36d8969e871b@nethead.se> From: Per olof Ljungmark In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spamd-Result: default: False [-4.00 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-0.995]; DMARC_POLICY_ALLOW(-0.50)[nethead.se,none]; R_SPF_ALLOW(-0.20)[+ip4:5.150.237.139]; R_DKIM_ALLOW(-0.20)[nethead.se:s=NETHEADSE]; MIME_GOOD(-0.10)[text/plain]; MLMMJ_DEST(0.00)[ports@freebsd.org]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; RCVD_COUNT_ZERO(0.00)[0]; ARC_NA(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; ASN(0.00)[asn:8473, ipnet:5.150.192.0/18, country:SE]; FROM_HAS_DN(0.00)[]; DKIM_TRACE(0.00)[nethead.se:+]; TO_MATCH_ENVRCPT_ALL(0.00)[]; TO_DN_NONE(0.00)[]; MID_RHS_MATCH_FROM(0.00)[] X-Rspamd-Queue-Id: 4P3knX4zNvz4K78 X-Spamd-Bar: --- X-ThisMailContainsUnwantedMimeParts: N On 1/28/23 05:08, Tatsuki Makino wrote: > Hmmm. > The following line does not seem to imply that plug-ins should not be built even when libraries are found. > zxing_dep = dependency('zxing', version : '>= 1.1.1', required : get_option('zxing')) > > So even though the port gstreamer1-plugins-bad-1.20.5 is not supposed to be touched with respect to zxing, the environment in which zxing is installed will find it and give the error. > > So, building gstreamer1-plugins-bad with zxing uninstalled and then installing zxing seems to be the quickest solution, maybe :) > > For reference, the ports using gstreamer1-plugins-bad in my environment are as follows. > >> pkg info -r gstreamer1-plugins-bad-1.20.5 > gstreamer1-plugins-bad-1.20.5: > qt5-multimedia-5.15.8p1 > gstreamer1-plugins-hls-1.20.5 > gstreamer1-plugins-core-1.20.5 > gstreamer1-plugins-resindvd-1.20.5 > gstreamer1-plugins-dts-1.20.5 > wx32-gtk3-3.2.1 > webkit2-gtk4-2.34.6_1 > webkit2-gtk3-2.34.6_4 Uninstalling zxing-cpp was the solution, thank you!