diff options
| author | Michael Tokarev | 2014-08-01 21:20:24 +0200 |
|---|---|---|
| committer | Michael Tokarev | 2014-08-08 22:06:32 +0200 |
| commit | bff6cb72961f1bd2c766efe85ff5850fd8d7e77d (patch) | |
| tree | 24e115f90ee27ff6e23310bee0858910c0c54df5 /configure | |
| parent | hw/timer/imx_*: fix TIMER_MAX clash with system symbol (diff) | |
| download | qemu-bff6cb72961f1bd2c766efe85ff5850fd8d7e77d.tar.gz qemu-bff6cb72961f1bd2c766efe85ff5850fd8d7e77d.tar.xz qemu-bff6cb72961f1bd2c766efe85ff5850fd8d7e77d.zip | |
l2tpv3 (configure): it is linux-specific
Some non-linux systems, for example a system with
FreeBSD kernel and glibc, may declare struct mmsghdr
(in glibc) but may not have linux-specific header
file linux/ip.h. The actual implementation in qemu
includes this linux-specific header file unconditionally,
so compilation fails if it is not present. Include
this header in the configure test too.
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'configure')
| -rwxr-xr-x | configure | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1723,6 +1723,7 @@ fi cat > $TMPC <<EOF #include <sys/socket.h> +#include <linux/ip.h> int main(void) { return sizeof(struct mmsghdr); } EOF if compile_prog "" "" ; then |
