]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
build: virrandommock.c not needed on mingw
authorEric Blake <eblake@redhat.com>
Mon, 11 Jul 2016 22:43:57 +0000 (16:43 -0600)
committerEric Blake <eblake@redhat.com>
Tue, 12 Jul 2016 14:51:15 +0000 (08:51 -0600)
We can't mock tests on Mingw, which lacks dlopen() and friends;
follow the paradigms used in other mock files of conditionally
compiling nothing when not building for Linux.

Signed-off-by: Eric Blake <eblake@redhat.com>
tests/virrandommock.c

index 1f2434e248e66212fe838b2d91aaf2ee67e86afa..a69712a2cb9bd29837fc3b1127375f3dddbb27f0 100644 (file)
 
 #include <config.h>
 
-#include "internal.h"
-#include "virrandom.h"
-#include "virmock.h"
+#ifndef WIN32
 
-#define VIR_FROM_THIS VIR_FROM_NONE
+# include "internal.h"
+# include "virrandom.h"
+# include "virmock.h"
+
+# define VIR_FROM_THIS VIR_FROM_NONE
 
 int
 virRandomBytes(unsigned char *buf,
@@ -39,9 +41,9 @@ virRandomBytes(unsigned char *buf,
 }
 
 
-#ifdef WITH_GNUTLS
-# include <stdio.h>
-# include <gnutls/gnutls.h>
+# ifdef WITH_GNUTLS
+#  include <stdio.h>
+#  include <gnutls/gnutls.h>
 
 static int (*real_gnutls_dh_params_generate2)(gnutls_dh_params_t dparams,
                                               unsigned int bits);
@@ -76,4 +78,7 @@ gnutls_dh_params_generate2(gnutls_dh_params_t dparams,
 
     return gnutls_dh_params_cpy(dparams, params_cache);
 }
+# endif
+#else /* WIN32 */
+/* Can't mock on WIN32 */
 #endif