From owner-svn-ports-head@freebsd.org Mon Jan 11 04:04:44 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0B7D4A6B696; Mon, 11 Jan 2016 04:04:44 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: from mail-pf0-x236.google.com (mail-pf0-x236.google.com [IPv6:2607:f8b0:400e:c00::236]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D79501525; Mon, 11 Jan 2016 04:04:43 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: by mail-pf0-x236.google.com with SMTP id 65so38261259pff.2; Sun, 10 Jan 2016 20:04:43 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:reply-to:subject:references:to:from:message-id:date :user-agent:mime-version:in-reply-to:content-type :content-transfer-encoding; bh=kUrQj0Mga4580A2HYIKHOhHxHQOTHyFPIaNiX3zN5oU=; b=m48M1w3dz2lNPX15PBUHYotdYKADknmyEAUpLMZ3Zbgh8TylP0TuZBeH8lEvfb4Vmu cvYvH03fZESzogjwK8fNvrfZG2A7vVnoIDw8R+51O/YP5oGe2B/pch7B1gpn3ar40h9B zzohk/nNQj9ozW7q8lfFELz4O2prtFYIQfzwhFWagWitAoEg2pmQF57dC39q0e4fNhAS BjvTIp9p3RSvOGRuIU1lZWsJ9y8v2I/wPoKFX8xHIpYmdd6HOEhpytkp7zLfs6o5jJs5 UIctfkSWQZxmazYT35EEQrCdh7Djcshhqm1PG/K8xkbTyWIHPigNG9C8w4smYbD+K14w OAsQ== X-Received: by 10.98.18.76 with SMTP id a73mr23066841pfj.65.1452485083428; Sun, 10 Jan 2016 20:04:43 -0800 (PST) Received: from ?IPv6:2001:44b8:31ae:7b01::4? (2001-44b8-31ae-7b01-0000-0000-0000-0004.static.ipv6.internode.on.net. [2001:44b8:31ae:7b01::4]) by smtp.gmail.com with ESMTPSA id fi16sm108527746pac.12.2016.01.10.20.04.41 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 10 Jan 2016 20:04:43 -0800 (PST) Sender: Kubilay Kocak Reply-To: koobs@FreeBSD.org Subject: Re: svn commit: r405746 - head/net/openldap24-server References: <201601102046.u0AKkbd6052728@repo.freebsd.org> To: Olli Hauer , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org From: Kubilay Kocak Message-ID: <569329D6.6080503@FreeBSD.org> Date: Mon, 11 Jan 2016 15:04:38 +1100 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Thunderbird/43.0 MIME-Version: 1.0 In-Reply-To: <201601102046.u0AKkbd6052728@repo.freebsd.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Jan 2016 04:04:44 -0000 On 11/01/2016 7:46 AM, Olli Hauer wrote: > Author: ohauer > Date: Sun Jan 10 20:46:36 2016 > New Revision: 405746 > URL: https://svnweb.freebsd.org/changeset/ports/405746 > > Log: > - mark broken if build with FETCH=on agains OpenSSL from ports > > PR: 201372 > Submitted by: Michelle Sullivan > Reviewed by: delphij@ > > Modified: > head/net/openldap24-server/Makefile > > Modified: head/net/openldap24-server/Makefile > ============================================================================== > --- head/net/openldap24-server/Makefile Sun Jan 10 20:33:01 2016 (r405745) > +++ head/net/openldap24-server/Makefile Sun Jan 10 20:46:36 2016 (r405746) > @@ -191,6 +191,10 @@ CFLAGS+= -DMDB_DSYNC=O_SYNC -Dfdatasync > > .if !${PORT_OPTIONS:MFETCH} > CONFIGURE_ARGS+= --without-fetch > +.else > +. if defined(OPENSSL_INSTALLED) && ${OPENSSL_INSTALLED} != "" || defined(WITH_OPENSSL_PORT) > +BROKEN= using OpenSSL from ports and OPTION FETCH together is not supported > +. endif > .endif > > .if ${PORT_OPTIONS:MSASL} > MFH?