summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-25 18:11:52 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-25 18:11:52 +0000
commitc922299f3eb53fe9ec2213525745159ee81f6f3c (patch)
tree65161ad2e7cca6a43069c3c7fcee51ba24a8388d
parent1164ae11b22509889203fbcbe114f67191deeed4 (diff)
Fixed to preserve epoll/select/kqueue choices
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1517 e03df62e-2008-0410-955e-edbf42e46eb7
-rwxr-xr-xconfigure5
1 files changed, 5 insertions, 0 deletions
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 #
################################################################################