Fix includes
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="}]}).
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 @@
         {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).