summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-01-20 21:41:29 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-01-20 21:41:29 +0000
commit5784c4396975b75809613b9cddb93dafc22a5517 (patch)
treee82d855a01f3f3e62349315141450debd2f0e126 /configure
parentbcdacaac9b1c345acb0b93039c34d3ab29a278a4 (diff)
Fixes to make ./configure prompt for libs if all else fails (discussed earlier with w00t).
The values prompted for are cached, so if you specify them then ./configure -update wont prompt again for them git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6408 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure b/configure
index 435860405..fdfcb5e7a 100755
--- a/configure
+++ b/configure
@@ -309,6 +309,7 @@ sub update
$has_epoll = $config{HAS_EPOLL};
$has_kqueue = $config{HAS_KQUEUE};
writefiles(1);
+ makecache();
print "Complete.\n";
exit;
}
@@ -331,6 +332,7 @@ sub modupdate
$has_epoll = $config{HAS_EPOLL};
$has_kqueue = $config{HAS_KQUEUE};
writefiles(0);
+ makecache();
print "Complete.\n";
exit;
}
@@ -710,8 +712,8 @@ if (($config{USE_GNUTLS} eq "n") && ($config{USE_OPENSSL} eq "n")) {
}
getosflags();
-makecache();
writefiles(1);
+makecache();
print "\n\n";
print "To build your server with these settings, please type '\033[1;32m$config{MAKEPROG}\033[0m' now.\n";