From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 28 14:20:31 2005 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA00916A41F for ; Sun, 28 Aug 2005 14:20:31 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A5AD43D46 for ; Sun, 28 Aug 2005 14:20:31 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7SEKV7B061988 for ; Sun, 28 Aug 2005 14:20:31 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7SEKVBA061987; Sun, 28 Aug 2005 14:20:31 GMT (envelope-from gnats) Date: Sun, 28 Aug 2005 14:20:31 GMT Message-Id: <200508281420.j7SEKVBA061987@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: cw Cc: Subject: Re: ports/84681: mod_fastcgi doesn't install with apache2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: cw List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Aug 2005 14:20:31 -0000 The following reply was made to PR ports/84681; it has been noted by GNATS. From: cw To: bug-followup@FreeBSD.org, ben@flyingwalrus.net Cc: Subject: Re: ports/84681: mod_fastcgi doesn't install with apache2 Date: Sun, 28 Aug 2005 15:20:17 +0100 Having just come across this problem myself it is actually quite easy to fix. The cause of the problem is that mod_fastcgi.so is being created in: /usr/ports/www/mod_fastcgi/work/mod_fastcgi-2.4.2/.lib The very first install command changes to: /usr/ports/www/mod_fastcgi/work/mod_fastcgi-2.4.2 and then attempts to work on mod_fastcgi.so in that directory. To do the install stage yourself: cd /usr/ports/www/mod_fastcgi/work/mod_fastcgi-2.4.2 cp ./.lib/mod_fastcgi.so ./ /usr/local/sbin/apxs -i -a -n fastcgi mod_fastcgi.so Regards, Colin.