From owner-freebsd-ports@FreeBSD.ORG Sun Mar 21 00:20:21 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 503E916A4CE for ; Sun, 21 Mar 2004 00:20:21 -0800 (PST) Received: from ms-smtp-01.nyroc.rr.com (ms-smtp-01.nyroc.rr.com [24.24.2.55]) by mx1.FreeBSD.org (Postfix) with ESMTP id E0C4D43D2F for ; Sun, 21 Mar 2004 00:20:20 -0800 (PST) (envelope-from BCSFD204@twcny.rr.com) Received: from twcny.rr.com (syr-24-59-143-77.twcny.rr.com [24.59.143.77]) i2L8KIXs009878 for ; Sun, 21 Mar 2004 03:20:18 -0500 (EST) Message-ID: <405D4E91.3030608@twcny.rr.com> Date: Sun, 21 Mar 2004 03:13:05 -0500 From: Tom Parquette User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.6) Gecko/20040228 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: Symantec AntiVirus Scan Engine Subject: Apache2 syntax error for mod_ext_filter.so X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Mar 2004 08:20:21 -0000 Hi. I've been ignoring this problem for some time because I didn't care about the apache2 on this machine. I finally decided to look into the problem. When I try to start apache2 I get: P3R-272# pkg_info|grep apache apache-2.0.48_3 Version 2 of the extremely popular Apache http server apache-ant-1.6.1 Java- and XML-based build tool, conceptually similar to mak P3R-272# /usr/local/etc/rc.d/apache2.sh start Syntax error on line 237 of /usr/local/etc/apache2/httpd.conf: Cannot load /usr/local/libexec/apache2/mod_ext_filter.so into server: Cannot open "/usr/local/libexec/apache2/mod_ext_filter.so" The syntax appears correct in httpd.conf: LoadModule auth_dbm_module libexec/apache2/mod_auth_dbm.so #LoadModule auth_digest_module libexec/apache2/mod_auth_digest.so LoadModule ext_filter_module libexec/apache2/mod_ext_filter.so LoadModule include_module libexec/apache2/mod_include.so LoadModule deflate_module libexec/apache2/mod_deflate.so It appears this module is not here: P3R-272# ls -l /usr/local/libexec/apache2/mod_e* -rwxr-xr-x 1 root wheel 7654 Feb 18 20:25 /usr/local/libexec/apache2/mod_env.so -rwxr-xr-x 1 root wheel 10401 Feb 18 20:25 /usr/local/libexec/apache2/mod_expires.so P3R-272# If I comment out LoadModule ext_filter_module, apache will start (but I get some very weird errors in cvsweb and bugzilla gives me "internal error" messages. Searching the mailing list archives only got me hundreds of unrelated hits. Any ideas guys? TIA