| A message in #test, from Nim | 1 | # Applies to every compile under nim/, so no recipe has to remember it. |
| 2 | ||
| 3 | # std/net's TLS is behind this define — without it `newContext` does not | |
| 4 | # exist, which is a confusing way to be told that the socket cannot do 6697. | |
| 5 | # Nim loads libssl by soname at run time rather than linking it, so this costs | |
| 6 | # nothing at build and fails at connect on a machine with no OpenSSL. | |
| 7 | -d:ssl | |
| 8 | ||
| 9 | # The reader runs on its own thread; see src/frq/irc.nim for why nothing is | |
| 10 | # shared with it but channels. On by default in Nim 2, stated anyway because | |
| 11 | # the design depends on it. | |
| 12 | --threads:on |