From owner-freebsd-ports@FreeBSD.ORG Tue Jan 27 07:29:35 2015 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C403C7D9 for ; Tue, 27 Jan 2015 07:29:35 +0000 (UTC) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.infracaninophile.co.uk", Issuer "ca.infracaninophile.co.uk" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 579EDC25 for ; Tue, 27 Jan 2015 07:29:35 +0000 (UTC) Received: from worm.infracaninophle.co.uk (worm.infracaninophle.co.uk [81.2.117.101] (may be forged)) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.15.1/8.15.1) with ESMTPSA id t0R7TJf9059112 (version=TLSv1.2 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Tue, 27 Jan 2015 07:29:22 GMT (envelope-from matthew@FreeBSD.org) Authentication-Results: smtp.infracaninophile.co.uk; dmarc=none header.from=FreeBSD.org DKIM-Filter: OpenDKIM Filter v2.9.2 smtp.infracaninophile.co.uk t0R7TJf9059112 Authentication-Results: smtp.infracaninophile.co.uk/t0R7TJf9059112; dkim=none reason="no signature"; dkim-adsp=none; dkim-atps=neutral Message-ID: <54C73E50.80701@FreeBSD.org> Date: Tue, 27 Jan 2015 07:29:20 +0000 From: Matthew Seaman User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:31.0) Gecko/20100101 Thunderbird/31.4.0 MIME-Version: 1.0 To: freebsd-ports@freebsd.org Subject: Re: sphinxsearch with mysql(mariadb) with openssl from ports building with poudriere References: <54C73AE7.7080706@searchy.net> In-Reply-To: <54C73AE7.7080706@searchy.net> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-Virus-Scanned: clamav-milter 0.98.5 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham autolearn_force=no version=3.4.0 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lucid-nonsense.infracaninophile.co.uk X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jan 2015 07:29:35 -0000 On 2015/01/27 07:14, Frank de Bot wrote: > With poudriere I build custom packages from FreeBSD 10.1 . Since a while > textproc/sphinxsearch fails the builds with as it seems mysql library > related errors. Attached is the output log of the build for > sphinxsearch, options for mariadb55-client en options for sphinxsearch. > It looks like the openssl port isn't installed in the jail for the build > process. > > how can I solve this? Do you have the log file from your build of sphinxsearch available? I'm guessing that what is happening is that your getting a conflict between some ports that are linked against the base system's version of openssl, and other ports that are linked against the port's version of openssl (ie. mariadb55-client in your case.) One way to avoid this is to ensure that all ports are linked against the ports version of openssl. Try adding: WITH_OPENSSL_PORT= yes to /usr/local/etc/poudriere.d/make.conf and do a poudriere bulk -c ... to make sure everything gets rebuilt. Cheers, Matthew