Skip to content

Commit

Permalink
Set libzmq ABI version to 3
Browse files Browse the repository at this point in the history
libzmq master (3.1) is not ABI compatible with libzmq 2.1.x or 3.0 (removed
functionality), hence the ABI version needs to be set to 3.

Signed-off-by: Martin Lucina <martin@lucina.net>
  • Loading branch information
mato authored and sustrik committed Nov 9, 2011
1 parent c79abee commit 2752490
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions configure.in
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -25,11 +25,13 @@ AC_SUBST(PACKAGE_VERSION)
# #
# Changes: # Changes:
# #
# ZeroMQ versions prior to 2.1.0 use 0.0.0 ("unstable") # ZeroMQ versions prior to 2.1.0 use 0:0:0 (undefined)
# ZeroMQ version 2.1.0: 1:0:0 # ZeroMQ versions 2.1.x: 1:0:0 (ABI version 1)
# ZeroMQ version 3.0: 2:0:0 (ABI version 2)
# ZeroMQ version 3.1: 3:0:0 (ABI version 3)
# #
# libzmq -version-info current:revision:age # libzmq -version-info current:revision:age
LTVER="1:0:0" LTVER="3:0:0"
AC_SUBST(LTVER) AC_SUBST(LTVER)


# Take a copy of original flags # Take a copy of original flags
Expand Down

0 comments on commit 2752490

Please sign in to comment.