diff options
Diffstat (limited to 'util')
-rw-r--r-- | util/fluxbox-update_configs.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/fluxbox-update_configs.cc b/util/fluxbox-update_configs.cc index fe1261c..a8052a2 100644 --- a/util/fluxbox-update_configs.cc +++ b/util/fluxbox-update_configs.cc | |||
@@ -651,11 +651,11 @@ int main(int argc, char **argv) { | |||
651 | resource_manager.save(rc_filename.c_str(), rc_filename.c_str()); | 651 | resource_manager.save(rc_filename.c_str(), rc_filename.c_str()); |
652 | save_all_files(); | 652 | save_all_files(); |
653 | 653 | ||
654 | #ifdef HAVE_SIGNAL_H | 654 | #if defined(HAVE_SIGNAL_H) && !defined(_WIN32) |
655 | // if we were given a fluxbox pid, send it a reconfigure signal | 655 | // if we were given a fluxbox pid, send it a reconfigure signal |
656 | if (fb_pid > 0) | 656 | if (fb_pid > 0) |
657 | kill(fb_pid, SIGUSR2); | 657 | kill(fb_pid, SIGUSR2); |
658 | #endif // HAVE_SIGNAL_H | 658 | #endif // defined(HAVE_SIGNAL_H) && !defined(_WIN32) |
659 | 659 | ||
660 | } | 660 | } |
661 | 661 | ||