From owner-freebsd-ports@FreeBSD.ORG Mon Nov 9 22:54:26 2009 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7553D1065676 for ; Mon, 9 Nov 2009 22:54:26 +0000 (UTC) (envelope-from mikej@rogers.com) Received: from smtp125.rog.mail.re2.yahoo.com (smtp125.rog.mail.re2.yahoo.com [206.190.53.30]) by mx1.freebsd.org (Postfix) with SMTP id 0776A8FC18 for ; Mon, 9 Nov 2009 22:54:25 +0000 (UTC) Received: (qmail 99358 invoked from network); 9 Nov 2009 22:54:25 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=rogers.com; h=Received:X-YMail-OSG:X-Yahoo-Newman-Property:Received:Message-ID:In-Reply-To:References:Date:Subject:From:To:User-Agent:MIME-Version:Content-Type:Content-Transfer-Encoding:X-Priority:Importance; b=LTwqEQOJYUxTGgTSOKCaeX/VuV1rQgMkUJ/vkiq4ADUr31fmZ3Jpp+IPZIHg3oPjbRSB2Z0Osw7R4bUEbegZqxNOZcHYkthxUap7jk9E0bh2Wb2hDuaPrhNIdU3NX0Pw3phrCxOUxF1rzIx5kd+bZqR+HtPoN71KRaXyC7sC/ko= ; Received: from unknown (HELO wettoast.dyndns.org) (mikej@70.50.181.139 with login) by smtp125.rog.mail.re2.yahoo.com with SMTP; 9 Nov 2009 22:54:23 -0000 X-YMail-OSG: xGaL578VM1nH0BanEqFt8QX82VvTDVgY66gd2DblBlrfDuj8hgZpIajXVN3qD5BWKQ-- X-Yahoo-Newman-Property: ymail-3 Received: from 38.99.187.34 (SquirrelMail authenticated user mikej) by wettoast.dyndns.org with HTTP; Mon, 9 Nov 2009 17:54:31 -0500 Message-ID: In-Reply-To: <2339c224289b0b642c9e3c88d4bf288d.squirrel@wettoast.dyndns.org> References: <2339c224289b0b642c9e3c88d4bf288d.squirrel@wettoast.dyndns.org> Date: Mon, 9 Nov 2009 17:54:31 -0500 From: "Mike Jakubik" To: ports@freebsd.org User-Agent: SquirrelMail/1.4.19 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Cc: Subject: Re: FreeBSD Port: databases/sqlite3 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: Mon, 09 Nov 2009 22:54:26 -0000 On Mon, November 9, 2009 4:29 pm, Mike Jakubik wrote: > Hello, > > It seems that a recent version of sqlite3 has gained a build dependency on > TCL. How can i build this port without TCL? Sqlite3-3.6.14.2 did not > require this. The TCL wrapper is disabled in the make config. > > Thanks. After further research, it appears that the distribution that the port uses requires TCL to build, I'm guessing this is a recent change. --- SQLite does not require TCL to run, but a TCL installation is required by the makefiles. SQLite contains a lot of generated code and TCL is used to do much of that code generation. The makefile also requires AWK. --- I downloaded the sqlite-amalgamation-3.6.20.tar.gz distribution and i was able to compile this one without TCL, a simple ./configure && make did the job.