Skip to content

Commit

Permalink
Update to 3.4.0, add erlang.mk support, fix strict compilation warnin…
Browse files Browse the repository at this point in the history
…gs errors
  • Loading branch information
jbrisbin committed Oct 24, 2014
2 parents 73706d1 + 7a1cd0d commit a267a9f
Show file tree
Hide file tree
Showing 33 changed files with 2,205 additions and 610 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.DS_Store
ebin
deps
deps
.rebar
.erlang.*
24 changes: 24 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
PROJECT = amqp_client

DEPS = rabbit_common

ERLC_OPTS = +debug_info \
+compressed \
+report \
+warn_export_all \
+warn_export_vars \
+warn_shadow_vars \
+warn_unused_function \
+warn_deprecated_function \
+warn_obsolete_guard \
+warn_unused_import \
+nowarn_export_vars \
+warnings_as_errors


COMPILE_FIRST = amqp_gen_consumer \
amqp_gen_connection

dep_rabbit_common = git git://github.com/jbrisbin/rabbit_common.git rabbitmq-3.4.0

include erlang.mk
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This is a fork of the [official RabbitMQ/AMQP Erlang client](https://github.com/
It's meant to be included in your rebar projects in your rebar.config file:

{deps, [
{amqp_client, ".*", {git, "git://github.com/jbrisbin/amqp_client.git", {tag, "rabbitmq-2.8.2"}}}
{amqp_client, ".*", {git, "git://github.com/jbrisbin/amqp_client.git", {tag, "rabbitmq-3.4.0"}}}
]}.

The "master" branch of this port is a simple re-packaging of the rabbit_common AMQP client dependency.
Expand All @@ -16,7 +16,7 @@ To use the "community" branch in your project, which includes stricter compilati
to the version tag:

{deps, [
{amqp_client, ".*", {git, "git://github.com/jbrisbin/amqp_client.git", {tag, "rabbitmq-2.8.2-community"}}}
{amqp_client, ".*", {git, "git://github.com/jbrisbin/amqp_client.git", {tag, "rabbitmq-3.4.0-community"}}}
]}.

### License
Expand Down
Loading

0 comments on commit a267a9f

Please sign in to comment.