From owner-freebsd-ports@FreeBSD.ORG Thu Aug 17 21:24:34 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org 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 47A1116A4DD for ; Thu, 17 Aug 2006 21:24:34 +0000 (UTC) (envelope-from alan.bryan@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9BCD343D45 for ; Thu, 17 Aug 2006 21:24:33 +0000 (GMT) (envelope-from alan.bryan@gmail.com) Received: by nf-out-0910.google.com with SMTP id n29so1221325nfc for ; Thu, 17 Aug 2006 14:24:32 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=hznBCU4k0gTzvLzHvW28CJWK6Q5KEas3gzEupsDxgXHBV37hQQms5LOh97GmSA1ViqNTe5ohPbm9hVJiOmLtbJDvktogDDt1u1DmyrN7eLDwkOUcFnJFcnGxY0idjYvwEOrCz8S8op9LjbSwa4NM7GFJZqrY5QffLx46Ajgx0Lc= Received: by 10.49.8.1 with SMTP id l1mr3068112nfi; Thu, 17 Aug 2006 14:24:31 -0700 (PDT) Received: by 10.49.93.1 with HTTP; Thu, 17 Aug 2006 14:24:31 -0700 (PDT) Message-ID: <892916310608171424x2d278a6ak7588509567cdb633@mail.gmail.com> Date: Thu, 17 Aug 2006 14:24:31 -0700 From: "alan bryan" To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: Apache 2.2 and Postgres X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2006 21:24:34 -0000 Hi, I'm trying to get Apache 2.2 and Postgres to work together so that I can use mod_authn_dbd. I think the problem is that APR is not being passed the correct arguments so that it configures with PGSQL support. # ldd /usr/local/libexec/apache22/mod_authn_dbd.so /usr/local/libexec/apache22/mod_authn_dbd.so: # ldd /usr/local/libexec/apache22/mod_dbd.so /usr/local/libexec/apache22/mod_dbd.so: Shouldn't there be various pgsql things listed here? I compiled ports/apache22 with WITH_PGSQL=yes and also tried WITH_PGSQL=/usr/local/pgsql with no changes in result. Am I doing something wrong here? Apache error logs show: [Thu Aug 17 13:59:12 2006] [crit] (70023)This function has not been implemented on this platform: DBD: driver for [DBDriver unset] not available [Thu Aug 17 13:59:12 2006] [crit] (70023)This function has not been implemented on this platform: DBD: failed to initialise On another list someone says that the apr-util needs parameters passed to it in order to compile in Postgres support. http://marc.theaimsgroup.com/?l=apache-httpd-users&m=113855247701995&w=2 So, my main question is: Is there a way for me to pass arguments to the apr-util part of the port compilation so it compiles with postgres support and I can thus use mod_authn_dbd and mod_dbd with Postgres support? Thanks, Alan