From owner-freebsd-questions@FreeBSD.ORG Fri Jan 15 09:35:57 2010 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0E1211065676 for ; Fri, 15 Jan 2010 09:35:57 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (gate6.infracaninophile.co.uk [IPv6:2001:8b0:151:1::1]) by mx1.freebsd.org (Postfix) with ESMTP id 9BCAD8FC19 for ; Fri, 15 Jan 2010 09:35:56 +0000 (UTC) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost [IPv6:::1]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.4/8.14.3) with ESMTP id o0F9ZpUr049897; Fri, 15 Jan 2010 09:35:52 GMT (envelope-from m.seaman@infracaninophile.co.uk) X-DKIM: Sendmail DKIM Filter v2.8.3 smtp.infracaninophile.co.uk o0F9ZpUr049897 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=infracaninophile.co.uk; s=201001-infracaninophile; t=1263548152; bh=Ii870PrwW/FGoW4HRRKxaC/vcc9Zpnl/WuT8uDW8Mlk=; h=Message-ID:Date:From:MIME-Version:To:CC:Subject:References: In-Reply-To:Content-Type:Cc:Content-Type:Date:From:In-Reply-To: Message-ID:Mime-Version:References:To; z=Message-ID:=20<4B5036EF.1080903@infracaninophile.co.uk>|Date:=20F ri,=2015=20Jan=202010=2009:35:43=20+0000|From:=20Matthew=20Seaman= 20|Organization:=20Infracaninophi le|User-Agent:=20Thunderbird=202.0.0.23=20(X11/20091129)|MIME-Vers ion:=201.0|To:=20Andrei=20Brezan=20|CC:=20fre ebsd-questions@freebsd.org|Subject:=20Re:=20How=20to=20overwrite=2 0openssl=20base=20with=20the=20one=20from=20ports?|References:=20< 4B5027F1.4060309@gmail.com>|In-Reply-To:=20<4B5027F1.4060309@gmail .com>|X-Enigmail-Version:=200.95.6|Content-Type:=20multipart/signe d=3B=20micalg=3Dpgp-sha256=3B=0D=0A=20protocol=3D"application/pgp- signature"=3B=0D=0A=20boundary=3D"------------enig01E5705237924A27 897AAB58"; b=qxOLdc7Q+JQuudYSkMrRzKAyhqEBIqmHBxItZrRhqsUXZS3phYy8JC616q55eOgBs vR8RGEjds8J+Jd1w2bLM032+nJDCLQb0wY124v4de5PToSskAitM/G1PSn7MODbPj/ YdmDpTNp3ry5qenq3yvbiRbnBOac9jhC88wkudNs= X-Authentication-Warning: happy-idiot-talk.infracaninophile.co.uk: Host localhost [IPv6:::1] claimed to be happy-idiot-talk.infracaninophile.co.uk Message-ID: <4B5036EF.1080903@infracaninophile.co.uk> Date: Fri, 15 Jan 2010 09:35:43 +0000 From: Matthew Seaman Organization: Infracaninophile User-Agent: Thunderbird 2.0.0.23 (X11/20091129) MIME-Version: 1.0 To: Andrei Brezan References: <4B5027F1.4060309@gmail.com> In-Reply-To: <4B5027F1.4060309@gmail.com> X-Enigmail-Version: 0.95.6 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="------------enig01E5705237924A27897AAB58" X-Virus-Scanned: clamav-milter 0.95.3 at happy-idiot-talk.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-3.0 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VERIFIED,NO_RELAYS autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on happy-idiot-talk.infracaninophile.co.uk Cc: freebsd-questions@freebsd.org Subject: Re: How to overwrite openssl base with the one from ports? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jan 2010 09:35:57 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig01E5705237924A27897AAB58 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Andrei Brezan wrote: > Hello list, >=20 > I seem to have some problems overwriting openssl base. I have tried > building security/openssl with OPENSSL_OVERWRITE_BASE=3DYES but to no s= uccess. >=20 > After i run: > make OPENSSL_OVERWRITE_BASE=3DYES install clean > i get the port installed in /usr/local/bin and lib ok, but i'm left wit= h > openssl in /usr/bin and lib too. Do i have to make > buildworld/installworld with NO_OPENSSL in /etc/make.conf in order not > to have openssl from base and then install it from port ? There's no such option as 'OPENSSL_OVERWRITE_BASE' in a current ports tree[*]. There is only WITH_OPENSSL_BASE=3Dyes which means link any ports against the version of the OpenSSL libs installed by the base system, or WITH_OPENSSL_PORTS=3Dyes which means link any ports against the version of OpenSSL installed from ports. Applications that use SSL in the base system are always linked against the base system version of OpenSSL, and the ports system will throw an exception if you say 'WITH_OPENSSL_PORTS' but the ABI version number of the shlibs in the base system is greater than the ones from the ports. So defining WITHOUT_OPENSSL in /etc/src.conf[+] is not advisable either.=20 Cheers, Matthew [*] Despite its appearance in the mail/dkim-milter and mail/dk-milter ports. That's a bug. It won't do anything. [+] Assuming you're running 7.x or later. --=20 Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate Kent, CT11 9PW --------------enig01E5705237924A27897AAB58 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.14 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEAREIAAYFAktQNvcACgkQ8Mjk52CukIzR2gCeNMJdHHokse3LXlf0aB8BRxBq +lYAn3thu+r/83r7Sgvd6swJam/pRzqm =os1R -----END PGP SIGNATURE----- --------------enig01E5705237924A27897AAB58--