in ...lib/util/tevent_unix.c I had to reverse the oder of includes to make it compile, it had conflicts otherwise. Patch: diff -u ./lib/util/tevent_unix.c.orig ./lib/util/tevent_unix.c --- ./lib/util/tevent_unix.c.orig 2010-05-17 06:51:23.000000000 -0500 +++ ./lib/util/tevent_unix.c 2010-05-27 05:14:34.000000000 -0500 @@ -21,8 +21,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "tevent_unix.h" #include "../replace/replace.h" +#include "tevent_unix.h" bool tevent_req_is_unix_error(struct tevent_req *req, int *perrno) { Bye, Jojo
Of course I meant 'order' rather than 'oder' ...
fixed in master and soon on 3.6. Just for completeness: can you tell which exact error you got?
I don't remember, some macro being redefined I think? And when I tried again today, there was no error anymore?! Maybe a change between 3.5.3 (where I first found that problem) and 3.5.5 (which I'm using now) is responsible for the error to disappear?
okay, never mind, thanks for taking care!
.