Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix compilation in OSX #1423

Merged
merged 1 commit into from
Feb 7, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ vars.generated
vars/dev*_vars.config
*.deb
*.rpm
*.crashdump

.ropeproject
*~
Expand Down
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ services:
- memcached

before_install:
- sudo apt-get -y install libsnappy-dev
- mysql -e "CREATE DATABASE vmq_test_database;" -uroot
- mysql -e "CREATE USER 'vmq_test_user' IDENTIFIED BY 'vmq_test_password';" -uroot
- mysql -e "GRANT ALL PRIVILEGES ON * . * TO 'vmq_test_user';" -uroot
Expand Down
2 changes: 1 addition & 1 deletion apps/vmq_generic_msg_store/rebar.config
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{erl_opts, [debug_info, {parse_transform, lager_transform}]}.
{deps, [
lager,
{eleveldb, {git, "git://github.com/vernemq/eleveldb.git", "develop"}},
{eleveldb, {git, "git://github.com/vernemq/eleveldb.git", {branch, "develop"}}},
{sext, "1.5.0"}
]}.

Expand Down
2 changes: 1 addition & 1 deletion apps/vmq_swc/rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
lager,
{sext, "1.5.0"},
{swc, {git, "git://github.com/vernemq/ServerWideClocks.git", "master"}},
{eleveldb, {git, "git://github.com/vernemq/eleveldb.git", "develop"}},
{eleveldb, {git, "git://github.com/vernemq/eleveldb.git", {branch, "develop"}}},
riak_dt
]}.

Expand Down
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- Fix bug where vmq_metrics crashes because external metric providers haven't
started yet.
- Fix bug in vmq_swc where a cluster leave didn't properly cleanup the node clock.
- Fix compilation on OSX Mojave and Catalina. Requires running `brew install openssl snappy`.

## VerneMQ 1.10.0

Expand Down
2 changes: 1 addition & 1 deletion rebar.lock
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
1},
{<<"eleveldb">>,
{git,"git://github.com/vernemq/eleveldb.git",
{ref,"751961c905764ef947330773d6678cac5991d98f"}},
{ref,"06fefb8102b7fd344c3c56810dee8a2f2c9691d7"}},
0},
{<<"emysql">>,
{git,"git://github.com/djustinek/Emysql.git",
Expand Down