You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by da...@apache.org on 2014/02/06 17:43:35 UTC

[04/12] couch-index commit: updated refs/heads/import-rcouch to 4a5a0e3

inital move to rebar compilation

- move src/apps
- download dependencies using rebar
- replace ejson by jiffy
- replace couch_drv & couch_ejson_compare by couch_collate


Project: http://git-wip-us.apache.org/repos/asf/couchdb-couch-index/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-couch-index/commit/1f969fd0
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-couch-index/tree/1f969fd0
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-couch-index/diff/1f969fd0

Branch: refs/heads/import-rcouch
Commit: 1f969fd06a1c5f8abcc6cbe0d35782d6f6a5dc08
Parents: 7a61bc8
Author: benoitc <be...@apache.org>
Authored: Mon Jan 6 21:12:45 2014 +0100
Committer: Paul J. Davis <pa...@gmail.com>
Committed: Thu Feb 6 10:41:47 2014 -0600

----------------------------------------------------------------------
 src/couch_index.erl           | 2 +-
 src/couch_index_compactor.erl | 3 +--
 src/couch_index_server.erl    | 2 +-
 src/couch_index_updater.erl   | 2 +-
 src/couch_index_util.erl      | 2 +-
 5 files changed, 5 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-couch-index/blob/1f969fd0/src/couch_index.erl
----------------------------------------------------------------------
diff --git a/src/couch_index.erl b/src/couch_index.erl
index df004b4..7e38212 100644
--- a/src/couch_index.erl
+++ b/src/couch_index.erl
@@ -24,7 +24,7 @@
 -export([handle_call/3, handle_cast/2, handle_info/2]).
 
 
--include("couch_db.hrl").
+-include_lib("couch/include/couch_db.hrl").
 
 
 -record(st, {

http://git-wip-us.apache.org/repos/asf/couchdb-couch-index/blob/1f969fd0/src/couch_index_compactor.erl
----------------------------------------------------------------------
diff --git a/src/couch_index_compactor.erl b/src/couch_index_compactor.erl
index 72bff51..a2ac11c 100644
--- a/src/couch_index_compactor.erl
+++ b/src/couch_index_compactor.erl
@@ -21,8 +21,7 @@
 -export([init/1, terminate/2, code_change/3]).
 -export([handle_call/3, handle_cast/2, handle_info/2]).
 
-
--include("couch_db.hrl").
+-include_lib("couch/include/couch_db.hrl").
 
 
 -record(st, {

http://git-wip-us.apache.org/repos/asf/couchdb-couch-index/blob/1f969fd0/src/couch_index_server.erl
----------------------------------------------------------------------
diff --git a/src/couch_index_server.erl b/src/couch_index_server.erl
index 8e2baf6..7a7bd55 100644
--- a/src/couch_index_server.erl
+++ b/src/couch_index_server.erl
@@ -19,7 +19,7 @@
 -export([init/1, terminate/2, code_change/3]).
 -export([handle_call/3, handle_cast/2, handle_info/2]).
 
--include("couch_db.hrl").
+-include_lib("couch/include/couch_db.hrl").
 
 -define(BY_SIG, couchdb_indexes_by_sig).
 -define(BY_PID, couchdb_indexes_by_pid).

http://git-wip-us.apache.org/repos/asf/couchdb-couch-index/blob/1f969fd0/src/couch_index_updater.erl
----------------------------------------------------------------------
diff --git a/src/couch_index_updater.erl b/src/couch_index_updater.erl
index c6d3059..9f54a56 100644
--- a/src/couch_index_updater.erl
+++ b/src/couch_index_updater.erl
@@ -21,7 +21,7 @@
 -export([init/1, terminate/2, code_change/3]).
 -export([handle_call/3, handle_cast/2, handle_info/2]).
 
--include("couch_db.hrl").
+-include_lib("couch/include/couch_db.hrl").
 
 -record(st, {
     idx,

http://git-wip-us.apache.org/repos/asf/couchdb-couch-index/blob/1f969fd0/src/couch_index_util.erl
----------------------------------------------------------------------
diff --git a/src/couch_index_util.erl b/src/couch_index_util.erl
index 0b833d3..c91d122 100644
--- a/src/couch_index_util.erl
+++ b/src/couch_index_util.erl
@@ -15,7 +15,7 @@
 -export([root_dir/0, index_dir/2, index_file/3]).
 -export([load_doc/3, sort_lib/1, hexsig/1]).
 
--include("couch_db.hrl").
+-include_lib("couch/include/couch_db.hrl").
 
 
 root_dir() ->