From owner-cvs-src-old@FreeBSD.ORG Fri Apr 2 07:00:26 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0518E106568F for ; Fri, 2 Apr 2010 07:00:08 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 674BD8FC18 for ; Fri, 2 Apr 2010 07:00:05 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o32705P8096179 for ; Fri, 2 Apr 2010 07:00:05 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o32705xl096178 for cvs-src-old@freebsd.org; Fri, 2 Apr 2010 07:00:05 GMT (envelope-from netchild@repoman.freebsd.org) Message-Id: <201004020700.o32705xl096178@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to netchild@repoman.freebsd.org using -f From: Alexander Leidinger Date: Fri, 2 Apr 2010 06:55:31 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src UPDATING src/share/man/man7 build.7 src/share/mk bsd.lib.mk bsd.port.mk bsd.prog.mk sys.mk src/sys/conf kern.mk kern.post.mk kern.pre.mk kmod.mk X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Apr 2010 07:00:26 -0000 netchild 2010-04-02 06:55:31 UTC FreeBSD src repository Modified files: . UPDATING share/man/man7 build.7 share/mk bsd.lib.mk bsd.port.mk bsd.prog.mk sys.mk sys/conf kern.mk kern.post.mk kern.pre.mk kmod.mk Log: SVN rev 206082 on 2010-04-02 06:55:31Z by netchild WITH_CTF can now be specified in src.conf (not recommended, there are some problems with static executables), make.conf (would also affect ports which do not use GNU make and do not override the compile targets) or in the kernel config (via "makeoptions WITH_CTF=yes"). Additional (related) changes: - propagate WITH_CTF to module builds - do not add -g to the linker flags, it's a noop there anyway (at least according to the man page of ld) - do not add -g to CFLAGS unconditionally we need to have a look if it is really needed (IMO not) or if there is a way to add it only when WITH_CTF is used Note: ctfconvert / ctfmerge lines will not appear in the build output, to protect the innocent (those which do not build with WITH_CTF would see the shell-test and may think WITH_CTF is used). Reviewed by: imp, jhb, scottl (earlier version) Discussed on: arch@ Revision Changes Path 1.657 +10 -0 src/UPDATING 1.55 +10 -1 src/share/man/man7/build.7 1.188 +17 -36 src/share/mk/bsd.lib.mk 1.310 +5 -0 src/share/mk/bsd.port.mk 1.153 +7 -6 src/share/mk/bsd.prog.mk 1.105 +22 -60 src/share/mk/sys.mk 1.63 +8 -0 src/sys/conf/kern.mk 1.107 +6 -6 src/sys/conf/kern.post.mk 1.108 +2 -9 src/sys/conf/kern.pre.mk 1.231 +5 -0 src/sys/conf/kmod.mk