From owner-svn-ports-head@freebsd.org Sun Feb 21 16:19:56 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 EC835AB037F; Sun, 21 Feb 2016 16:19:56 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BFB2F1606; Sun, 21 Feb 2016 16:19:56 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1LGJtSu094475; Sun, 21 Feb 2016 16:19:55 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1LGJt9E094473; Sun, 21 Feb 2016 16:19:55 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201602211619.u1LGJt9E094473@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sun, 21 Feb 2016 16:19:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r409303 - head/databases/pgbouncer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: Sun, 21 Feb 2016 16:19:57 -0000 Author: rakuco Date: Sun Feb 21 16:19:55 2016 New Revision: 409303 URL: https://svnweb.freebsd.org/changeset/ports/409303 Log: .Fix build on 9.x. Setting WITH_OPENSSL_PORT after including bsd.ports.pre.mk is a no-op, include bsd.port.options.mk instead. The 2016Q1 is unaffected by this bug. PR: 207382 Submitted by: m.tsatsenko@gmail.com (maintainer) Modified: head/databases/pgbouncer/Makefile Modified: head/databases/pgbouncer/Makefile ============================================================================== --- head/databases/pgbouncer/Makefile Sun Feb 21 16:14:43 2016 (r409302) +++ head/databases/pgbouncer/Makefile Sun Feb 21 16:19:55 2016 (r409303) @@ -41,7 +41,7 @@ PLIST_SUB+= PGBOUNCER_USER="${USERS}" \ PGBOUNCER_RUNDIR="${PGBOUNCER_RUNDIR}" SUB_LIST+= PGBOUNCER_RUNDIR="${PGBOUNCER_RUNDIR}" -.include +.include .if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000 WITH_OPENSSL_PORT= yes @@ -65,4 +65,4 @@ do-install: @${MKDIR} ${STAGEDIR}${PGBOUNCER_RUNDIR} \ ${STAGEDIR}${PGBOUNCER_LOGDIR} -.include +.include