From owner-svn-ports-head@freebsd.org Thu Mar 7 12:58:37 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A4A85152E675; Thu, 7 Mar 2019 12:58:37 +0000 (UTC) (envelope-from jbeich@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 39815837D4; Thu, 7 Mar 2019 12:58:37 +0000 (UTC) (envelope-from jbeich@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 2DB0D1BF39; Thu, 7 Mar 2019 12:58:37 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x27CwbZf002153; Thu, 7 Mar 2019 12:58:37 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x27CwbIP002152; Thu, 7 Mar 2019 12:58:37 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201903071258.x27CwbIP002152@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 7 Mar 2019 12:58:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r494932 - head/lang/parrot X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/lang/parrot X-SVN-Commit-Revision: 494932 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 39815837D4 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] 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, 07 Mar 2019 12:58:37 -0000 Author: jbeich Date: Thu Mar 7 12:58:36 2019 New Revision: 494932 URL: https://svnweb.freebsd.org/changeset/ports/494932 Log: lang/parrot: unbreak with ICU 64 In file included from src/ops/core_ops.c:72: In file included from /usr/local/include/unicode/uchar.h:28: In file included from /usr/local/include/unicode/utypes.h:38: In file included from /usr/local/include/unicode/umachine.h:46: In file included from /usr/local/include/unicode/ptypes.h:52: In file included from /usr/local/include/unicode/platform.h:25: /usr/local/include/unicode/uvernum.h:123:8: error: 'U_DISABLE_VERSION_SUFFIX' is not defined, evaluates to 0 [-Werror,-Wundef] #elif !U_DISABLE_VERSION_SUFFIX ^ PR: 236325 Approved by: portmgr blanket Modified: head/lang/parrot/Makefile (contents, props changed) Modified: head/lang/parrot/Makefile ============================================================================== --- head/lang/parrot/Makefile Thu Mar 7 12:58:12 2019 (r494931) +++ head/lang/parrot/Makefile Thu Mar 7 12:58:36 2019 (r494932) @@ -23,8 +23,8 @@ OPTIONS_DEFINE= DOCS ALL_TARGET= installable CONFIGURE_ARGS= --cc=${CC} --cxx=${CXX} --link=${CXX} \ - --ccflags="${CFLAGS} -I${LOCALBASE}/include" \ - --ld=${CC} --ldflags="${LDFLAGS} -L${LIBDIR} -L${LOCALBASE}/lib" \ + --ccflags="${CFLAGS}" \ + --ld=${CC} --ldflags="${LDFLAGS}" \ --gc=gms --inline --optimize --parrot_is_shared --verbose \ --prefix=${PREFIX} \ --icu-config=${LOCALBASE}/bin/icu-config \ @@ -35,7 +35,7 @@ INSTALL_TARGET= install-dev TEST_TARGET= test MAKE_JOBS_UNSAFE= yes USE_LDCONFIG= yes -USES= bison gmake perl5 shebangfix tar:bzip2 +USES= bison gmake localbase:ldflags perl5 shebangfix tar:bzip2 SHEBANG_FILES= tools/dev/create_language.pl \ tools/dev/gen_makefile.pl \ tools/dev/pprof2cg.pl \