diff options
author | Evgeny Khramtsov <xramtsov@gmail.com> | 2014-07-28 11:08:13 +0400 |
---|---|---|
committer | Evgeny Khramtsov <xramtsov@gmail.com> | 2014-07-28 11:08:13 +0400 |
commit | 7d93463d3195c95968e37f869592bcf5b145d7e0 (patch) | |
tree | bbe419453019bd2ae6cb675ee7c4d98fb2b07ba1 | |
parent | Merge pull request #265 from weiss/mention-starttls-required (diff) | |
parent | Remove "--enable-http" flag (diff) |
Merge pull request #266 from weiss/remove-http
Remove "--enable-http" flag
-rw-r--r-- | configure.ac | 15 | ||||
-rw-r--r-- | rebar.config.script | 3 | ||||
-rw-r--r-- | rel/reltool.config.script | 1 | ||||
-rw-r--r-- | vars.config.in | 1 |
4 files changed, 3 insertions, 17 deletions
diff --git a/configure.ac b/configure.ac index e7bb43b6d..df157541f 100644 --- a/configure.ac +++ b/configure.ac @@ -106,10 +106,10 @@ AC_ARG_ENABLE(mssql, esac],[db_type=generic]) AC_ARG_ENABLE(all, -[AC_HELP_STRING([--enable-all], [same as --enable-nif --enable-odbc --enable-mysql --enable-pgsql --enable-pam --enable-zlib --enable-riak --enable-json --enable-iconv --enable-debug --enable-http --enable-lager --enable-tools (useful for Dialyzer checks, default: no)])], +[AC_HELP_STRING([--enable-all], [same as --enable-nif --enable-odbc --enable-mysql --enable-pgsql --enable-pam --enable-zlib --enable-riak --enable-json --enable-iconv --enable-debug --enable-lager --enable-tools (useful for Dialyzer checks, default: no)])], [case "${enableval}" in - yes) nif=true odbc=true mysql=true pgsql=true pam=true zlib=true riak=true json=true iconv=true debug=true http=true lager=true tools=true ;; - no) nif=false odbc=false mysql=false pgsql=false pam=false zlib=false riak=false json=false iconv=false debug=false http=false lager=false tools=false ;; + yes) nif=true odbc=true mysql=true pgsql=true pam=true zlib=true riak=true json=true iconv=true debug=true lager=true tools=true ;; + no) nif=false odbc=false mysql=false pgsql=false pam=false zlib=false riak=false json=false iconv=false debug=false lager=false tools=false ;; *) AC_MSG_ERROR(bad value ${enableval} for --enable-all) ;; esac],[]) @@ -201,14 +201,6 @@ AC_ARG_ENABLE(debug, *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;; esac],[if test "x$debug" = "x"; then debug=true; fi]) -AC_ARG_ENABLE(http, -[AC_HELP_STRING([--enable-http], [build external HTTP libraries ('ibrowse' and 'lhttpc', default: no)])], -[case "${enableval}" in - yes) http=true ;; - no) http=false ;; - *) AC_MSG_ERROR(bad value ${enableval} for --enable-http) ;; -esac],[if test "x$http" = "x"; then http=false; fi]) - AC_ARG_ENABLE(lager, [AC_HELP_STRING([--enable-lager], [enable lager support (default: yes)])], [case "${enableval}" in @@ -250,7 +242,6 @@ AC_SUBST(riak) AC_SUBST(json) AC_SUBST(iconv) AC_SUBST(debug) -AC_SUBST(http) AC_SUBST(lager) AC_SUBST(tools) diff --git a/rebar.config.script b/rebar.config.script index 5fadc7639..e1186a037 100644 --- a/rebar.config.script +++ b/rebar.config.script @@ -97,9 +97,6 @@ CfgDeps = lists:flatmap( [{jiffy, ".*", {git, "git://github.com/davisp/jiffy"}}]; ({iconv, true}) -> [{p1_iconv, ".*", {git, "git://github.com/processone/eiconv"}}]; - ({http, true}) -> - [{ibrowse, ".*", {git, "git://github.com/cmullaparthi/ibrowse"}}, - {lhttpc, ".*", {git, "git://github.com/esl/lhttpc"}}]; ({lager, true}) -> [{lager, ".*", {git, "git://github.com/basho/lager"}}]; ({lager, false}) -> diff --git a/rel/reltool.config.script b/rel/reltool.config.script index ad647c74b..623410b10 100644 --- a/rel/reltool.config.script +++ b/rel/reltool.config.script @@ -38,7 +38,6 @@ DepConfiguredApps = lists:flatmap( ({stun, true}) -> [p1_stun]; ({json, true}) -> [jiffy]; ({iconv, true}) -> [p1_iconv]; - ({http, true}) -> [ibrowse, lhttpc]; ({lager, true}) -> [lager, goldrush]; ({lager, false}) -> [p1_logger]; (_) -> [] diff --git a/vars.config.in b/vars.config.in index 69b960099..dce8cd204 100644 --- a/vars.config.in +++ b/vars.config.in @@ -26,7 +26,6 @@ {zlib, @zlib@}. {riak, @riak@}. {json, @json@}. -{http, @http@}. {lager, @lager@}. {iconv, @iconv@}. |