From owner-freebsd-questions@FreeBSD.ORG Thu Apr 10 21:09:40 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 30D92106564A for ; Thu, 10 Apr 2008 21:09:40 +0000 (UTC) (envelope-from fbsd.questions@rachie.is-a-geek.net) Received: from snoogles.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 8C8B18FC12 for ; Thu, 10 Apr 2008 21:09:39 +0000 (UTC) (envelope-from fbsd.questions@rachie.is-a-geek.net) Received: from localhost (localhost [127.0.0.1]) by snoogles.rachie.is-a-geek.net (Postfix) with ESMTP id 847431CC91; Thu, 10 Apr 2008 13:09:38 -0800 (AKDT) From: Mel To: freebsd-questions@freebsd.org Date: Thu, 10 Apr 2008 22:59:05 +0200 User-Agent: KMail/1.9.7 References: <20080408215017.AAFA910656E2@hub.freebsd.org> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200804102259.06435.fbsd.questions@rachie.is-a-geek.net> Cc: Tim DeBoer Subject: Re: freebsd-questions Digest, Vol 210, Issue 6 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Apr 2008 21:09:40 -0000 On Wednesday 09 April 2008 06:43:23 Tim DeBoer wrote: > ------------------------------ > > > Message: 16 > > Date: Tue, 8 Apr 2008 21:24:58 +0200 > > From: Mel > > Subject: Re: Apache22 Port Install Problem > > To: freebsd-questions@freebsd.org > > Cc: Tim DeBoer > > Message-ID: <200804082124.59257.fbsd.questions@rachie.is-a-geek.net> > > Content-Type: text/plain; charset="iso-8859-1" > > > > On Tuesday 08 April 2008 07:11:47 Tim DeBoer wrote: > > > The install goes fine, no obvious errors anyway, when I do apachectl > > > configtest, I get > > > # apachectl configtest > > > Syntax error on line 117 of /usr/local/etc/apache22/httpd.conf: > > > Invalid command 'Order', perhaps misspelled or defined by a module not > > > > > > > > Is this line present and active? > > LoadModule authz_host_module libexec/apache22/mod_authz_host.so > > > > > > -- > > Mel > > > > Problem with today's modular software: they start with the modules > > and never get to the software part. > > No. > I do have LoadModule auth_basic_module libexec/apache22/mod_auth_basic.so > though. > > I tried recompiling again without auth_basic, and used the authz options > instead, but it's not actually installing them for some reason. > > # make deinstall > ===> Deinstalling for www/apache22 > ===> Deinstalling apache-2.2.8 > pkg_delete: file '/usr/local/libexec/apache22/mod_authz_dbm.so' doesn't > exist > pkg_delete: file '/usr/local/libexec/apache22/mod_authz_default.so' doesn't > exist > pkg_delete: file '/usr/local/libexec/apache22/mod_authz_groupfile.so' > doesn't exist > pkg_delete: file '/usr/local/libexec/apache22/mod_authz_host.so' doesn't > exist Well, authz_host is the module that provides the Order directive, so the only reason I can think of that it didn't get installed after redoing make config is that you didn't make clean so that it just reinstalled the previously built version. If you're sure thats not the case, could you show: cat /var/db/ports/apache22/options and the output of: cd /usr/ports/www/apache22 && make -V CONFIGURE_ARGS -- Mel Problem with today's modular software: they start with the modules and never get to the software part.