From owner-freebsd-ports@FreeBSD.ORG Sun Nov 20 03:53:42 2005 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 97E7216A420 for ; Sun, 20 Nov 2005 03:53:42 +0000 (GMT) (envelope-from ringworm01@gmail.com) Received: from zproxy.gmail.com (zproxy.gmail.com [64.233.162.200]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0D7143D49 for ; Sun, 20 Nov 2005 03:53:41 +0000 (GMT) (envelope-from ringworm01@gmail.com) Received: by zproxy.gmail.com with SMTP id 8so447168nzo for ; Sat, 19 Nov 2005 19:53:40 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:from:subject:date:user-agent:cc:references:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:to:message-id; b=KdH80fKxtAhyTlrf7ZlYTjs4zrE7Ru6zAK1VwHepkw1tywfUq2fn4BwoLxWL4Hx8qG+DoVqDtMIt0Bg0WKXjDzMN6WcGhxZKB7J6p8DAvZ2c5l+Vxd2s8A6QbbcWOakQAQ0BiUsR8bGl4n0LAwjCT3mi72BezTOEY+sPTlgfVaA= Received: by 10.36.220.6 with SMTP id s6mr1552493nzg; Sat, 19 Nov 2005 19:53:40 -0800 (PST) Received: from ?192.168.1.10? ( [71.102.14.129]) by mx.gmail.com with ESMTP id 36sm232086nzk.2005.11.19.19.53.38; Sat, 19 Nov 2005 19:53:40 -0800 (PST) From: "Michael C. Shultz" Date: Sat, 19 Nov 2005 19:44:18 -0800 User-Agent: KMail/1.8.3 References: <200511191229.33754.ringworm01@gmail.com> <200511191232.43811.ringworm01@gmail.com> In-Reply-To: <200511191232.43811.ringworm01@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline To: Undisclosed.Recipients: ; Message-Id: <200511191944.18899.ringworm01@gmail.com> Cc: ports@freebsd.org Subject: Re: cdrtools fails to build on i386 -FreeBSD 6.0 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Nov 2005 03:53:42 -0000 On Saturday 19 November 2005 12:32, Michael C. Shultz wrote: > On Saturday 19 November 2005 12:29, Michael C. Shultz wrote: > > Here is the error I get, btw cdrtools-cjk has the same error: > > > > make clean > > ===> Cleaning for libiconv-1.9.2_1 > > ===> Cleaning for gettext-0.14.5 > > ===> Cleaning for gmake-3.80_2 > > ===> Cleaning for libtool-1.5.20 > > ===> Cleaning for cdrtools-2.01_1 > > mike@zzz:/usr/ports-CURRENT/sysutils/cdrtools>make NOCCACHE=1 > > > > You may use the following build option(s): > > > > WITH_RSCSI=yes builds with the rscsi daemon which provides > > access to local SCSI-devices over the network (the client-side in > > cdda2wav, cdrecord, etc. is built unconditionally). BEWARE: The rscsi > > binary gets installed suid root as this is the preferred method to set it > > up. > > > > WITH_CDDB=yes builds with cddb (http://freedb.org) support > > > > ===> Vulnerability check disabled, database not found > > ===> Extracting for cdrtools-2.01_1 > > => MD5 Checksum OK for cdrtools-2.01.tar.bz2. > > => No SHA256 checksum recorded for cdrtools-2.01.tar.bz2. > > ln: > > /tmp/usr/ports-CURRENT/sysutils/cdrtools/work/cdrtools-2.01/RULES/i386-fr > >ee bsd-/usr/bin/cc.rul: No such file or directory > > *** Error code 1 > > > > Stop in /usr/ports-CURRENT/sysutils/cdrtools. > > mike@zzz:/usr/ports-CURRENT/sysutils/cdrtools> > > > > It seems like this: i386-freebsd-/usr/bin/cc.rul: > > should be: i386-freebsd-cc /usr/bin/cc.rul: > > > > -Mike > > Sorry for posting here, I was trying to build gnome2 and this is stopping > progress, this should have gone to ports@FreeBSD.org. > > -Mike To anyone who cares, it was an entry in make.conf fro ccache that caused this failure, this port messes up CC= if it is defined like this: CC= /usr/bin/cc Has to be like this: CC= cc or just leave CC alone in make.conf My new ccache entry that now works for everything: .if !defined(NOCCACHE) CC= /usr/local/libexec/ccache/cc CXX= /usr/local/libexec/ccache/c++ .endif -Mike