diff options
author | Michael Adam <obnox@samba.org> | 2009-01-28 17:40:24 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2009-01-29 10:24:58 +0100 |
commit | 70aa6445d6ff8162ad0b3fd110b6f811663e0dc3 (patch) | |
tree | 8c0e2c9e31805c10251f63f8286d09f46cf19975 /ctdb/include | |
parent | 4e12bbbf560f5322dc1992060eca85d807b6d423 (diff) | |
download | samba-70aa6445d6ff8162ad0b3fd110b6f811663e0dc3.tar.gz samba-70aa6445d6ff8162ad0b3fd110b6f811663e0dc3.tar.xz samba-70aa6445d6ff8162ad0b3fd110b6f811663e0dc3.zip |
Fix the build on AIX: sys/socket.h needs to be included before ctdb.h
(for struct sockaddr to be defined)
Thanks to William Jojo <w.jojo@hvcc.edu> for reporting.
Michael
(This used to be ctdb commit 7558bca1e99884c02747adb7cbea799d04ee24d5)
Diffstat (limited to 'ctdb/include')
-rw-r--r-- | ctdb/include/includes.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ctdb/include/includes.h b/ctdb/include/includes.h index b1f48b80db..744d117a1a 100644 --- a/ctdb/include/includes.h +++ b/ctdb/include/includes.h @@ -3,6 +3,7 @@ #include "replace.h" #include "talloc.h" #include "system/wait.h" +#include "system/network.h" #include "tdb.h" #include "idtree.h" #include "ctdb.h" |