Date: Sun, 21 Feb 2016 16:19:55 +0000 (UTC) From: Raphael Kubo da Costa <rakuco@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r409303 - head/databases/pgbouncer Message-ID: <201602211619.u1LGJt9E094473@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201602211619.u1LGJt9E094473>