From owner-freebsd-apache@FreeBSD.ORG Wed Mar 19 01:39:52 2014 Return-Path: Delivered-To: apache@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 517ADDBC; Wed, 19 Mar 2014 01:39:52 +0000 (UTC) Received: from nskntqsrv01p.mx.bigpond.com (nskntqsrv01p.mx.bigpond.com [61.9.168.231]) by mx1.freebsd.org (Postfix) with ESMTP id BBEE1BB8; Wed, 19 Mar 2014 01:39:51 +0000 (UTC) Received: from nskntcmgw08p ([61.9.169.168]) by nskntmtas03p.mx.bigpond.com with ESMTP id <20140319011656.ZCLP7575.nskntmtas03p.mx.bigpond.com@nskntcmgw08p>; Wed, 19 Mar 2014 01:16:56 +0000 Received: from hermes.heuristicsystems.com.au ([121.210.107.100]) by nskntcmgw08p with BigPond Outbound id fDGv1n00W29zwdD01DGvSM; Wed, 19 Mar 2014 01:16:56 +0000 X-Authority-Analysis: v=2.0 cv=b+kwE66x c=1 sm=1 a=SEJ2iDwVkb98DYvesvueMw==:17 a=JipEcVzqA9wA:10 a=3bokN48ohh0A:10 a=8nJEP1OIZ-IA:10 a=GHIR_BbyAAAA:8 a=ZhO3wHjGaeYJUxcVBc4A:9 a=wPNLvfGTeEIA:10 a=SEJ2iDwVkb98DYvesvueMw==:117 Received: from [10.0.5.3] (ewsw01.hs [10.0.5.3]) (authenticated bits=0) by hermes.heuristicsystems.com.au (8.14.5/8.13.6) with ESMTP id s2J1Fp5x092651 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NOT); Wed, 19 Mar 2014 12:15:51 +1100 (EST) (envelope-from dewayne.geraghty@heuristicsystems.com.au) Message-ID: <5328EFB5.8090702@heuristicsystems.com.au> Date: Wed, 19 Mar 2014 12:15:33 +1100 From: Dewayne Geraghty User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: bug-followup@FreeBSD.org, wouter@grep.be Subject: Re: ports/124375: security/heimdal: www/mod_auth_kerb doesn't compile against heimdal in ports Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: apache@FreeBSD.org X-BeenThere: freebsd-apache@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Support of apache-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Mar 2014 01:39:52 -0000 To build the www/mod_auth_kerb2 package on a 9.2Stable system using the security/heimdal port, is to copy the following into files/ --- patch-Makefile.in.orig 2014-03-13 19:57:40.000000000 +1100 +++ patch-Makefile.in 2014-03-13 19:58:11.000000000 +1100 @@ -4,7 +4,7 @@ APXS = @APXS@ KRB5_CPPFLAGS = @KRB5_CPPFLAGS@ -KRB5_LDFLAGS = @KRB5_LDFLAGS@ -+KRB5_LDFLAGS = @KRB5_LDFLAGS@ -lgssapi_krb5 ++KRB5_LDFLAGS = @KRB5_LDFLAGS@ KRB4_CPPFLAGS = @KRB4_CPPFLAGS@ KRB4_LDFLAGS = @KRB4_LDFLAGS@ LIB_resolv = @LIB_resolv@ patch-src__mod_auth_kerb_last.c --- src/mod_auth_kerb.c.orig 2013-11-27 16:33:18.000000000 +1100 +++ src/mod_auth_kerb.c 2013-11-27 16:33:35.000000000 +1100 @@ -100,6 +100,7 @@ #include #ifdef HEIMDAL # include +# include #else # include # include caveat: heimdal is placed into /usr (PREFIX=/usr), so my HEIMDAL_HOME=/usr which enables the include files and libraries to be found by other ports. Regards, Dewayne.