From owner-svn-ports-all@freebsd.org Thu Dec 17 02:13:41 2015 Return-Path: Delivered-To: svn-ports-all@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 93D7BA4A04C; Thu, 17 Dec 2015 02:13:41 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: from mail-pf0-x22a.google.com (mail-pf0-x22a.google.com [IPv6:2607:f8b0:400e:c00::22a]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7493515B6; Thu, 17 Dec 2015 02:13:41 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: by mail-pf0-x22a.google.com with SMTP id 68so21823556pfc.1; Wed, 16 Dec 2015 18:13:41 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:reply-to:subject:references:to:from:message-id:date :user-agent:mime-version:in-reply-to:content-type :content-transfer-encoding; bh=9T5V4z4W3o+IE800ie5FKavroCKmzmfYS4DKqZXUD0E=; b=n+49OTqzJGPLG0whu1R1L43T/mlv6wdnR3KORl54uJQf5qaBizHpC/OffTm8icbuIn UDSw/7fJho/jlamXZeIeSSzFSp6+NmDjpk0p6MirMKCITY8i6K6s8A+U5w9IFgSjGwN4 83rRKugOkbY3crlEktSQMbGg2EETBRfFJ1XKYjtu9ET6dkwHb1MCtwfLfV3NGuLLYr2Y MzFwCzDzldKvDgmbmOM9hzp48kDPrSvDuLtkMzxkT+tr+VSNgXt1mdNSruXW0eRtJiXL Y1gwXZ2/Z+pMJEynOXajEdBB5N0TgK3aTAxtEga7kYOlDI37HUyISt7L6zR0LAV11oPl sP3A== X-Received: by 10.98.64.80 with SMTP id n77mr10685721pfa.87.1450318420686; Wed, 16 Dec 2015 18:13:40 -0800 (PST) Received: from ?IPv6:2001:44b8:31ae:7b01:c825:be55:88ec:f9f1? (2001-44b8-31ae-7b01-c825-be55-88ec-f9f1.static.ipv6.internode.on.net. [2001:44b8:31ae:7b01:c825:be55:88ec:f9f1]) by smtp.gmail.com with ESMTPSA id yl1sm11791780pac.35.2015.12.16.18.13.38 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 16 Dec 2015 18:13:40 -0800 (PST) Sender: Kubilay Kocak Reply-To: koobs@FreeBSD.org Subject: Re: svn commit: r403892 - head/print/ghostscript8-base References: <201512170157.tBH1vtJL061637@repo.freebsd.org> To: Hiroki Sato , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org From: Kubilay Kocak Message-ID: <56721A4A.2010509@FreeBSD.org> Date: Thu, 17 Dec 2015 13:13:30 +1100 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko/20100101 Thunderbird/42.0 MIME-Version: 1.0 In-Reply-To: <201512170157.tBH1vtJL061637@repo.freebsd.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 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: Thu, 17 Dec 2015 02:13:41 -0000 On 17/12/2015 12:57 PM, Hiroki Sato wrote: > Author: hrs > Date: Thu Dec 17 01:57:55 2015 > New Revision: 403892 > URL: https://svnweb.freebsd.org/changeset/ports/403892 > > Log: > Fix a build error which occurred with jbig2dec=>0.12. > > Modified: > head/print/ghostscript8-base/Makefile > > Modified: head/print/ghostscript8-base/Makefile > ============================================================================== > --- head/print/ghostscript8-base/Makefile Thu Dec 17 01:36:46 2015 (r403891) > +++ head/print/ghostscript8-base/Makefile Thu Dec 17 01:57:55 2015 (r403892) > @@ -55,7 +55,9 @@ CONFIGURE_ARGS= --disable-compile-inits > --without-x \ > --disable-gtk \ > --with-drivers="" > -CPPFLAGS+= -DUPD_SIGNAL=0 -I. \ > +CPPFLAGS+= -DUPD_SIGNAL=0 \ > + -DJBIG_NO_MEMENTO \ > + -I. \ > -I${WRKSRC}/jasper/src/libjasper/include \ > -I${LOCALBASE}/include/freetype2 \ > -I${LOCALBASE}/include > MFH?