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 2008/08/05 05:21:34 UTC

svn commit: r682571 - in /incubator/couchdb/trunk/src/couchdb: Makefile.am couch.app.tpl.in

Author: damien
Date: Mon Aug  4 20:21:33 2008
New Revision: 682571

URL: http://svn.apache.org/viewvc?rev=682571&view=rev
Log:
Added new erlang source file to build system.

Modified:
    incubator/couchdb/trunk/src/couchdb/Makefile.am
    incubator/couchdb/trunk/src/couchdb/couch.app.tpl.in

Modified: incubator/couchdb/trunk/src/couchdb/Makefile.am
URL: http://svn.apache.org/viewvc/incubator/couchdb/trunk/src/couchdb/Makefile.am?rev=682571&r1=682570&r2=682571&view=diff
==============================================================================
--- incubator/couchdb/trunk/src/couchdb/Makefile.am (original)
+++ incubator/couchdb/trunk/src/couchdb/Makefile.am Mon Aug  4 20:21:33 2008
@@ -44,7 +44,8 @@
     couch_server_sup.erl \
     couch_stream.erl \
     couch_util.erl \
-    couch_view.erl
+    couch_view.erl \
+    couch_db_updater.erl
 
 couchebin_DATA = \
     cjson.beam \
@@ -65,7 +66,8 @@
     couch_server_sup.beam \
     couch_stream.beam \
     couch_util.beam \
-    couch_view.beam
+    couch_view.beam \
+    couch_db_updater.beam
 
 couchinclude_DATA = couch_db.hrl
 

Modified: incubator/couchdb/trunk/src/couchdb/couch.app.tpl.in
URL: http://svn.apache.org/viewvc/incubator/couchdb/trunk/src/couchdb/couch.app.tpl.in?rev=682571&r1=682570&r2=682571&view=diff
==============================================================================
--- incubator/couchdb/trunk/src/couchdb/couch.app.tpl.in (original)
+++ incubator/couchdb/trunk/src/couchdb/couch.app.tpl.in Mon Aug  4 20:21:33 2008
@@ -4,6 +4,7 @@
               {modules,[couch_btree,
                         cjson,
                         couch_db,
+                        couch_db_updater,
                         couch_doc,
                         couch_query_servers,
                         couch_file,