summaryrefslogtreecommitdiff
path: root/travis.sh
diff options
context:
space:
mode:
authorAlan Antonuk <alan.antonuk@gmail.com>2015-10-15 23:04:13 -0700
committerAlan Antonuk <alan.antonuk@gmail.com>2015-10-15 23:20:31 -0700
commit48311c88684724a23740988828e0052d39389138 (patch)
tree7730b6b7c5ab533e175aecdd2efe42a0ce9fd159 /travis.sh
parent17410d968b890d1545b84debf0f83059f2aabdeb (diff)
downloadrabbitmq-c-48311c88684724a23740988828e0052d39389138.tar.gz
CI: install libpopt library in osx travis build.
Fixes #295
Diffstat (limited to 'travis.sh')
-rwxr-xr-xtravis.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/travis.sh b/travis.sh
index 7fc8453..1096962 100755
--- a/travis.sh
+++ b/travis.sh
@@ -38,4 +38,11 @@ fi
set -e # exit on error.
set -x # echo commands.
+case $TRAVIS_OS_NAME in
+osx)
+ brew update -quiet
+ brew install popt
+ ;;
+esac
+
eval "build_$1"