Date: Fri, 24 Apr 2015 19:34:20 +0000 (UTC) From: Thierry Thomas <thierry@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r384676 - head/cad/kicad Message-ID: <201504241934.t3OJYKDC074034@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: thierry Date: Fri Apr 24 19:34:19 2015 New Revision: 384676 URL: https://svnweb.freebsd.org/changeset/ports/384676 Log: Mark BROKEN of FreeBSD < 10: /usr/local/lib/libwebkitgtk-1.0.so.0: undefined reference to `std::chrono::_V2::steady_clock::now()@GLIBCXX_3.4.19' /usr/local/lib/libjavascriptcoregtk-1.0.so.0: undefined reference to `std::chrono::_V2::system_clock::now()@GLIBCXX_3.4.19' collect2: error: ld returned 1 exit status This is standard C++11, but there is a problem with stdlib. Note: now it could be built with clang, but the produced binaries don't behave correctly. Modified: head/cad/kicad/Makefile Modified: head/cad/kicad/Makefile ============================================================================== --- head/cad/kicad/Makefile Fri Apr 24 19:28:04 2015 (r384675) +++ head/cad/kicad/Makefile Fri Apr 24 19:34:19 2015 (r384676) @@ -56,6 +56,11 @@ EXTRAS2RM= linux-non_unicode linux wings .include <bsd.port.options.mk> +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000 +# undefined reference to `std::chrono::_V2::steady_clock::now()@GLIBCXX_3.4.19' +BROKEN= Does not link +.endif + .if {PORT_OPTIONS:MDOCS} LICENSE+= GFDL LICENSE_COMB= multi
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201504241934.t3OJYKDC074034>