From owner-freebsd-questions Mon Dec 10 11:58:14 2001 Delivered-To: freebsd-questions@freebsd.org Received: from echoriath.hiddenrock.com (n19.cs-33c.value.net [209.182.155.19]) by hub.freebsd.org (Postfix) with SMTP id B9E4A37B41B for ; Mon, 10 Dec 2001 11:58:08 -0800 (PST) Received: (qmail 13131 invoked by uid 1001); 10 Dec 2001 20:54:32 -0000 Date: Mon, 10 Dec 2001 12:54:32 -0800 From: Peter Johnson To: Jarek Granat Cc: freebsd-questions@freebsd.org Subject: Re: Ports - BitchX&IPv6 Message-ID: <20011210125432.A13103@echoriath.hiddenrock.com> References: <20011210122642.A12800@echoriath.hiddenrock.com> <20011210203609.L6025-100000@adeon.lublin.pl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011210203609.L6025-100000@adeon.lublin.pl>; from jarek@adeon.lublin.pl on Mon, Dec 10, 2001 at 08:41:38PM +0100 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Dec 10, 2001 at 08:41:38PM +0100, Jarek Granat wrote: > > I'm pretty sure environment variables need to come before the command to be > > executed. Try this: "WITH_IPV6=yes make". > > Sorry, I don't understand. Maybe I'm too lame ;) > I'd like to install BitchX from FreeBSD ports collection. > > I can't type: "WITH_IPV6=yes make", because I have "command not found". > > How can I do that? > > I tried sth. like that: > > #cd /usr/ports/irc/bitchx > #make WITH_IPV6=yes > #make install Interesting. I think this is a shell issue. I've built ports by specifying environment variables first (my shell at the time was bash). A sure-fire way would be to set the environment variable before running make. So, depending on your shell, it would look something like this: #cd /usrt/ports/irc/bitchx #export WITH_IPV6=yes #make #make install Of course, "export" is bash-specific. Other shells like tcsh use "set". If neither of these work, I'd resort to the manpage of the shell you're using. =) Good luck. pete -- http://www.hiddenrock.com "I see that I have turned my eyes to a treasure no less dear than the treasure of Thingol that Beren once desired." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message