Skip to content

Commit

Permalink
Problem: No tests for libzmq 4.2.0
Browse files Browse the repository at this point in the history
Solution: add travis job with libzmq 4.2.0
  • Loading branch information
sigiesec committed Apr 3, 2018
1 parent 63f81e4 commit 80dc604
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ env:
matrix:
# - BUILD_TYPE=cmake DRAFT=enabled
- BUILD_TYPE=cmake ZMQ_VERSION=4.2.5
- BUILD_TYPE=cmake ZMQ_VERSION=4.2.0

matrix:
include:
Expand Down
2 changes: 1 addition & 1 deletion libzmq-pkg-config/FindZeroMQ.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pkg_check_modules(PC_LIBZMQ QUIET libzmq)
set(ZeroMQ_VERSION ${PC_LIBZMQ_VERSION})
find_library(ZeroMQ_LIBRARY NAMES libzmq.so libzmq.dylib libzmq.dll
PATHS ${PC_LIBZMQ_LIBDIR} ${PC_LIBZMQ_LIBRARY_DIRS})
find_library(ZeroMQ_STATIC_LIBRARY NAMES libzmq.a libzmq.dll.a
find_library(ZeroMQ_STATIC_LIBRARY NAMES libzmq-static.a libzmq.a libzmq.dll.a
PATHS ${PC_LIBZMQ_LIBDIR} ${PC_LIBZMQ_LIBRARY_DIRS})

if(ZeroMQ_LIBRARY AND ZeroMQ_STATIC_LIBRARY)
Expand Down

0 comments on commit 80dc604

Please sign in to comment.