chiark / gitweb /
work around busted capability.h
authorKay Sievers <kay.sievers@vrfy.org>
Fri, 3 Sep 2010 10:26:30 +0000 (12:26 +0200)
committerKay Sievers <kay.sievers@vrfy.org>
Fri, 3 Sep 2010 10:26:30 +0000 (12:26 +0200)
It contains things like:
  #ifndef _LINUX_TYPES_H
  #define _LINUX_TYPES_H
  #include <stdint.h>
  typedef uint32_t __u32;
  typedef __u32 __le32;
  ...

which result in:
  /usr/include/asm-generic/int-ll64.h:30:42: error: conflicting types for ‘__u64’
  /usr/include/sys/capability.h:39:18: note: previous declaration of ‘__u64’ was here
  make[1]: *** [src/libsystemd_core_la-unit.lo] Error 1
  make[1]: Leaving directory `/home/kay/work/src/systemd'
  make: *** [all] Error 2

So, include linux/types.h to get around that.

src/execute.h

index 31cce5d7d289bf401158b2e5a1b5387ac891e4e0..b612145027e1c2c69c771aa390fb54ac2d36316b 100644 (file)
@@ -26,6 +26,7 @@ typedef struct ExecStatus ExecStatus;
 typedef struct ExecCommand ExecCommand;
 typedef struct ExecContext ExecContext;
 
 typedef struct ExecCommand ExecCommand;
 typedef struct ExecContext ExecContext;
 
+#include <linux/types.h>
 #include <sys/time.h>
 #include <sys/resource.h>
 #include <sys/capability.h>
 #include <sys/time.h>
 #include <sys/resource.h>
 #include <sys/capability.h>