You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by rn...@apache.org on 2014/07/10 12:50:10 UTC

couch-plugins commit: updated refs/heads/master to 4bb066a

Repository: couchdb-couch-plugins
Updated Branches:
  refs/heads/master [created] 4bb066a8d


Fix includes


Project: http://git-wip-us.apache.org/repos/asf/couchdb-couch-plugins/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-couch-plugins/commit/4bb066a8
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-couch-plugins/tree/4bb066a8
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-couch-plugins/diff/4bb066a8

Branch: refs/heads/master
Commit: 4bb066a8d134e257fd78d4dc29d2cdfdd1640804
Parents: 2ee6321
Author: Robert Newson <rn...@apache.org>
Authored: Thu Jul 10 11:49:51 2014 +0100
Committer: Robert Newson <rn...@apache.org>
Committed: Thu Jul 10 11:49:51 2014 +0100

----------------------------------------------------------------------
 src/couch_plugins.erl       | 2 +-
 src/couch_plugins_httpd.erl | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-couch-plugins/blob/4bb066a8/src/couch_plugins.erl
----------------------------------------------------------------------
diff --git a/src/couch_plugins.erl b/src/couch_plugins.erl
index a4950be..dcbd2d3 100644
--- a/src/couch_plugins.erl
+++ b/src/couch_plugins.erl
@@ -10,7 +10,7 @@
 % License for the specific language governing permissions and limitations under
 % the License.
 -module(couch_plugins).
--include("couch_db.hrl").
+-include_lib("couch/include/couch_db.hrl").
 -export([install/1, uninstall/1]).
 
 % couch_plugins:install({"geocouch", "http://127.0.0.1:8000", "1.0.0", [{"R15B03", "+XOJP6GSzmuO2qKdnjO+mWckXVs="}]}).

http://git-wip-us.apache.org/repos/asf/couchdb-couch-plugins/blob/4bb066a8/src/couch_plugins_httpd.erl
----------------------------------------------------------------------
diff --git a/src/couch_plugins_httpd.erl b/src/couch_plugins_httpd.erl
index 83fd916..4dabbb4 100644
--- a/src/couch_plugins_httpd.erl
+++ b/src/couch_plugins_httpd.erl
@@ -13,7 +13,7 @@
 
 -export([handle_req/1]).
 
--include_lib("couch_db.hrl").
+-include_lib("couch/include/couch_db.hrl").
 
 handle_req(#httpd{method='POST'}=Req) ->
     ok = couch_httpd:verify_is_server_admin(Req),
@@ -62,4 +62,4 @@ parse_checksums(Checksums) ->
         {binary_to_list(K), parse_checksums(V)};
       ({K, V}) ->
          {binary_to_list(K), binary_to_list(V)}
-    end, Checksums).
\ No newline at end of file
+    end, Checksums).