From 868bfc83fa661885dde63a00fd8ded03d034f4a4 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Sat, 3 Nov 2018 06:20:27 -0700 Subject: [PATCH] configure: Undef IRCD_USE_AIO when AIO is disabled. --- configure.ac | 2 -- 1 file changed, 2 deletions(-) diff --git a/configure.ac b/configure.ac index 68c174482..3f814fee7 100644 --- a/configure.ac +++ b/configure.ac @@ -720,8 +720,6 @@ AM_COND_IF(LINUX, if test "$aio" = "yes"; then IRCD_DEFINE(USE_AIO, [1], [Linux AIO is supported and will be used]) -else - IRCD_DEFINE(USE_AIO, [0], [Define to 1 if you want AIO support (linux only)]) fi AM_CONDITIONAL([AIO], [[[[ $aio = yes ]]]])