Updated Branches: refs/heads/nodejs_couchdb 4a18ddfad -> 068bbab39
Support the --with-js-* options but give a deprecation warning Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/068bbab3 Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/068bbab3 Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/068bbab3 Branch: refs/heads/nodejs_couchdb Commit: 068bbab393d19485a2c759b3939627b92ca08d4d Parents: a614678 Author: Jason Smith (work) <[email protected]> Authored: Wed Jan 30 12:30:19 2013 +0000 Committer: Jason Smith (work) <[email protected]> Committed: Wed Jan 30 12:30:19 2013 +0000 ---------------------------------------------------------------------- configure.ac | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/068bbab3/configure.ac ---------------------------------------------------------------------- diff --git a/configure.ac b/configure.ac index 6709d10..f39bf94 100644 --- a/configure.ac +++ b/configure.ac @@ -150,6 +150,20 @@ AC_ARG_WITH([erlang], AC_SUBST(ERLANG_FLAGS) +AC_ARG_WITH([js-include], + [AS_HELP_STRING([--with-js-include=PATH], + [Deprecated; no more SpiderMonkey support]) +], [ + AC_MSG_WARN([No more SpiderMonkey support: --with-js-include is deprecated]) +], []) + +AC_ARG_WITH([js-lib], + [AS_HELP_STRING([--with-js-lib=PATH], + [Deprecated; no more SpiderMonkey support]) +], [ + AC_MSG_WARN([No more SpiderMonkey support: --with-js-lib is deprecated]) +], []) + AC_ARG_VAR([ERLC_FLAGS], [general flags to prepend to ERLC_FLAGS]) AC_ARG_VAR([FLAGS], [general flags to prepend to LDFLAGS and CPPFLAGS])
