From owner-freebsd-questions@FreeBSD.ORG Tue Feb 19 07:39:09 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 87D6C16A417 for ; Tue, 19 Feb 2008 07:39:09 +0000 (UTC) (envelope-from tedm@toybox.placo.com) Received: from mail.freebsd-corp-net-guide.com (mail.freebsd-corp-net-guide.com [65.75.192.90]) by mx1.freebsd.org (Postfix) with ESMTP id 458B313C461 for ; Tue, 19 Feb 2008 07:39:09 +0000 (UTC) (envelope-from tedm@toybox.placo.com) Received: from TEDSDSK (nat-rtr.freebsd-corp-net-guide.com [65.75.197.130]) by mail.freebsd-corp-net-guide.com (8.13.8/8.13.8) with SMTP id m1J7cwuw020691; Mon, 18 Feb 2008 23:38:59 -0800 (PST) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "Da Rock" , Date: Mon, 18 Feb 2008 23:40:00 -0800 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1914 In-Reply-To: <1203380178.6470.13.camel@laptop2.herveybayaustralia.com.au> Importance: Normal X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (mail.freebsd-corp-net-guide.com [65.75.192.90]); Mon, 18 Feb 2008 23:38:59 -0800 (PST) Cc: Subject: RE: Still looking for a calendar server... 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: Tue, 19 Feb 2008 07:39:09 -0000 > -----Original Message----- > From: owner-freebsd-questions@freebsd.org > [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Da Rock > Sent: Monday, February 18, 2008 4:16 PM > To: freebsd-questions@freebsd.org > Subject: Re: Still looking for a calendar server... > > > > I'm currently looking into bedework now- it seems ideal, but getting > tomcat to work with apache is becoming a challenge. I'm using mod_jk but > it doesn't appear to be cooperating yet. > > What is your experience in building apache modules? The problem is > mainly in the mod_dav_acl module which needs xattr.h. I'm wondering if > we can "borrow" the headers from another source. > You can borrow whatever headers you need to get the code to compile. You may find that it would work a lot better though if you change the xattr.h include to: include The problem will be in the link stage. If the libraries that you have linked in do not contain the functions that are defined in xattr.h then you will get link failures. However I don't really understand why your having problems. The SF page for this, here: http://sourceforge.net/projects/moddavacl claims: "Operating System: All POSIX (Linux/BSD/UNIX-like OSes)" This would indicate a configure script that understands FreeBSD is present. It sounds to me like you are not following the instructions included with the mod_dav_acl module to build it properly. What exactly are you doing? Could you post the steps your going through to build this? I had thought Mirosoft deprecated all the webdav stuff in future IIS servers - maybe there is a lack of interest in the industry now? Ted