diff options
author | Raphael Kubo da Costa <rakuco@FreeBSD.org> | 2016-02-21 16:19:55 +0000 |
---|---|---|
committer | Raphael Kubo da Costa <rakuco@FreeBSD.org> | 2016-02-21 16:19:55 +0000 |
commit | 56fa14c7effdbfe41d6c0b9557ba6da95942c55a (patch) | |
tree | bc23d31000c42f1086f062277cad78247a3fe44e /databases/pgbouncer | |
parent | d9d4e940f796f4281260de4dc61367c83a546da4 (diff) | |
download | ports-56fa14c7effdbfe41d6c0b9557ba6da95942c55a.tar.gz ports-56fa14c7effdbfe41d6c0b9557ba6da95942c55a.zip |
.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)
Notes
Notes:
svn path=/head/; revision=409303
Diffstat (limited to 'databases/pgbouncer')
-rw-r--r-- | databases/pgbouncer/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/databases/pgbouncer/Makefile b/databases/pgbouncer/Makefile index f5b8f2ebea2e..cac970116514 100644 --- a/databases/pgbouncer/Makefile +++ b/databases/pgbouncer/Makefile @@ -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> |