From 3695657ae53dbf4a9ce97c5fd73f54881fcedd4f Mon Sep 17 00:00:00 2001 From: danieldg Date: Mon, 23 Mar 2009 23:26:44 +0000 Subject: [PATCH] Fix configure check for eventfd, HAS_EVENTFD is true/false not 1/0 git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11257 e03df62e-2008-0410-955e-edbf42e46eb7 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 0a7b6c039..7d16af9a3 100755 --- a/configure +++ b/configure @@ -1183,7 +1183,7 @@ print FILEHANDLE "#define MAXBUF " . ($config{MAXBUF}+2) . "\n"; if ($config{SUPPORT_IP6LINKS} =~ /y/i) { print FILEHANDLE "#define SUPPORT_IP6LINKS\n"; } - if ($config{HAS_EVENTFD}) { + if ($config{HAS_EVENTFD} eq 'true') { print FILEHANDLE "#define HAS_EVENTFD\n"; } my $use_hiperf = 0; -- 2.39.5