mirror of
https://github.com/tmate-io/tmate.git
synced 2026-01-23 02:24:06 +00:00
Merge 2d79ff67f7 into ac919516f4
This commit is contained in:
commit
ba2e703f11
1 changed files with 13 additions and 1 deletions
14
configure.ac
14
configure.ac
|
|
@ -207,7 +207,19 @@ PKG_CHECK_MODULES(
|
|||
LIBS="$MSGPACK_LIBS $LIBS"
|
||||
found_msgpack=yes
|
||||
],
|
||||
found_msgpack=no
|
||||
[
|
||||
# msgpack.pc was renamed to msgpack-c.pc in 6.0.0.
|
||||
PKG_CHECK_MODULES(
|
||||
MSGPACKC,
|
||||
msgpack-c >= 1.1.0,
|
||||
[
|
||||
CPPFLAGS="$MSGPACKC_CFLAGS $CPPFLAGS"
|
||||
LIBS="$MSGPACKC_LIBS $LIBS"
|
||||
found_msgpack=yes
|
||||
],
|
||||
found_msgpack=no
|
||||
)
|
||||
]
|
||||
)
|
||||
if test "x$found_msgpack" = xno; then
|
||||
AC_MSG_ERROR("msgpack >= 1.1.0 not found")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue