You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ja...@apache.org on 2013/07/22 12:25:44 UTC

[27/50] [abbrv] git commit: updated refs/heads/1684-feature-db-updates to ea07223

support R16B01

Due to non-OTP-ness, couch need to start its own OTP apps. R16B01
requires asn1 as a dependency for public_key.
Closes COUCHDB-1833.


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

Branch: refs/heads/1684-feature-db-updates
Commit: 136b28991fa40b92cde6e544f49c8fd18b9340ab
Parents: 5b7e4bd
Author: Dave Cottlehuber <dc...@apache.org>
Authored: Fri Jun 21 15:12:26 2013 +0200
Committer: Dave Cottlehuber <dc...@apache.org>
Committed: Fri Jun 21 15:12:26 2013 +0200

----------------------------------------------------------------------
 src/couchdb/couch_app.erl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/136b2899/src/couchdb/couch_app.erl
----------------------------------------------------------------------
diff --git a/src/couchdb/couch_app.erl b/src/couchdb/couch_app.erl
index 24b2f3a..9644877 100644
--- a/src/couchdb/couch_app.erl
+++ b/src/couchdb/couch_app.erl
@@ -20,7 +20,7 @@
 
 start(_Type, DefaultIniFiles) ->
     IniFiles = get_ini_files(DefaultIniFiles),
-    case start_apps([crypto, public_key, sasl, inets, oauth, ssl, ibrowse, syntax_tools, compiler, xmerl, mochiweb, os_mon]) of
+    case start_apps([crypto, asn1, public_key, sasl, inets, oauth, ssl, ibrowse, syntax_tools, compiler, xmerl, mochiweb, os_mon]) of
     ok ->
         couch_server_sup:start_link(IniFiles);
     {error, Reason} ->