diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-09-01 15:06:47 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-09-01 15:06:47 +0000 |
commit | 819147178db00008a215670992d0f532dd57f9e5 (patch) | |
tree | adb4695096f5107cf4b81d03a98d27db28f8d007 /win/configure.cpp | |
parent | 5c93325b53342095f7f7ba0339e4f3ea52229dfe (diff) |
Strip SUPPORT_IP6LINKS #define
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11572 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'win/configure.cpp')
-rw-r--r-- | win/configure.cpp | 8 |
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); |