From dffcb71cb51511994ce179472413060c023f2da5 Mon Sep 17 00:00:00 2001 From: Mark McLoughlin Date: Thu, 22 Oct 2009 17:49:11 +0100 Subject: [PATCH] build: add CONFIG_LINUX So I can add a tap-linux.c and use CONFIG_LINUX to pull it in in Makefile Signed-off-by: Mark McLoughlin Signed-off-by: Anthony Liguori --- configure | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure b/configure index 6b4faf6e76..b9fc32bee2 100755 --- a/configure +++ b/configure @@ -1897,6 +1897,10 @@ else echo "CONFIG_POSIX=y" >> $config_host_mak fi +if test "$linux" = "yes" ; then + echo "CONFIG_LINUX=y" >> $config_host_mak +fi + if test "$darwin" = "yes" ; then echo "CONFIG_DARWIN=y" >> $config_host_mak fi