all repos — fluxbox @ 5cb7326d22e998fbd944a5d71217b61f0e991057

custom fork of the fluxbox windowmanager

fluxbox-update_configs.cc: Fix on windows - no kill or sigusr2
Ryan Pavlik rpavlik@iastate.edu
commit

5cb7326d22e998fbd944a5d71217b61f0e991057

parent

3ca61475fb14e8c082a9d277f0e433d9cb4af9a0

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M util/fluxbox-update_configs.ccutil/fluxbox-update_configs.cc

@@ -651,11 +651,11 @@ config_version = new_version;

resource_manager.save(rc_filename.c_str(), rc_filename.c_str()); save_all_files(); -#ifdef HAVE_SIGNAL_H +#if defined(HAVE_SIGNAL_H) && !defined(_WIN32) // if we were given a fluxbox pid, send it a reconfigure signal if (fb_pid > 0) kill(fb_pid, SIGUSR2); -#endif // HAVE_SIGNAL_H +#endif // defined(HAVE_SIGNAL_H) && !defined(_WIN32) }