From owner-svn-ports-all@FreeBSD.ORG Mon May 6 18:37:01 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 343049F9; Mon, 6 May 2013 18:37:01 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 0DAC29F6; Mon, 6 May 2013 18:37:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r46Ib0hD012796; Mon, 6 May 2013 18:37:00 GMT (envelope-from crees@svn.freebsd.org) Received: (from crees@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r46Ib0Uq012792; Mon, 6 May 2013 18:37:00 GMT (envelope-from crees@svn.freebsd.org) Message-Id: <201305061837.r46Ib0Uq012792@svn.freebsd.org> From: Chris Rees Date: Mon, 6 May 2013 18:37:00 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 May 2013 18:37:01 -0000 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 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