From d2f6d0ba1e362522438d78374715485daae10919 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 6 Jun 2012 09:23:22 +1000 Subject: build: Rationalise AIO support in configure, ensure on by default With this change, the define to check for AIO is HAVE_AIO, consistant with other subsystems. It is now also on by default in the autoconf build, as it has been for waf. Andrew Bartlett --- source3/smbd/aio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/smbd/aio.c') diff --git a/source3/smbd/aio.c b/source3/smbd/aio.c index aa8aee00fb..131094de36 100644 --- a/source3/smbd/aio.c +++ b/source3/smbd/aio.c @@ -23,7 +23,7 @@ #include "smbd/globals.h" #include "../lib/util/tevent_ntstatus.h" -#if defined(WITH_AIO) +#if defined(HAVE_AIO) /* The signal we'll use to signify aio done. */ #ifndef RT_SIGNAL_AIO -- cgit