summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2011-10-31 16:37:20 +0100
committerMartin Sustrik <sustrik@250bpm.com>2011-10-31 16:37:20 +0100
commit626099aa2a292178872843c55cc5226e6850f2ed (patch)
tree7a7f16ad190f9cf85d3e48c7da8b4f89a217b02c /configure.in
parentac7717b7b35f441fc3aeeb1528e63f147c00913a (diff)
VTCP transport removed
Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in13
1 files changed, 0 insertions, 13 deletions
diff --git a/configure.in b/configure.in
index b0ee7a1..86147ea 100644
--- a/configure.in
+++ b/configure.in
@@ -348,19 +348,6 @@ fi
AC_SUBST(pgm_basename)
-# VTCP extension
-libzmq_vtcp="no"
-
-AC_ARG_WITH([vtcp], [AS_HELP_STRING([--with-vtcp],
- [build libzmq with VTCP extension [default=no]])],
- [with_vtcp=$withval], [with_vtcp=no])
-
-if test "x$with_vtcp" != "xno"; then
- AC_DEFINE(ZMQ_HAVE_VTCP, 1, [Have VTCP extension])
- AC_CHECK_LIB(vtcp, vtcp_bind, ,
- [AC_MSG_ERROR([cannot link with -lvtcp, install libvtcp.])])
-fi
-
# Set -Wall, -Werror and -pedantic
AC_LANG_PUSH([C++])