From owner-freebsd-x11@FreeBSD.ORG Fri May 25 21:28:54 2012 Return-Path: Delivered-To: x11@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C448E106564A for ; Fri, 25 May 2012 21:28:54 +0000 (UTC) (envelope-from jbeich@tormail.org) Received: from server2.allsitecontrol.com (server2.allsitecontrol.com [63.143.36.210]) by mx1.freebsd.org (Postfix) with ESMTP id 957C18FC08 for ; Fri, 25 May 2012 21:28:54 +0000 (UTC) Received: from stargrave.org ([79.120.86.20]:42145 helo=internal.tormail.org) by server2.allsitecontrol.com with esmtpsa (TLSv1:RC4-SHA:128) (Exim 4.77) (envelope-from ) id 1SY23x-000lYa-Op; Fri, 25 May 2012 17:28:47 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tormail.org; s=tm; h=Message-Id:X-TorMail-User:Content-Type:MIME-Version:References:Date:In-Reply-To:Subject:Cc:To:From; bh=hRl5jvERzNC0jPUR72AI1j6aqWt3fwjkTikkqUSYBp4=; b=mVdXtGj9dVdkdOpJb2Mn2emMBYHbW7Fa4NDrV0RwPHPv+glaftPJojE15lQUMEGrVeGiVUtoWZQCdS7G0O9edpaPxkWOWm9fwBH6YYUnpA91/r7wS5QVywOmM+RmCNsh/nJ8ZWF759JKxxkZm+Lwv25ohcaX+unyQNSs6XTTPTo=; Received: from jbeich by internal.tormail.org with local (Exim 4.63) (envelope-from ) id 1SY22G-0000El-GL; Fri, 25 May 2012 21:27:01 +0000 From: Jan Beich To: Sevan / Venture37 In-Reply-To: <4FBE8635.3030501@gmail.com> (Sevan's message of "Thu, 24 May 2012 20:04:21 +0100") Date: Sat, 26 May 2012 00:26:50 +0300 References: <4FBE8635.3030501@gmail.com> MIME-Version: 1.0 Content-Type: text/plain X-TorMail-User: jbeich Message-Id: <1SY22G-0000El-GL@internal.tormail.org> X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - server2.allsitecontrol.com X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - tormail.org X-Source: X-Source-Args: X-Source-Dir: Cc: x11@FreeBSD.org Subject: Re: x11-servers/xorg-servers configure error X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2012 21:28:54 -0000 Sevan / Venture37 writes: > Hiya, > I'm runnnig -head WITH_CLANG_IS_CC, when trying the build > x11-servers/xorg-servers I receive the error "/usr/bin/cpp does not > preserve whitespace with or without -traditional. I don't know what to do." > > I tried the patch proposed in PR166373 which worked for x11/libX11, but > no luck. [...] > --- Makefile 24 Apr 2012 17:28:04 -0000 1.86 > +++ Makefile 22 May 2012 17:23:06 -0000 > @@ -56,6 +56,8 @@ > --localstatedir=/var --without-dtrace --disable-xephyr \ > --enable-record=yes > > +CONFIGURE_ENV+= RAWCPP="${RAWCPP}" > + [...] Move above `+=' assignment after `=' one, i.e. anywhere below CONFIGURE_ENV= SHA1_LIB="-L/usr/lib -lcrypto" SHA1_CFLAGS="-I/usr/include" -- I think portlint should warn about `=' assignments for common variables under an ifdef, those often are harder to notice like in this case.