From owner-freebsd-questions Wed Apr 4 11:27:50 2001 Delivered-To: freebsd-questions@freebsd.org Received: from dsl-64-193-218-89.telocity.com (dsl-64-193-218-89.telocity.com [64.193.218.89]) by hub.freebsd.org (Postfix) with SMTP id 81EF337B72E for ; Wed, 4 Apr 2001 11:27:47 -0700 (PDT) (envelope-from lucas@slb.to) Received: (qmail 21087 invoked by uid 1000); 4 Apr 2001 18:28:05 -0000 Date: Wed, 4 Apr 2001 13:28:04 -0500 From: Lucas Bergman To: Drew Tomlinson Cc: freebsd-questions@freebsd.org Subject: Re: OT: FrontPage Extensions on Apache Message-ID: <20010404132804.B8238@billygoat.slb.to> Reply-To: lucas@slb.to References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from drewt@writeme.com on Wed, Apr 04, 2001 at 10:58:51AM -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > [blah, blah, blah...] > > EAPI_MM="/path/to/mm-1.1.3" SSL_BASE="/path/to/openssl-0.9.6" > ./configure \ --"then continue with various options" > > When I attempted to run such a command, I received an error stating > "EAPI_MM="/path/to/mm-1.1.3: Command not found." I don't know anything about FrontPage (mostly since it's a security nightmare), but I think your problem lies in the failed command above. You're using csh, right? (By default, root does.) The command above works for Bourne-derived shells, but not for csh-derived shells. Try the equivalent: env EAPI_MM="/path/to/mm-1.1.3" SSL_BASE="/path/to/openssl-0.9.6" \ ./configure \ # configure options... That should work with any shell. Lucas To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message