Commit db34f0b32f8d9ab12fe5899f5ba684b8eb1e656e

Authored by blueswir1
1 parent b0fb43d8

Fix iovec probe on OpenBSD

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6297 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 2 additions and 0 deletions
configure
... ... @@ -1000,7 +1000,9 @@ fi
1000 1000 ##########################################
1001 1001 # iovec probe
1002 1002 cat > $TMPC <<EOF
  1003 +#include <sys/types.h>
1003 1004 #include <sys/uio.h>
  1005 +#include <unistd.h>
1004 1006 int main(void) { struct iovec iov; return 0; }
1005 1007 EOF
1006 1008 iovec=no
... ...