1. 17 Jun, 2019 1 commit
  2. 29 May, 2019 1 commit
  3. 19 Nov, 2018 1 commit
    • Max Kellermann's avatar
      check.h: remove obsolete header · ce49d99c
      Max Kellermann authored
      Since we switched from autotools to Meson in commit
      94592c14, we don't need to include
      `config.h` early to properly enable large file support.  Meson passes
      the required macros on the compiler command line instead of defining
      them in `config.h`.
      
      This means we can include `config.h` at any time, whenever we want to
      check its macros, and there are no ordering constraints.
      ce49d99c
  4. 31 Oct, 2018 1 commit
  5. 20 Aug, 2018 1 commit
  6. 29 Jan, 2018 1 commit
  7. 12 Dec, 2017 1 commit
  8. 03 Jan, 2017 1 commit
  9. 05 Mar, 2016 1 commit
  10. 26 Feb, 2016 1 commit
  11. 28 Feb, 2015 1 commit
  12. 01 Jan, 2015 1 commit
  13. 04 Dec, 2014 3 commits
  14. 02 Aug, 2014 1 commit
  15. 24 Jan, 2014 1 commit
  16. 13 Jan, 2014 1 commit
  17. 30 Oct, 2013 1 commit
  18. 19 Oct, 2013 1 commit
  19. 15 Oct, 2013 1 commit
  20. 05 Sep, 2013 1 commit
  21. 04 Aug, 2013 1 commit
  22. 13 Jan, 2013 1 commit
    • Denis Krjuchkov's avatar
      Win32Main.cxx: more clean shutdown · abb0fcb2
      Denis Krjuchkov authored
      This change fixes two issues:
      
      1) console_handler is called from a separate thread.
         Thread-safe primitive is required for correct operation.
      
      2) If console_handler returns TRUE our process is immediately terminated.
         We use Sleep() to give main thread an opportunity to shutdown correctly.
      abb0fcb2
  23. 09 Jan, 2013 2 commits
  24. 27 Sep, 2012 1 commit
  25. 13 Oct, 2011 1 commit
    • Max Kellermann's avatar
      configure.ac: define WINVER · c30c46cd
      Max Kellermann authored
      Ensure that WINVER is defined early enough, so other system headers
      won't fall back to their default value.  Specifically, this solves a
      build failure (-Werror) with mingw-w64 ("WINVER redefined").
      c30c46cd
  26. 09 Oct, 2011 1 commit
  27. 29 Jan, 2011 1 commit
  28. 28 Sep, 2010 1 commit
  29. 23 Sep, 2010 1 commit
    • Denis Krjuchkov's avatar
      main: Add Windows Service support · e8ebb1af
      Denis Krjuchkov authored
      I've added PIPE_EVENT_SHUTDOWN because calling g_main_loop_quit() do not work when called from another thread.
      Main thread was sleeping in g_poll() so I needed some way to wake it up.
      
      By some strange reason call close(event_pipe[0]) in event_pipe_deinit() hangs.
      In current implementation that code never reached so that was not a problem :-)
      I've added a conditional to leave event_pipe[0] open on Win32.
      e8ebb1af