From owner-freebsd-current@FreeBSD.ORG Thu Dec 16 22:13:10 2004 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 26DAC16A4EE for ; Thu, 16 Dec 2004 22:13:10 +0000 (GMT) Received: from pi.codefab.com (pi.codefab.com [199.103.21.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id B0D4E43D1F for ; Thu, 16 Dec 2004 22:13:07 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from [192.168.1.3] (pool-68-160-207-47.ny325.east.verizon.net [68.160.207.47]) by pi.codefab.com (8.12.11/8.12.11) with ESMTP id iBGMD1Z3035233 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 16 Dec 2004 17:13:03 -0500 (EST) Message-ID: <41C20868.7060702@mac.com> Date: Thu, 16 Dec 2004 17:12:56 -0500 From: Chuck Swiger Organization: The Courts of Chaos User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.3) Gecko/20040910 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Giorgos Keramidas References: <41C10C99.10600@mac.com> <20041216134701.GA44809@orion.daedalusnetworks.priv> In-Reply-To: <20041216134701.GA44809@orion.daedalusnetworks.priv> X-Enigmail-Version: 0.89.5.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=1.8 required=5.5 tests=RCVD_IN_NJABL_DUL, RCVD_IN_SORBS_DUL autolearn=disabled version=3.0.1 X-Spam-Level: * X-Spam-Checker-Version: SpamAssassin 3.0.1 (2004-10-22) on pi.codefab.com cc: freebsd-current@freebsd.org Subject: Re: make vs. gmake in 6-CURRENT... X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 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, 16 Dec 2004 22:13:10 -0000 Giorgos Keramidas wrote: [ ... ] > Revision 1.16 of the port Makefile doesn't build a growisofs executable. It doesn't? Ah, thank you, I see: [ ... ] c++ -O2 -fno-strict-aliasing -pipe -fno-exceptions -c -o growisofs_mmc.o growisofs_mmc.cpp cc -O2 -fno-strict-aliasing -pipe -c -o growisofs.o growisofs.c c++ -O2 -fno-strict-aliasing -pipe -fno-exceptions -c -o dvd+rw-format.o dvd+rw-format.cpp ...under 6, versus this under 4.10: c++ -O -pipe -fno-exceptions -c -o growisofs_mmc.o growisofs_mmc.cpp cc -O -pipe -c -o growisofs.o growisofs.c c++ -O -pipe -fno-exceptions -o growisofs growisofs_mmc.o growisofs.o -lcam c++ -O -pipe -fno-exceptions -c -o dvd+rw-format.o dvd+rw-format.cpp OK. > If we don't have the ability to reorganize things within the distfile > (because, e.g. the creator of dvd+rw-tools distfile does not target just > FreeBSD), using gmake seems to be the way to go. I don't have an objection to depending on gmake, but I would prefer not to add dependencies which are not really necessary. In other words, I'd still like to know what changed in make from FreeBSD-4 & 5 to 6. :-) As to the author, he's been reasonably responsive to adding an env variable or two to facilitate FreeBSD port preferences (such as not installing setuid by default) and to using ?= rather than = in defining CC and such. The port's primary audience is Linux, but FreeBSD, NetBSD, and OpenBSD, Solaris, etc, are all recognized as supported platforms. -- -Chuck