From owner-freebsd-current@FreeBSD.ORG Thu Feb 14 13:19:31 2013 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id ED6E4A1D; Thu, 14 Feb 2013 13:19:31 +0000 (UTC) (envelope-from yamayan@kbh.biglobe.ne.jp) Received: from rcpt-expgw.biglobe.ne.jp (rcpt-expgw.biglobe.ne.jp [IPv6:2001:260:401:16::2]) by mx1.freebsd.org (Postfix) with ESMTP id 80CA919E; Thu, 14 Feb 2013 13:19:31 +0000 (UTC) Received: from vc-gw.biglobe.ne.jp by rcpt-expgw.biglobe.ne.jp (shby/5910021009) with SMTP id r1EDJTmT017348; Thu, 14 Feb 2013 22:19:29 +0900 Received: from smtp-gw.biglobe.ne.jp ([172.21.56.80]) by vc-gw.biglobe.ne.jp (kbkr/0716090908) with ESMTP id r1EDJTnu026074; Thu, 14 Feb 2013 22:19:29 +0900 X-Biglobe-Sender: Received: from [192.168.0.100] ([27.83.60.20]) by smtp-gw.biglobe.ne.jp id WAAMAC153810; Thu, 14 Feb 2013 22:19:29 +0900 (JST) Message-ID: <511CE470.4070003@kbh.biglobe.ne.jp> Date: Thu, 14 Feb 2013 22:19:44 +0900 From: Yamaya Takashi User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130129 Thunderbird/17.0.2 MIME-Version: 1.0 To: Tom Evans Subject: Re: ports include /etc/src.conf? i.e. graphics/libfpx References: <511B662C.7030602@zedat.fu-berlin.de> <511B874A.7080901@kbh.biglobe.ne.jp> In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Thu, 14 Feb 2013 13:31:26 +0000 Cc: "free >> Current FreeBSD" , "O. Hartmann" , Ports FreeBSD X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Feb 2013 13:19:32 -0000 On 2013/02/13 22:33, Tom Evans wrote: > On Wed, Feb 13, 2013 at 12:30 PM, Yamaya Takashi > wrote: >> On 2013/02/13 19:08, O. Hartmann wrote: >>> Setting only base system source compiler optins in /etc/src.conf, for >>> instance >>> >>> # >>> CXXFLAGS+= -stdlib=libc++ >>> CXXFLAGS+= -std=c++11 >>> >>> >>> which do NOT appear in /etc/make.conf, make building port >>> grahpics/libfpx complaining about unrecognized compiler options. >>> >>> As far a sI know, /etc/src.conf is ONLY for building the source tree of >>> the operating system and make.conf is supposed to contain all stuff >>> necessary for compiling both world and ports, but /etc/src.conf is world >>> only. >>> >>> Am I wrong? >>> >>> Oliver >>> >> Yes. >> Because files/Makefile.bsd includes , >> /etc/src.conf is included. >> >> > src.conf(5) says: > > The only purpose of src.conf is to control the compilation of the FreeBSD > source code, which is usually located in /usr/src. > > Cheers > > Tom > > src.conf(5) says: The values of variables are ignored regardless of their setting; even if they would be set to ``FALSE'' or ``NO''. Just the existence of an option will cause it to be honoured by make(1). The following list provides a name and short description for variables that can be used for source builds. Does it mean ONLY WITH_* and WITHOUT_* variables are allowed in /etc/src.conf?