svn commit: r383867 - in head/lang/elixir: . files
Jimmy Olgeni
olgeni at FreeBSD.org
Sun Apr 12 13:06:49 UTC 2015
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 at 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,
More information about the svn-ports-head
mailing list