Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 3 Nov 2015 04:55:59 +0000 (UTC)
From:      Cy Schubert <cy@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r400684 - head/security/pam_krb5
Message-ID:  <201511030455.tA34txFi097914@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: cy
Date: Tue Nov  3 04:55:58 2015
New Revision: 400684
URL: https://svnweb.freebsd.org/changeset/ports/400684

Log:
  As of r399238, when the heimdal port option was selected, this port did
  not build properly. Prior to r399238, even if the heimdal port was
  installed, the base krb5 libraries and include files were used. This is
  because ports/security/heimdal places its libraries in
  ${LOCALBASE}/lib/heimdal and include files in ${LOCALBASE}/include/heimdal,
  which this port does not look for (unless told to do so... by this commit).
  
  Discovered by:	marino

Modified:
  head/security/pam_krb5/Makefile

Modified: head/security/pam_krb5/Makefile
==============================================================================
--- head/security/pam_krb5/Makefile	Tue Nov  3 03:29:48 2015	(r400683)
+++ head/security/pam_krb5/Makefile	Tue Nov  3 04:55:58 2015	(r400684)
@@ -3,7 +3,7 @@
 
 PORTNAME=		pam_krb5
 PORTVERSION=		4.7
-PORTREVISION=		1
+PORTREVISION=		2
 CATEGORIES=		security
 MASTER_SITES=		http://archives.eyrie.org/software/kerberos/ \
 			http://archives.eyrie.org/software/ARCHIVE/pam-krb5/
@@ -37,7 +37,9 @@ KRB5_DIR?=		${HEIMDAL_HOME}
 .else
 KRB5_DIR?=		${LOCALBASE}
 .endif
-CONFIGURE_ARGS+=	--with-krb5="${KRB5_DIR}"
+CONFIGURE_ARGS+=	--with-krb5="${KRB5_DIR}" \
+			--with-krb5-include="${KRB5_DIR}/include/heimdal" \
+			--with-krb5-lib="${KRB5_DIR}/lib/heimdal"
 CONFIGURE_ENV=		PATH_KRB5_CONFIG=${KRB5_DIR}/bin/krb5-config
 .elif ${PORT_OPTIONS:MMIT}
 USES+=			gssapi:mit



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201511030455.tA34txFi097914>