[libvirt] [PATCH] tests: avoid compile failure on linux kernels older than 2.6.19

Daniel P. Berrange berrange at redhat.com
Mon Oct 7 10:28:46 UTC 2013


On Mon, Oct 07, 2013 at 11:45:00AM +0200, Giuseppe Scrivano wrote:
> Signed-off-by: Giuseppe Scrivano <gscrivan at redhat.com>
> ---
>  tests/securityselinuxhelper.c | 8 +++++++-
>  1 file changed, 7 insertions(+), 1 deletion(-)
> 
> diff --git a/tests/securityselinuxhelper.c b/tests/securityselinuxhelper.c
> index 89cba3a..d996825 100644
> --- a/tests/securityselinuxhelper.c
> +++ b/tests/securityselinuxhelper.c
> @@ -24,7 +24,9 @@
>  
>  #include <dlfcn.h>
>  #include <errno.h>
> -#include <linux/magic.h>
> +#if HAVE_LINUX_MAGIC_H
> +# include <linux/magic.h>
> +#endif
>  #include <selinux/selinux.h>
>  #include <stdio.h>
>  #include <stdlib.h>
> @@ -33,6 +35,10 @@
>  #include <unistd.h>
>  #include <attr/xattr.h>
>  
> +#ifndef NFS_SUPER_MAGIC
> +# define NFS_SUPER_MAGIC 0x6969
> +#endif
> +
>  #include "virstring.h"
>  
>  static int (*realstatfs)(const char *path, struct statfs *buf);

ACK


Daniel
-- 
|: http://berrange.com      -o-    http://www.flickr.com/photos/dberrange/ :|
|: http://libvirt.org              -o-             http://virt-manager.org :|
|: http://autobuild.org       -o-         http://search.cpan.org/~danberr/ :|
|: http://entangle-photo.org       -o-       http://live.gnome.org/gtk-vnc :|




More information about the libvir-list mailing list