You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by kx...@apache.org on 2015/06/01 22:42:17 UTC

[23/50] rebar commit: updated refs/heads/import to e9f62c4

Revert "Merge pull request #281 from tuncer/rebar-h-internal"

This reverts commit 07e2232847baa634b7d09bdb87dafda6c6bcc4a4, reversing
changes made to 37cf470ae9a07cdd2e0769f3af9a8b89fcde8db0.


Project: http://git-wip-us.apache.org/repos/asf/couchdb-rebar/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-rebar/commit/0b1e6b37
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-rebar/tree/0b1e6b37
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-rebar/diff/0b1e6b37

Branch: refs/heads/import
Commit: 0b1e6b3779024e1c4faf4b0e4b778d6d9d99a716
Parents: 24ce11c
Author: Fred Hebert <mo...@ferd.ca>
Authored: Mon Jun 23 13:48:49 2014 -0400
Committer: Fred Hebert <mo...@ferd.ca>
Committed: Mon Jun 23 13:48:49 2014 -0400

----------------------------------------------------------------------
 include/rebar.hrl | 14 ++++++++++++++
 src/rebar.hrl     | 14 --------------
 2 files changed, 14 insertions(+), 14 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-rebar/blob/0b1e6b37/include/rebar.hrl
----------------------------------------------------------------------
diff --git a/include/rebar.hrl b/include/rebar.hrl
new file mode 100644
index 0000000..b19fdd3
--- /dev/null
+++ b/include/rebar.hrl
@@ -0,0 +1,14 @@
+%% TODO: rename FAIL to ABORT once we require at least R13B04 for
+%% building rebar. Macros with different arity were not supported by the
+%% compiler before 13B04.
+-define(FAIL, rebar_utils:abort()).
+-define(ABORT(Str, Args), rebar_utils:abort(Str, Args)).
+
+-define(CONSOLE(Str, Args), io:format(Str, Args)).
+
+-define(DEBUG(Str, Args), rebar_log:log(debug, Str, Args)).
+-define(INFO(Str, Args), rebar_log:log(info, Str, Args)).
+-define(WARN(Str, Args), rebar_log:log(warn, Str, Args)).
+-define(ERROR(Str, Args), rebar_log:log(standard_error, error, Str, Args)).
+
+-define(FMT(Str, Args), lists:flatten(io_lib:format(Str, Args))).

http://git-wip-us.apache.org/repos/asf/couchdb-rebar/blob/0b1e6b37/src/rebar.hrl
----------------------------------------------------------------------
diff --git a/src/rebar.hrl b/src/rebar.hrl
deleted file mode 100644
index b19fdd3..0000000
--- a/src/rebar.hrl
+++ /dev/null
@@ -1,14 +0,0 @@
-%% TODO: rename FAIL to ABORT once we require at least R13B04 for
-%% building rebar. Macros with different arity were not supported by the
-%% compiler before 13B04.
--define(FAIL, rebar_utils:abort()).
--define(ABORT(Str, Args), rebar_utils:abort(Str, Args)).
-
--define(CONSOLE(Str, Args), io:format(Str, Args)).
-
--define(DEBUG(Str, Args), rebar_log:log(debug, Str, Args)).
--define(INFO(Str, Args), rebar_log:log(info, Str, Args)).
--define(WARN(Str, Args), rebar_log:log(warn, Str, Args)).
--define(ERROR(Str, Args), rebar_log:log(standard_error, error, Str, Args)).
-
--define(FMT(Str, Args), lists:flatten(io_lib:format(Str, Args))).