From owner-freebsd-ports@freebsd.org Tue Jan 2 17:50:01 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 135DAEB0EB0 for ; Tue, 2 Jan 2018 17:50:01 +0000 (UTC) (envelope-from marquis@roble.com) Received: from mx5.roble.com (mx5.roble.com [209.237.23.5]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx5.roble.com", Issuer "mx5.roble.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 07AFF6ABB9 for ; Tue, 2 Jan 2018 17:50:00 +0000 (UTC) (envelope-from marquis@roble.com) Received: from roble.com (roble.com [209.237.23.50]) by mx5.roble.com (Postfix) with ESMTP id 98CE64B569 for ; Tue, 2 Jan 2018 09:47:29 -0800 (PST) Date: Tue, 2 Jan 2018 09:47:29 -0800 (PST) From: Roger Marquis To: freebsd-ports@freebsd.org Subject: DEFAULT_VERSIONS conflicts Message-ID: MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset=US-ASCII X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Jan 2018 17:50:01 -0000 Per the 20171214 UPDATING entry: Support for some deprecated variables is going to be removed soon. If you use any of the following constructs (usually in /etc/make.conf), you must switch to the new incantations: ... WITH_OPENSSL_BASE DEFAULT_VERSIONS+= ssl=base WITH_OPENSSL_PORT DEFAULT_VERSIONS+= ssl=port Question is what occurrs when the port version is also specified: DEFAULT_VERSIONS+=ssl=libressl Some builds report an error when both are specified depending on the order of, for example: DEFAULT_VERSIONS+=ssl=libressl DEFAULT_VERSIONS+=ssl=port Is there documentation on how to specify multiple port options? Roger