From owner-freebsd-apache@FreeBSD.ORG Wed Mar 19 01:40:01 2014 Return-Path: Delivered-To: apache@smarthost.ysv.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 C55EEEFD for ; Wed, 19 Mar 2014 01:40:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B203FBC2 for ; Wed, 19 Mar 2014 01:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2J1e09o071760 for ; Wed, 19 Mar 2014 01:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2J1e06g071759; Wed, 19 Mar 2014 01:40:00 GMT (envelope-from gnats) Date: Wed, 19 Mar 2014 01:40:00 GMT Message-Id: <201403190140.s2J1e06g071759@freefall.freebsd.org> To: apache@FreeBSD.org From: Dewayne Geraghty Subject: Re: ports/124375: security/heimdal: www/mod_auth_kerb doesn't compile against heimdal in ports X-BeenThere: freebsd-apache@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Dewayne Geraghty 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:40:01 -0000 The following reply was made to PR ports/124375; it has been noted by GNATS. From: Dewayne Geraghty To: bug-followup@FreeBSD.org, wouter@grep.be Cc: apache@FreeBSD.org Subject: Re: ports/124375: security/heimdal: www/mod_auth_kerb doesn't compile against heimdal in ports Date: Wed, 19 Mar 2014 12:15:33 +1100 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.