]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - configure
Fix weird typemask logic in the connect class reader.
[user/henk/code/inspircd.git] / configure
index 10c75ce35196b556915425de465e7f27aa057fc1..63256f87ad54d95935bdf4410b5a5170ba78b2ce 100755 (executable)
--- a/configure
+++ b/configure
@@ -299,6 +299,29 @@ and crashes. Please consider using a different OS like FreeBSD/NetBSD instead.
 EOW
 }
 
+# Warn about Perl versions that will not be supported in the future.
+if ($^V lt 'v5.26.0') {
+       print_warning <<"EOW";
+You are building InspIRCd with Perl $^V. This is very old and will
+not be supported by the next major version of InspIRCd. Please consider updating
+to Perl v5.26 or newer.
+EOW
+}
+
+# Warn about compiler versions that will not be supported in the future.
+my %future_compilers = (
+       AppleClang => version->parse('10.0'),
+       Clang      => version->parse('5.0'),
+       GCC        => version->parse('7.0'),
+);
+if (exists $future_compilers{$compiler{NAME}} && $compiler{VERSION} lt $future_compilers{$compiler{NAME}}) {
+       print_warning <<"EOW";
+You are building InspIRCd with $compiler{NAME} v$compiler{VERSION}. This is very old and
+will not be supported by the next major version of InspIRCd. Please consider
+updating to $compiler{NAME} v$future_compilers{$compiler{NAME}} or newer.
+EOW
+}
+
 # Check that the user actually wants this version.
 if (defined $version{REAL_LABEL}) {
        print_warning <<'EOW';