From owner-freebsd-ports-bugs@freebsd.org Thu Mar 23 11:22:57 2017 Return-Path: Delivered-To: freebsd-ports-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6D8FCD19FAA for ; Thu, 23 Mar 2017 11:22:57 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 441281820 for ; Thu, 23 Mar 2017 11:22:57 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v2NBMvox043053 for ; Thu, 23 Mar 2017 11:22:57 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-ports-bugs@FreeBSD.org Subject: [Bug 218030] [New port] devel/hhdate: A date and time library based on the C++11 (and beyond) header Date: Thu, 23 Mar 2017 11:22:57 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: andreas.sommer87@googlemail.com X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-ports-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Mar 2017 11:22:57 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D218030 --- Comment #6 from Andreas Sommer --- (In reply to Michael Gmelin from comment #4) The library works fine for both C++11/C++14 but the tests seem only maintai= ned for C++14. Since the tests don't build for C++11, I simply didn't make the effort at the current time to fix that. The upstream maintainer already fix= ed some problems that came up during the port build (TEST=3Don), and I think m= aking it build with C++11 could be done when the maintainer or I have more time available. Since the library states that it works for both standards, I added these te= sts to actually confirm that statement: > @echo "C++14 compiler (chosen: ${CXX}) should compile minimal example" > ${CXX} -std=3Dc++14 -stdlib=3Dlibc++ ${CXXFLAGS} ${FILESDIR}/test-minimal= .cpp \ > -I${STAGEDIR}${PREFIX}/include -o ${WRKDIR}/test-minimal && \ > ${WRKDIR}/test-minimal >/dev/null >=20 > @echo "System compiler in C++11 mode should compile minimal example" > clang++ -std=3Dc++11 -stdlib=3Dlibc++ ${FILESDIR}/test-minimal.cpp \ > -I${STAGEDIR}${PREFIX}/include -o ${WRKDIR}/test-minimal && \ > ${WRKDIR}/test-minimal >/dev/null Regarding USE_CXXSTD: we're juggling two different language standards in the Makefile, so I'd rather have it explicitly defined everywhere (everywhere = =3D "do-test" target). What do you think? --=20 You are receiving this mail because: You are the assignee for the bug.=