From owner-svn-ports-head@freebsd.org Thu Aug 29 19:38:37 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id D7D10DE73C; Thu, 29 Aug 2019 19:38:37 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46KCb15Mpmz46mF; Thu, 29 Aug 2019 19:38:37 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9B05524B93; Thu, 29 Aug 2019 19:38:37 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7TJcbt0096229; Thu, 29 Aug 2019 19:38:37 GMT (envelope-from pkubaj@FreeBSD.org) Received: (from pkubaj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7TJcbS1096228; Thu, 29 Aug 2019 19:38:37 GMT (envelope-from pkubaj@FreeBSD.org) Message-Id: <201908291938.x7TJcbS1096228@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pkubaj set sender to pkubaj@FreeBSD.org using -f From: Piotr Kubaj Date: Thu, 29 Aug 2019 19:38:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r510182 - head/misc/adios2 X-SVN-Group: ports-head X-SVN-Commit-Author: pkubaj X-SVN-Commit-Paths: head/misc/adios2 X-SVN-Commit-Revision: 510182 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Aug 2019 19:38:37 -0000 Author: pkubaj Date: Thu Aug 29 19:38:37 2019 New Revision: 510182 URL: https://svnweb.freebsd.org/changeset/ports/510182 Log: misc/adios2: fix build with GCC-based architectures Needs C++11 compiler to build: target_compile_features The compiler feature "cxx_auto_type" is not known to CXX compiler "GNU" version 4.2.1. It also tries to link to libepoll-shim.so (installed by libfabric), so link to it and and devel/libepoll-shim to LIB_DEPENDS. PR: 239635 Approved by: yuri (maintainer), linimon (mentor) Differential Revision: https://reviews.freebsd.org/D21400 Modified: head/misc/adios2/Makefile Modified: head/misc/adios2/Makefile ============================================================================== --- head/misc/adios2/Makefile Thu Aug 29 19:37:17 2019 (r510181) +++ head/misc/adios2/Makefile Thu Aug 29 19:38:37 2019 (r510182) @@ -13,6 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= bash:shells/bash LIB_DEPENDS= libblosc.so:archivers/c-blosc \ + libepoll-shim.so:devel/libepoll-shim \ libfabric.so:net/libfabric \ libffi.so:devel/libffi \ libmpi.so:net/openmpi \ @@ -20,7 +21,8 @@ LIB_DEPENDS= libblosc.so:archivers/c-blosc \ libzfp.so:devel/zfp RUN_DEPENDS= bash:shells/bash -USES= bison cmake pkgconfig perl5 python shebangfix +USES= bison cmake compiler:c++11-lang localbase:ldflags pkgconfig \ + perl5 python shebangfix SHEBANG_FILES= cmake/install/post/adios2-config.pre.sh.in cmake/install/post/generate-adios2-config.sh.in source/utils/bp4dbg/bp4dbg.py USE_GITHUB= yes GH_ACCOUNT= ornladios @@ -28,5 +30,6 @@ GH_PROJECT= ADIOS2 USE_LDCONFIG= yes CMAKE_OFF= BUILD_TESTING +LDFLAGS+= -lepoll-shim .include