summaryrefslogtreecommitdiff
path: root/win/configure.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'win/configure.cpp')
-rw-r--r--win/configure.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/win/configure.cpp b/win/configure.cpp
index 56b396bc2..b6f009fda 100644
--- a/win/configure.cpp
+++ b/win/configure.cpp
@@ -190,7 +190,6 @@ void Banner()
void Run()
{
bool use_iocp = false;
- bool support_ip6links = true;
bool use_openssl = false;
bool ipv6 = true;
char mod_path[MAX_PATH];
@@ -242,11 +241,6 @@ void Run()
ipv6 = get_bool_option("Do you want to enable IPv6?", false);
- if (!ipv6)
- support_ip6links = get_bool_option("\nYou have chosen to build an \033[1;32mIPV4-only\033[0m server.\nWould you like to enable support for linking to IPV6-enabled InspIRCd servers?\nIf you are using a recent operating system and are unsure, answer yes.\nIf you answer 'no' here, your InspIRCd server will be unable\nto parse IPV6 addresses (e.g. for CIDR bans)", true);
- else
- support_ip6links = true;
-
printf_c("\033[1mAll paths are relative to the binary directory.\033[0m\n");
get_string_option("In what directory do you wish to install the InspIRCd base?", "..", base_path);
get_string_option("In what directory are the configuration files?", "../conf", config_file);
@@ -339,8 +333,6 @@ void Run()
fprintf(f, "#define LIBRARYDIR \"%s\"\n", library_dir);
fprintf(f, "#define VERSION \"%s\"\n", version);
fprintf(f, "#define REVISION \"%s\"\n", revision_text);
- if(support_ip6links)
- fprintf(f, "#define SUPPORT_IP6LINKS 1\n");
OSVERSIONINFO vi;
vi.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);