Date: Wed, 1 Aug 2018 07:50:30 +0000 (UTC) From: Tobias Kortkamp <tobik@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r476162 - head/devel/mico Message-ID: <201808010750.w717oUuq082410@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tobik Date: Wed Aug 1 07:50:29 2018 New Revision: 476162 URL: https://svnweb.freebsd.org/changeset/ports/476162 Log: devel/mico: Deprecate; fix build with Clang 6 uni_fromuni.cc:56:3: error: constant expression evaluates to 240 which cannot be narrowed to type 'char' [-Wc++11-narrowing] 0xF0, 0xF1, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7, /* 0x30-0x37 ( 48- 55) */ ^~~~ http://beefy12.nyi.freebsd.org/data/head-amd64-default/p475478_s336801/logs/errors/mico-2.3.13_3.log yacc.yy:1798:34: error: reference to 'string_literals' is ambiguous yyval.node = new ParseNode( string_literals, yyvsp[0].node ); ^ ./parsenode.h:124:3: note: candidate found by name lookup is 'string_literals' string_literals, ^ /usr/include/c++/v1/string:4043:20: note: candidate found by name lookup is 'std::__1::literals::string_literals' inline namespace string_literals ^ - While here update WWW Modified: head/devel/mico/Makefile head/devel/mico/pkg-descr Modified: head/devel/mico/Makefile ============================================================================== --- head/devel/mico/Makefile Wed Aug 1 07:37:48 2018 (r476161) +++ head/devel/mico/Makefile Wed Aug 1 07:50:29 2018 (r476162) @@ -15,6 +15,8 @@ LICENSE_COMB= multi LICENSE_FILE_GPLv2= ${WRKSRC}/LICENSE-GPL LICENSE_FILE_LGPL20= ${WRKSRC}/LICENSE-LGPL +DEPRECATED= unmaintained upstream and unused in the ports tree +EXPIRATION_DATE= 2018-08-30 BROKEN_SSL= openssl-devel BROKEN_SSL_REASON_openssl-devel= member access into incomplete type 'BIO' (aka 'bio_st') @@ -22,6 +24,7 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-optimize --with-ssl=${OPENSSLBASE} MAKE_ARGS= INSTDIR=${STAGEDIR}${PREFIX} SHARED_INSTDIR=${STAGEDIR}${PREFIX} USES= gmake ncurses readline ssl +USE_CXXSTD= c++98 USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/${PORTNAME} Modified: head/devel/mico/pkg-descr ============================================================================== --- head/devel/mico/pkg-descr Wed Aug 1 07:37:48 2018 (r476161) +++ head/devel/mico/pkg-descr Wed Aug 1 07:50:29 2018 (r476162) @@ -21,4 +21,4 @@ Here is some of MICO features: o Relationship service, o Property service, o Time service, o Security service -WWW: http://www.mico.org +WWW: http://mico.sourceforge.net
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201808010750.w717oUuq082410>