source: Main/trunk/config.h.tmpl@ 123

Last change on this file since 123 was 118, checked in by Nishi, on Sep 21, 2024 at 6:03:27 PM

use poll for select by default

  • Property svn:keywords set to Id
File size: 293 bytes
Line 
1/* $Id: config.h.tmpl 118 2024-09-21 09:03:27Z nishi $ */
2
3#ifndef __CONFIG_H__
4#define __CONFIG_H__
5
6#undef NO_SSL
7#define USE_POLL
8
9/* DO NOT EDIT BELOW THIS LINE */
10
11#ifdef NO_SSL
12#define SSL void
13#endif
14
15#if defined(__MINGW32__) && defined(USE_POLL)
16#undef USE_POLL
17/* Force select(2) for Windows */
18#endif
19
20#endif
21
22/*
23vim: syntax=c
24*/
Note: See TracBrowser for help on using the repository browser.