Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 6 May 2013 18:37:00 +0000 (UTC)
From:      Chris Rees <crees@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r317540 - in head/databases: postgresql91-server postgresql92-server
Message-ID:  <201305061837.r46Ib0Uq012792@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: crees
Date: Mon May  6 18:37:00 2013
New Revision: 317540
URL: http://svnweb.freebsd.org/changeset/ports/317540

Log:
  Don't build client with ldap-- this is unnecessary and causes build breakage
  for package building because of lack of LDAP installation.
  
  PR:		ports/177381
  Tested by:	Chris Dukes <chris.dukes.aix@gmail.com>

Modified:
  head/databases/postgresql91-server/Makefile
  head/databases/postgresql92-server/Makefile

Modified: head/databases/postgresql91-server/Makefile
==============================================================================
--- head/databases/postgresql91-server/Makefile	Mon May  6 18:30:15 2013	(r317539)
+++ head/databases/postgresql91-server/Makefile	Mon May  6 18:37:00 2013	(r317540)
@@ -87,8 +87,8 @@ KRB5_DESC=       Build with kerberos pro
 NLS_DESC=	Use internationalized messages
 DTRACE_DESC=	Build with DTrace probes (server only)
 PAM_DESC=	Build with PAM Support
-LDAP_DESC=	Build with LDAP authentication support
-MIT_KRB5_DESC=	Build with MIT's kerberos support
+LDAP_DESC=	Build with LDAP authentication support (server only)
+MIT_KRB5_DESC=	Build with MIT kerberos support
 HEIMDAL_KRB5_DESC=	Builds with Heimdal kerberos
 GSSAPI_DESC=	Build with GSSAPI support
 OPTIMIZED_CFLAGS_DESC=	Builds with compiler optimizations (-O3)
@@ -157,8 +157,8 @@ CONFIGURE_ARGS+=--with-pam
 .  endif
 
 .  if ${PORT_OPTIONS:MLDAP}
-CONFIGURE_ARGS+=--with-ldap
 .    if defined (SERVER_ONLY)
+CONFIGURE_ARGS+=--with-ldap
 USE_OPENLDAP=	yes
 .    endif
 .  endif

Modified: head/databases/postgresql92-server/Makefile
==============================================================================
--- head/databases/postgresql92-server/Makefile	Mon May  6 18:30:15 2013	(r317539)
+++ head/databases/postgresql92-server/Makefile	Mon May  6 18:37:00 2013	(r317540)
@@ -87,8 +87,8 @@ KRB5_DESC=       Build with kerberos pro
 NLS_DESC=	Use internationalized messages
 DTRACE_DESC=	Build with DTrace probes (server only)
 PAM_DESC=	Build with PAM Support
-LDAP_DESC=	Build with LDAP authentication support
-MIT_KRB5_DESC=	Build with MIT's kerberos support
+LDAP_DESC=	Build with LDAP authentication support (server only)
+MIT_KRB5_DESC=	Build with MIT kerberos support
 HEIMDAL_KRB5_DESC=	Builds with Heimdal kerberos
 GSSAPI_DESC=	Build with GSSAPI support
 OPTIMIZED_CFLAGS_DESC=	Builds with compiler optimizations (-O3)
@@ -156,8 +156,8 @@ CONFIGURE_ARGS+=--with-pam
 .  endif
 
 .  if ${PORT_OPTIONS:MLDAP}
-CONFIGURE_ARGS+=--with-ldap
 .    if defined (SERVER_ONLY)
+CONFIGURE_ARGS+=--with-ldap
 USE_OPENLDAP=	yes
 .    endif
 .  endif



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