Use c++11 shared pointers when possible

This commit is contained in:
Baptiste Daroussin
2014-03-30 22:11:50 +00:00
parent 291ab0a534
commit ebdb7828af

View File

@@ -13,7 +13,6 @@ COMMENT= Microsoft file word processor format import filter library
LICENSE= LGPL21 MPL
LICENSE_COMB= dual
BUILD_DEPENDS= ${LOCALBASE}/include/boost/shared_ptr.hpp:${PORTSDIR}/devel/boost-libs
LIB_DEPENDS= libwpd-0.9.so:${PORTSDIR}/textproc/libwpd
OPTIONS_DEFINE= DOCS
@@ -21,10 +20,19 @@ OPTIONS_DEFINE= DOCS
CONFIGURE_ARGS= --disable-werror
CPPFLAGS+= -I${LOCALBASE}/include
GNU_CONFIGURE= yes
USES= libtool pkgconfig pathfix
USES= libtool pkgconfig pathfix compiler:features
USE_LDCONFIG= yes
PORTDOCS= *
DOCS_BUILD_DEPENDS= doxygen:${PORTSDIR}/devel/doxygen
DOCS_CONFIGURE_OFF= --without-docs
.include <bsd.port.mk>
.include <bsd.port.pre.mk>
.if ${COMPILER_FEATURES:Mlibc++}
CONFIGURE_ARGS= --with-sharedptr=c++11
.else
BUILD_DEPENDS+= ${LOCALBASE}/include/boost/shared_ptr.hpp:${PORTSDIR}/devel/boost-libs
CONFIGURE_ARGS= --with-sharedptr=boost
.endif
.include <bsd.port.post.mk>