Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 12 Apr 2015 13:06:48 +0000 (UTC)
From:      Jimmy Olgeni <olgeni@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r383867 - in head/lang/elixir: . files
Message-ID:  <201504121306.t3CD6mWU087157@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: olgeni
Date: Sun Apr 12 13:06:48 2015
New Revision: 383867
URL: https://svnweb.freebsd.org/changeset/ports/383867

Log:
  Apply compatibility fix for Erlang 17.5.1.

Added:
  head/lang/elixir/files/
  head/lang/elixir/files/patch-lib_elixir_src_elixir.erl   (contents, props changed)
Modified:
  head/lang/elixir/Makefile

Modified: head/lang/elixir/Makefile
==============================================================================
--- head/lang/elixir/Makefile	Sun Apr 12 12:58:02 2015	(r383866)
+++ head/lang/elixir/Makefile	Sun Apr 12 13:06:48 2015	(r383867)
@@ -3,7 +3,7 @@
 
 PORTNAME=	elixir
 PORTVERSION=	1.0.2
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	lang
 
 MAINTAINER=	lwhsu@FreeBSD.org

Added: head/lang/elixir/files/patch-lib_elixir_src_elixir.erl
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/elixir/files/patch-lib_elixir_src_elixir.erl	Sun Apr 12 13:06:48 2015	(r383867)
@@ -0,0 +1,17 @@
+
+$FreeBSD$
+
+--- lib/elixir/src/elixir.erl.orig
++++ lib/elixir/src/elixir.erl
+@@ -29,9 +29,9 @@
+     end,
+ 
+   ok = io:setopts(standard_io, Opts),
+-  %% Must use undocument {unicode, true} to set unicode on standard_error, more
++  %% Must use {encoding,unicode} to set unicode on standard_error, more
+   %% info: http://erlang.org/pipermail/erlang-bugs/2014-April/004310.html
+-  ok = io:setopts(standard_error, [{unicode,true}]),
++  ok = io:setopts(standard_error, [{encoding,unicode}]),
+   case file:native_name_encoding() of
+     latin1 ->
+       io:format(standard_error,



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201504121306.t3CD6mWU087157>