summaryrefslogtreecommitdiff
path: root/src/init.cpp
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2024-02-25 23:56:46 +0000
committerSadie Powell <sadie@witchery.services>2024-02-25 23:56:46 +0000
commitcabaa079dfb1e5a65b770914676dd4b2f0f16b10 (patch)
treef951ef2dbc4d7620294a8bd3940aa764a9e10e9a /src/init.cpp
parent273e7f249c60a38f043d7b495e513f0d63de7e64 (diff)
Kill checks for obsolete versions of Windows.
Because of the required system functionality Anope will not build or run on these systems anyway.
Diffstat (limited to 'src/init.cpp')
-rw-r--r--src/init.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/init.cpp b/src/init.cpp
index d3d1df56f..aa6ff1336 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -418,11 +418,6 @@ bool Anope::Init(int ac, char **av)
Log(LOG_TERMINAL) << "Anope " << Anope::Version() << ", " << Anope::VersionBuildString();
#ifdef _WIN32
- if (!SupportedWindowsVersion())
- throw CoreException(GetWindowsVersion() + " is not a supported version of Windows");
-#endif
-
-#ifdef _WIN32
Log(LOG_TERMINAL) << "Using configuration file " << Anope::ConfigDir << "\\" << ServicesConf.GetName();
#else
Log(LOG_TERMINAL) << "Using configuration file " << Anope::ConfigDir << "/" << ServicesConf.GetName();