diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2014-09-28 18:26:30 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-09-28 23:21:34 +0200 |
commit | ebec4b3835f3cd58cab0cbe0213877c4932280c5 (patch) | |
tree | 1b7d1fb9c53154093dc0bbbb6de0bd48a8c0c08e | |
parent | 8ac41fa467ca28638e594b0f47be19621e015eba (diff) | |
download | buildroot-ebec4b3835f3cd58cab0cbe0213877c4932280c5.tar.gz buildroot-ebec4b3835f3cd58cab0cbe0213877c4932280c5.zip |
package/vde2: does not build on static only, needs dlopen()
Fixes:
http://autobuild.buildroot.net/results/f9d/f9d23455a138e2214546922486c03c9d3c35b04a/
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/vde2/Config.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/package/vde2/Config.in b/package/vde2/Config.in index 2bbd822c22..18ff2e4bc8 100644 --- a/package/vde2/Config.in +++ b/package/vde2/Config.in @@ -1,9 +1,14 @@ config BR2_PACKAGE_VDE2 bool "vde2" depends on BR2_USE_MMU # fork() + depends on !BR2_PREFER_STATIC_LIB # dlopen() help VDE is an ethernet compliant virtual network that can be spawned over a set of physical computers over the Internet. VDE is part of the virtualsquare project. http://vde.sourceforge.net/ + +comment "vde2 needs a toolchain w/ dynamic library" + depends on BR2_USE_MMU + depends on BR2_PREFER_STATIC_LIB |