summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 #
################################################################################