From 502135df9f0d839e75907260f5dcdab4052d995e Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Sun, 23 Sep 2012 13:39:01 +1000 Subject: lib/replace: Try to fix build on HP-UX for os2_delete test The issue is that this file is both used in an autoconf test, and later in a smbtorture test. Because os2_delete.c does not include replace.h, bool may not be defined. So, instead we shift the need for bool to a different header. (The readdir tests in repdir.m4 are not yet in the waf configure). Andrew Bartlett --- source4/torture/local/local.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/torture/local/local.c') diff --git a/source4/torture/local/local.c b/source4/torture/local/local.c index c0b3305462..d4e891116f 100644 --- a/source4/torture/local/local.c +++ b/source4/torture/local/local.c @@ -24,7 +24,7 @@ #include "torture/auth/proto.h" #include "../lib/crypto/test_proto.h" #include "lib/registry/tests/proto.h" -#include "lib/replace/replace-test.h" +#include "lib/replace/replace-testsuite.h" /* ignore me */ static struct torture_suite * (*suite_generators[]) (TALLOC_CTX *mem_ctx) = -- cgit