X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=configure.ac;h=cf0591d4d3adbdc7f569b6afb9b362d9198fc544;hb=c8419d45c8ca6d0592a5a47399988908fd550d3f;hp=f6f1735dd3f1135091f006e5f24ea0ed59db2995;hpb=6abec8f18473b8f373fb48a05265c0c5df881ff5;p=libguestfs.git diff --git a/configure.ac b/configure.ac index f6f1735..cf0591d 100644 --- a/configure.ac +++ b/configure.ac @@ -138,6 +138,17 @@ AC_ARG_WITH([drive-if], [with_drive_if=ide]) AC_DEFINE_UNQUOTED([DRIVE_IF],["$with_drive_if"],[Default drive interface.]) +dnl Set interface used by the network. Normally you should +dnl leave this at the default (virtio) but you can use the +dnl alternative (ne2k_pci) because of bugs in virtio networking +dnl eg. https://bugzilla.redhat.com/show_bug.cgi?id=516022 +AC_ARG_WITH([net-if], + [AS_HELP_STRING([--with-net-if], + [set default net driver (virtio|ne2k_pci) @<:@default=virtio@:>@])], + [], + [with_net_if=virtio]) +AC_DEFINE_UNQUOTED([NET_IF],["$with_net_if"],[Default network interface.]) + dnl Check for febootstrap etc. AC_CHECK_PROG([FEBOOTSTRAP], [febootstrap],[febootstrap],[no])