diff options
author | Adam Kocoloski <adam@cloudant.com> | 2010-08-12 12:06:39 -0400 |
---|---|---|
committer | Adam Kocoloski <adam@cloudant.com> | 2010-08-18 14:24:56 -0400 |
commit | d3e57c0113dfe1c722b6afcc11fed272a2338116 (patch) | |
tree | b24ad9a9baa4ff87fffb6897f44d40ef3ffe8454 /rel | |
parent | 89affb0a7cb9769641ed2cdd45544b26748ca93e (diff) |
add chttpd to build system and update reltool.config
Diffstat (limited to 'rel')
-rw-r--r-- | rel/reltool.config | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/rel/reltool.config b/rel/reltool.config index 0ee91698..d64044ee 100644 --- a/rel/reltool.config +++ b/rel/reltool.config @@ -12,18 +12,26 @@ mochiweb, ibrowse, oauth, - couch + couch, + rexi, + fabric, + mem3, + chttpd ]}, {rel, "start_clean", "", [kernel, stdlib]}, {boot_rel, "dbcore"}, {profile, embedded}, {excl_sys_filters, ["^bin/.*", "^erts.*/bin/(dialyzer|typer)"]}, {excl_archive_filters, [".*"]}, - {app, sasl, [{incl_cond, include}]}, - {app, mochiweb, [{incl_cond, include}]}, - {app, ibrowse, [{incl_cond, include}]}, - {app, oauth, [{incl_cond, include}]}, - {app, couch, [{incl_cond, include}]} + + % It's sufficient to list 'chttpd' here, as reltool will pull in all + % dependencies. But we'll be explicit and list everything actively + % developed in this repository. + {app, rexi, [{incl_cond, include}]}, + {app, fabric, [{incl_cond, include}]}, + {app, mem3, [{incl_cond, include}]}, + {app, couch, [{incl_cond, include}]}, + {app, chttpd, [{incl_cond, include}]} ]}. {overlay, [ |