README-Interix.txt 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. ngIRCd - Next Generation IRC Server
  2. http://ngircd.barton.de/
  3. (c)2001-2012 Alexander Barton and Contributors.
  4. ngIRCd is free software and published under the
  5. terms of the GNU General Public License.
  6. -- README-Interix.txt --
  7. ngIRCd release 15 has successfully been tested on Microsoft Windows XP
  8. Professional using the Services for UNIX (SFU) version 3.5 and Microsoft
  9. Windows 7 with the bundled Subsystem for UNIX Applications (SUA).
  10. SFU are supported on Windows 2000, Windows 2000 Server, Windows XP, and
  11. Windows Server 2003. SUA is supported on Windows Server 2003 R2, Windows
  12. Server 2008 & 2008 R2, Windows Vista, and Windows 7 -- so ngIRCd should be
  13. able to run on all of these platforms.
  14. But please note that two things:
  15. 1. Don't use the poll() IO API
  16. The poll() API function is not fully implemented by SFU/SUA and therefore
  17. can't be used by ngIRCd -- which normally would be the default. Please see
  18. <http://www.suacommunity.com/faqs.aspx> section 4.25 for details:
  19. "If you do try to use the poll() API your program will block on the
  20. API call forever. You must direct your program to build using the
  21. select() API."
  22. So when running the ./configure script, you HAVE TO DISABLE poll() support:
  23. ./configure --without-poll
  24. ngIRCd then defaults to using the select() API function which works fine.
  25. 2. Use GNU make(1)
  26. Starting with ngIRCd 18, our build system doesn't work with the default
  27. make(1) binary of Interix, you should use GNU make instead (tested with
  28. version 3.82 built from source).