diff options
author | jbeich <jbeich@FreeBSD.org> | 2016-11-21 14:52:38 +0800 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2016-11-21 14:52:38 +0800 |
commit | 55d5a1ad96d70e22607d07e015cf26a8ed5dbe60 (patch) | |
tree | ada9ca02bcd073725f0499c73658c81063665a28 /net | |
parent | 46b671beb05fe6c5a500eb7c7ad6a9655feb1313 (diff) | |
download | freebsd-ports-graphics-55d5a1ad96d70e22607d07e015cf26a8ed5dbe60.tar.gz freebsd-ports-graphics-55d5a1ad96d70e22607d07e015cf26a8ed5dbe60.tar.zst freebsd-ports-graphics-55d5a1ad96d70e22607d07e015cf26a8ed5dbe60.zip |
net/kea: unbreak build with boost 1.62 on 9.x
`_ZZN5boost6system15system_categoryEvE21system_category_const' referenced in section `.text' of .libs/libkea_asiolink_la-io_address.o: defined in discarded section `.bss._ZZN5boost6system15system_categoryEvE21system_category_const[_ZZN5boost6system15system_categoryEvE21system_category_const]' of .libs/libkea_asiolink_la-io_address.o
`_ZZN5boost6system16generic_categoryEvE22generic_category_const' referenced in section `.text' of .libs/libkea_asiolink_la-io_address.o: defined in discarded section `.bss._ZZN5boost6system16generic_categoryEvE22generic_category_const[_ZZN5boost6system16generic_categoryEvE22generic_category_const]' of .libs/libkea_asiolink_la-io_address.o
[...]
PR: 199601
Reported by: antoine (via exp-run)
Approved by: portmgr blanket
Diffstat (limited to 'net')
-rw-r--r-- | net/kea/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/kea/Makefile b/net/kea/Makefile index 1843f23fc11..1bffa3ea531 100644 --- a/net/kea/Makefile +++ b/net/kea/Makefile @@ -2,6 +2,7 @@ PORTNAME= kea PORTVERSION= 1.1.0 +PORTREVISION= 1 CATEGORIES= net ipv6 MASTER_SITES= ISC/kea/${PORTVERSION} @@ -14,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= liblog4cplus.so:devel/log4cplus \ libboost_system.so:devel/boost-libs -USES= autoreconf libtool pathfix python:3.3+ ssl +USES= autoreconf compiler:c++11-lang libtool pathfix python:3.3+ ssl USE_LDCONFIG= yes USE_RC_SUBR= ${PORTNAME} GNU_CONFIGURE= yes |