diff options
author | Mark McLoughlin | 2009-10-22 18:49:11 +0200 |
---|---|---|
committer | Anthony Liguori | 2009-10-30 14:39:28 +0100 |
commit | dffcb71cb51511994ce179472413060c023f2da5 (patch) | |
tree | 38fed887878c8e8bbe951af85560bdbb9357d08a /configure | |
parent | net: move AIX code into net/tap-aix.c (diff) | |
download | qemu-dffcb71cb51511994ce179472413060c023f2da5.tar.gz qemu-dffcb71cb51511994ce179472413060c023f2da5.tar.xz qemu-dffcb71cb51511994ce179472413060c023f2da5.zip |
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 <markmc@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 |