Commit 64ce6ca7 authored by Luca Boccassi's avatar Luca Boccassi

Problem: build fails, vmci enabled by default

Solution: disable vmci by default
Fixes issue #1655
parent a556b500
......@@ -494,7 +494,7 @@ have_vmci_library="no"
AC_ARG_WITH([vmci], [AS_HELP_STRING([--with-vmci],
[build libzmq with VMCI transport [default=no]])],
[have_vmci_ext=$withval],
[have_vmci_ext=yes])
[have_vmci_ext=no])
if test "x$have_vmci_ext" != "xno"; then
AC_DEFINE(ZMQ_HAVE_VMCI, 1, [Have VMCI transport])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment