svn commit: r409303 - head/databases/pgbouncer

Raphael Kubo da Costa rakuco at FreeBSD.org
Sun Feb 21 16:19:57 UTC 2016


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 at 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 <bsd.port.pre.mk>
+.include <bsd.port.options.mk>
 
 .if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000
 WITH_OPENSSL_PORT=	yes
@@ -65,4 +65,4 @@ do-install:
 	@${MKDIR} ${STAGEDIR}${PGBOUNCER_RUNDIR} \
 		${STAGEDIR}${PGBOUNCER_LOGDIR}
 
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>


More information about the svn-ports-all mailing list