X-Git-Url: https://www.tinc-vpn.org/git/browse?a=blobdiff_plain;f=configure.ac;fp=configure.ac;h=db7d1aa2ae6bc889a5188a0e58203709d5ed7c67;hb=96ce3c9e052b27c2b5f85320dff5f0cc52defa9a;hp=944e63a0a347b198943cc7314fa81c07d542a36a;hpb=bf7abd5a059d27dc544b435b67f7f1d5419d318b;p=tinc diff --git a/configure.ac b/configure.ac index 944e63a0..db7d1aa2 100644 --- a/configure.ac +++ b/configure.ac @@ -90,8 +90,12 @@ AC_ARG_ENABLE(uml, AC_ARG_ENABLE(vde, AS_HELP_STRING([--enable-vde], [enable support for Virtual Distributed Ethernet]), [ AS_IF([test "x$enable_vde" = "xyes"], - [ AC_CHECK_HEADERS(libvdeplug_dyn.h, [], [AC_MSG_ERROR([VDE plug header files not found.]); break]) - AC_CHECK_LIB(dl, dlopen, [LIBS="$LIBS -ldl"], [AC_MSG_ERROR([VDE plug depends on libdl.]); break]) + [ AC_CHECK_HEADERS(libvdeplug.h, + [AC_CHECK_LIB(vdeplug, vde_close, + [LIBS="$LIBS -lvdeplug"], + [AC_MSG_ERROR("VDE plug library files not found.")] + )], + [AC_MSG_ERROR([VDE plug header files not found.]); break]) AC_DEFINE(ENABLE_VDE, 1, [Support for VDE]) vde=true ],