From 9b4a2a939b306ec03f6b99cbd9c8a6defe761b4a Mon Sep 17 00:00:00 2001 From: ChrisTX Date: Fri, 5 Oct 2012 13:14:53 +0200 Subject: Windows: Fix broken build Resolves a mistake made in c2f7fc047c2e5bbb899c820590ce07fee593b28f --- win/configure.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'win/configure.cpp') diff --git a/win/configure.cpp b/win/configure.cpp index 3a2e684ef..f2917d1af 100644 --- a/win/configure.cpp +++ b/win/configure.cpp @@ -302,6 +302,7 @@ void Run() string config_path = get_string_option("In what directory are the configuration files?", "conf"); string mod_path = get_string_option("In what directory are the modules to be compiled to?", "modules"); string data_path = get_string_option("In what directory is the variable data to be placed in?", "data"); + string log_path = get_string_option("In what directory is the logs to be placed in?", "logs"); string bin_dir = get_string_option("In what directory is the IRCd binary to be placed?", "."); printf_c("\n\033[1;32mPre-build configuration is complete!\n\n"); sc(TNORMAL); @@ -313,6 +314,7 @@ void Run() printf_c("\033[0mConfig path:\033[1;32m %s\n", config_path.c_str()); printf_c("\033[0mModule path:\033[1;32m %s\n", mod_path.c_str()); printf_c("\033[0mData path:\033[1;32m %s\n", data_path.c_str()); + printf_c("\033[0mLog path:\033[1;32m %s\n", log_path.c_str()); printf_c("\033[0mSocket Engine:\033[1;32m %s\n", "select"); printf("\n"); sc(TNORMAL); @@ -325,6 +327,7 @@ void Run() // escape the pathes escape_string(data_path); + escape_string(log_path); escape_string(config_path); escape_string(mod_path); @@ -337,6 +340,7 @@ void Run() fprintf(f, "#define CONFIG_PATH \"%s\"\n", config_path.c_str()); fprintf(f, "#define MOD_PATH \"%s\"\n", mod_path.c_str()); fprintf(f, "#define DATA_PATH \"%s\"\n", data_path.c_str()); + fprintf(f, "#define LOG_PATH \"%s\"\n", log_path.c_str()); fprintf(f, "#define SOMAXCONN_S \"128\"\n"); fprintf(f, "#define MAXBUF 514\n"); -- cgit v1.2.3