svn commit: r494932 - head/lang/parrot

Jan Beich jbeich at FreeBSD.org
Thu Mar 7 12:58:37 UTC 2019


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 \


More information about the svn-ports-all mailing list