From 946e63a2764d72b4699689fc495d2ba0f9c8f119 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Tue, 6 Jan 2015 02:07:58 +0100 Subject: never show windows console. If ardour is launched from a terminal, stdout/stderr works since 9988f661f. Further, the debug-version comes packaged with gdb and a has a start-menu shortcut for it. There is no need to implicitly always show a console even for debug builds. --- gtk2_ardour/main.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gtk2_ardour/main.cc') diff --git a/gtk2_ardour/main.cc b/gtk2_ardour/main.cc index 7e7d3a0c35..26331027d6 100644 --- a/gtk2_ardour/main.cc +++ b/gtk2_ardour/main.cc @@ -148,7 +148,7 @@ sigpipe_handler (int /*signal*/) #endif -#if (!defined COMPILER_MSVC && defined PLATFORM_WINDOWS && defined NDEBUG) +#if (!defined COMPILER_MSVC && defined PLATFORM_WINDOWS) static bool IsAConsolePort (HANDLE handle) { DWORD mode; @@ -192,7 +192,7 @@ int main (int argc, char *argv[]) gtk_set_locale (); #endif -#if (!defined COMPILER_MSVC && defined PLATFORM_WINDOWS && defined NDEBUG) +#if (!defined COMPILER_MSVC && defined PLATFORM_WINDOWS) /* re-attach to the console so we can see 'printf()' output etc. * for MSVC see gtk2_ardour/msvc/winmain.cc */ @@ -310,7 +310,7 @@ int main (int argc, char *argv[]) ARDOUR::cleanup (); pthread_cancel_all (); -#if (!defined COMPILER_MSVC && defined PLATFORM_WINDOWS && defined NDEBUG) +#if (!defined COMPILER_MSVC && defined PLATFORM_WINDOWS) if (pStdOut) { fclose (pStdOut); } -- cgit v1.2.3