From ef9a8bf05328d290f82613037f5419f0d5e87eb5 Mon Sep 17 00:00:00 2001 From: Christophe Fergeau Date: Fri, 18 Oct 2013 15:51:20 +0200 Subject: Remove tunneling support It's depending on an unmaintained package (slirp), and I don't think anyone uses that code. It's not tested upstream nor in fedora, so let's remove it. --- configure.ac | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index b781d341..7e81329c 100644 --- a/configure.ac +++ b/configure.ac @@ -118,16 +118,7 @@ AM_CONDITIONAL(OS_UNIX, test "$os_win32" != "yes") AM_CONDITIONAL(OS_LINUX, test "$os_linux" = "yes") dnl ========================================================================= -dnl Chek optional features -AC_ARG_ENABLE(tunnel, -[ --enable-tunnel Enable network redirection],, -[enable_tunnel="no"]) -AS_IF([test x"$enable_tunnel" != "xno"], [enable_tunnel="yes"]) -AM_CONDITIONAL(SUPPORT_TUNNEL, test "x$enable_tunnel" != "xno") -if test "x$enable_tunnel" != "xno"; then - AC_DEFINE([USE_TUNNEL], [1], [Define if supporting tunnel proxying]) -fi - +dnl Check optional features AC_ARG_ENABLE(gui, [ --enable-gui Enable start dialog with CEGUI],, [enable_gui="no"]) @@ -221,14 +212,6 @@ if test "x$enable_gui" = "xyes" && test "x$enable_client" = "xyes" ; then ]) fi -if test "x$enable_tunnel" = "xyes"; then - PKG_CHECK_MODULES(SLIRP, slirp) - AC_SUBST(SLIRP_CFLAGS) - AC_SUBST(SLIRP_LIBS) - SPICE_REQUIRES+=" slirp" - AC_DEFINE([HAVE_SLIRP], [], [Define if we have slirp]) -fi - if test "x$enable_smartcard" = "xyes"; then PKG_CHECK_MODULES(CAC_CARD, libcacard >= 0.1.2) SMARTCARD_LIBS="$CAC_CARD_LIBS" @@ -535,8 +518,6 @@ echo " GUI: ${enable_gui} " ; fi ; echo "\ - Support tunneling: ${enable_tunnel} - Smartcard: ${enable_smartcard} SASL support: ${enable_sasl} -- cgit