From: brain Date: Wed, 25 May 2005 18:11:52 +0000 (+0000) Subject: Fixed to preserve epoll/select/kqueue choices X-Git-Tag: v2.0.23~10176 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=c922299f3eb53fe9ec2213525745159ee81f6f3c;p=user%2Fhenk%2Fcode%2Finspircd.git Fixed to preserve epoll/select/kqueue choices git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1517 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/configure b/configure index 01683da91..919aee625 100755 --- a/configure +++ b/configure @@ -66,6 +66,8 @@ if ($arg eq "-update") { # We've Loaded the cache file and all our variables.. print "Updating Files..\n"; getosflags(); + $has_epoll = $config{HAS_EPOLL}; + $has_kqueue = $config{HAS_KQUEUE}; writefiles(); print "Complete.\n"; exit; @@ -149,6 +151,9 @@ if ($config{OSNAME} =~ /CYGWIN/) { $config{HAS_STRLCPY} = "true"; } +$config{HAS_EPOLL} = $has_epoll; +$config{HAS_KQUEUE} = $has_kqueue; + ################################################################################ # BEGIN INTERACTIVE PART # ################################################################################