]> xenbits.xensource.com Git - libvirt.git/commitdiff
build: workaround broken SASL header (again)
authorFabiano Fidêncio <fidencio@redhat.com>
Wed, 30 Mar 2016 06:52:38 +0000 (08:52 +0200)
committerJán Tomko <jtomko@redhat.com>
Thu, 31 Mar 2016 15:36:49 +0000 (17:36 +0200)
Compilation for xdg-app failed due to a buggy SASL headers present on
the used runtime (org.gnome.Sdk 3.18).

In file included from rpc/virnetsaslcontext.h:24:0,
                 from rpc/virnetsaslcontext.c:25:
/usr/include/sasl/sasl.h:230:38: error: unknown type name 'size_t'
 typedef void *sasl_realloc_t(void *, size_t);
                                      ^
/usr/include/sasl/sasl.h:235:5: error: unknown type name 'sasl_realloc_t'
     sasl_realloc_t *,

Use the same workaround as commit 1be3dfd did.

Signed-off-by: Ján Tomko <jtomko@redhat.com>
src/rpc/virnetsaslcontext.h

index 54634d5f12ec0ad8649f1a257679a9df1a788e6e..edc082f3a78ec5a0f06c4311665557de67c1d9ad 100644 (file)
@@ -21,9 +21,9 @@
 #ifndef __VIR_NET_CLIENT_SASL_CONTEXT_H__
 # define __VIR_NET_CLIENT_SASL_CONTEXT_H__
 
+# include "internal.h"
 # include <sasl/sasl.h>
 
-# include "internal.h"
 # include "virobject.h"
 
 typedef struct _virNetSASLContext virNetSASLContext;