diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-03-30 22:11:50 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-03-30 22:11:50 +0000 |
commit | ebdb7828af716f6cfc0a813f88c119d218b78dc6 (patch) | |
tree | ed104d332316ea28da4292c2af39ab07212c35b7 /textproc | |
parent | When STL is libc++ use shared pointer from C++11 instead of boost one (diff) |
Use c++11 shared pointers when possible
Notes
Notes:
svn path=/head/; revision=349688
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/libwps/Makefile | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/textproc/libwps/Makefile b/textproc/libwps/Makefile index 3a881309656b..207c82649c45 100644 --- a/textproc/libwps/Makefile +++ b/textproc/libwps/Makefile @@ -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> |