Fix windows debug builds (SIGUSR1 is POSIX only)
This commit is contained in:
parent
b8b899d3d5
commit
2e2a4be3b2
@ -173,7 +173,7 @@ Click OK to exit %1."), PROGRAM_NAME, AudioEngine::instance()->current_backend_n
|
|||||||
return false; /* do not call again */
|
return false; /* do not call again */
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef NDEBUG
|
#if !(defined NDEBUG || defined PLATFORM_WINDOWS)
|
||||||
static void
|
static void
|
||||||
sigusr1_handler (int /* signal */)
|
sigusr1_handler (int /* signal */)
|
||||||
{
|
{
|
||||||
@ -320,16 +320,16 @@ int main (int argc, char *argv[])
|
|||||||
exit (EXIT_FAILURE);
|
exit (EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if !(defined NDEBUG || defined PLATFORM_WINDOWS)
|
||||||
{
|
{
|
||||||
#ifndef NDEBUG
|
|
||||||
const char * adf;
|
const char * adf;
|
||||||
if ((adf = g_getenv ("ARDOUR_DEBUG_FLAGS"))) {
|
if ((adf = g_getenv ("ARDOUR_DEBUG_FLAGS"))) {
|
||||||
if (!g_getenv ("ARDOUR_DEBUG_ON_SIGUSR1")) {
|
if (!g_getenv ("ARDOUR_DEBUG_ON_SIGUSR1")) {
|
||||||
PBD::parse_debug_options (adf);
|
PBD::parse_debug_options (adf);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif /* NDEBUG */
|
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
cout << PROGRAM_NAME
|
cout << PROGRAM_NAME
|
||||||
<< VERSIONSTRING
|
<< VERSIONSTRING
|
||||||
@ -417,7 +417,7 @@ int main (int argc, char *argv[])
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef NDEBUG
|
#if !(defined NDEBUG || defined PLATFORM_WINDOWS)
|
||||||
if (g_getenv ("ARDOUR_DEBUG_ON_SIGUSR1")) {
|
if (g_getenv ("ARDOUR_DEBUG_ON_SIGUSR1")) {
|
||||||
if (::signal (SIGUSR1, sigusr1_handler)) {
|
if (::signal (SIGUSR1, sigusr1_handler)) {
|
||||||
cerr << _("Cannot install SIGUSR1 error handler") << endl;
|
cerr << _("Cannot install SIGUSR1 error handler") << endl;
|
||||||
|
Loading…
Reference in New Issue
Block a user