From owner-svn-ports-head@FreeBSD.ORG Thu Jul 24 06:46:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A5D2CEFE; Thu, 24 Jul 2014 06:46:57 +0000 (UTC) Received: from fep22.mx.upcmail.net (fep22.mx.upcmail.net [62.179.121.42]) by mx1.freebsd.org (Postfix) with ESMTP id 666442B43; Thu, 24 Jul 2014 06:46:55 +0000 (UTC) Received: from edge03.upcmail.net ([192.168.13.238]) by viefep22-int.chello.at (InterMail vM.8.01.05.05 201-2260-151-110-20120111) with ESMTP id <20140724064647.WCVY10910.viefep22-int.chello.at@edge03.upcmail.net>; Thu, 24 Jul 2014 08:46:47 +0200 Received: from [127.0.0.1] ([178.84.134.112]) by edge03.upcmail.net with edge id W6mn1o00L2Rg3Ey036mnsa; Thu, 24 Jul 2014 08:46:47 +0200 X-SourceIP: 178.84.134.112 Message-ID: <53D0ABD1.8080402@rainbow-runner.nl> Date: Thu, 24 Jul 2014 08:46:41 +0200 From: Koop Mast User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: Antoine Brodin , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r362766 - head/graphics/ImageMagick References: <201407240554.s6O5soQ5029516@svn.freebsd.org> In-Reply-To: <201407240554.s6O5soQ5029516@svn.freebsd.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 140723-0, 23-07-2014), Outbound message X-Antivirus-Status: Clean X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Jul 2014 06:46:57 -0000 On 24-7-2014 7:54, Antoine Brodin wrote: > Author: antoine > Date: Thu Jul 24 05:54:50 2014 > New Revision: 362766 > URL: http://svnweb.freebsd.org/changeset/ports/362766 > QAT: https://qat.redports.org/buildarchive/r362766/ > > Log: > Fix another (harmless) bug in OPTIONS conversion > > Modified: > head/graphics/ImageMagick/Makefile > > Modified: head/graphics/ImageMagick/Makefile > ============================================================================== > --- head/graphics/ImageMagick/Makefile Thu Jul 24 05:50:19 2014 (r362765) > +++ head/graphics/ImageMagick/Makefile Thu Jul 24 05:54:50 2014 (r362766) > @@ -388,7 +388,7 @@ pre-configure: > @${ECHO_CMD} '###################################################################' > .endif > > -.if ${PORT_OPTIONS:MSVG} && ${PORT_OPTIONS:NX11} > +.if ${PORT_OPTIONS:MSVG} && ! ${PORT_OPTIONS:NX11} > @${ECHO_CMD} NOTICE: SVG format support disabled, requires X11 > .endif > > Actually I used N here instead of M, so it should work. Thanks for fixing the other one though.