From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 21:31:28 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 02F3CA00; Sun, 28 Oct 2012 21:31:28 +0000 (UTC) (envelope-from bsdkaffee@gmail.com) Received: from mail-qa0-f47.google.com (mail-qa0-f47.google.com [209.85.216.47]) by mx1.freebsd.org (Postfix) with ESMTP id 5C2878FC08; Sun, 28 Oct 2012 21:31:27 +0000 (UTC) Received: by mail-qa0-f47.google.com with SMTP id i29so1372308qaf.13 for ; Sun, 28 Oct 2012 14:31:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:user-agent:in-reply-to :references:mime-version:content-transfer-encoding:content-type; bh=eFwgKshsTMHaJMx2zaFpTgKsTkhqN/5r/sQh60XfA0c=; b=P1rnVyJcTAPPVRx9W8h+tu8vJg+lR7pvEXGTc9ZjSRzYp5/AOkgARZP4EHO7aoPVLm he04LtW6MnahJxIpx6vyKXmT9juVHSF0iifx03sPSX3p7aw1FQMmAjdkx0sUgHjgkhzE ARlYiNIbwTebeCUbyaFzHz113zDcAYwUMDihWhcOlwC1VX78I+DWAE02B/fpT8MPN0YC HHRij+PHDeSbBy65MI69LKcUXp9Dj553NChN8gT2J9gaHFDZLWHwSU0Nst3Np96uSH9Q 51rgPaUNbpIQxdGtEBsTHdM2QKN3y0UEeg7PFTN0dQ0q+KbpJ3cPbj8QgaZxk1gKRCuD CBfA== Received: by 10.229.177.130 with SMTP id bi2mr4123674qcb.138.1351459880413; Sun, 28 Oct 2012 14:31:20 -0700 (PDT) Received: from mocha.verizon.net (c-71-61-40-68.hsd1.oh.comcast.net. [71.61.40.68]) by mx.google.com with ESMTPS id eq10sm4906402qab.0.2012.10.28.14.31.19 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 28 Oct 2012 14:31:19 -0700 (PDT) Sender: "Jason E. Hale" From: "Jason E. Hale" To: Gabor Pali Subject: Re: svn commit: r306565 - head/www/bozohttpd Date: Sun, 28 Oct 2012 17:31:18 -0400 Message-ID: <7906229.MARl6IleAJ@mocha.verizon.net> User-Agent: KMail/4.8.4 (FreeBSD/9.0-RELEASE-p3; KDE/4.8.4; i386; ; ) In-Reply-To: <201210281957.q9SJvioQ087645@svn.freebsd.org> References: <201210281957.q9SJvioQ087645@svn.freebsd.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Oct 2012 21:31:28 -0000 On Sunday, October 28, 2012 19:57:44 you wrote: > Author: pgj > Date: Sun Oct 28 19:57:43 2012 > New Revision: 306565 > URL: http://svn.freebsd.org/changeset/ports/306565 > > Log: > - Convert options to the new format > > PR: ports/172540 > Submitted by: pgj > Approved by: maintainer > Feature safe: yes > > Modified: > head/www/bozohttpd/Makefile > > Modified: head/www/bozohttpd/Makefile > ============================================================================ > == --- head/www/bozohttpd/Makefile Sun Oct 28 19:54:57 2012 (r306564) +++ > head/www/bozohttpd/Makefile Sun Oct 28 19:57:43 2012 (r306565) @@ -1,9 +1,5 <--snip--> > > #make happy portlint > -.if defined(WITHOUT_SSL) > +.if empty(PORT_OPTIONS:MSSL) > .else > USE_OPENSSL= yes > .endif > > -.include > +.include > <--snip--> > > -.if defined(WITHOUT_SSL) > -CFLAGS+= -DNO_SSL_SUPPORT > -.else > -#USE_OPENSSL= yes > +.if ${PORT_OPTIONS:MSSL} > CFLAGS+= -UNO_SSL_SUPPORT > +.else > +CFLAGS+= -DNO_SSL_SUPPORT > .endif > Options must be tested after . That first SSL block should be removed because it does nothing since it is before options.mk. USE_OPENSSL=yes should be placed in the second SSL block. -- Jason E. Hale - jhale@ FreeBSD Ports Committer KDE/FreeBSD Team