X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=configure;h=fb4d5d842abd35b0579696c057c696130f502fc5;hb=988784816b1a21b20da99a20c8ca02de793000fd;hp=06e1952e812f20eda4f10d480fffd8e24d719922;hpb=43ea75c0b3b64f1ebde2c7048a64d1f5bb3242fe;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/configure b/configure index 06e1952e8..fb4d5d842 100755 --- a/configure +++ b/configure @@ -531,9 +531,6 @@ else print "no ($config{OSNAME})\n"; } -print "Checking for upgrades to extra and third party modules... "; -system "./modulemanager upgrade"; - ################################################################################ # BEGIN INTERACTIVE PART # ################################################################################ @@ -669,6 +666,7 @@ should NOT be used. You should probably specify a newer compiler.\n\n"; } $config{USE_SSL} = "n"; + $config{MODUPDATE} = 'n'; if ($config{HAS_GNUTLS} eq "y" || $config{HAS_OPENSSL} eq "y") { @@ -702,6 +700,13 @@ should NOT be used. You should probably specify a newer compiler.\n\n"; print "\nCould not detect OpenSSL or GnuTLS. Make sure pkg-config is installed if\n"; print "you intend to use OpenSSL, or that GnuTLS is in your path if you intend\nto use GnuTLS.\n\n"; } + + yesno('MODUPDATE',"Would you like to check for updates to third-party modules?"); + print "\n"; + if ($config{MODUPDATE} eq "y") { + print "Checking for upgrades to extra and third party modules... "; + system "./modulemanager upgrade"; + } } dumphash();