README-Interix.txt 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. ngIRCd - Next Generation IRC Server
  2. (c)2001-2010 Alexander Barton,
  3. alex@barton.de, http://www.barton.de/
  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 the poll() API function is not fully implemented by
  15. SFU/SUA and therefore can't be used by ngIRCd -- which normally would be
  16. the default. Please see <http://www.suacommunity.com/faqs.aspx> section
  17. 4.25 for details:
  18. "If you do try to use the poll() API your program will block on the
  19. API call forever. You must direct your program to build using the
  20. select() API."
  21. So when running the ./configure script, you HAVE TO DISABLE poll() support:
  22. ./configure --without-poll
  23. ngIRCd then defaults to using the select() API function which works fine.