nandi/frqpublic Fork 0
4dfc71908cc3f12174bb0d6dd8688ff3164879c3
Commits
Clone
git clone https://git.rickub.com/nandi/frq.git
git clone ssh://git@rickub.com/nandi/frq.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

nim.cfg · 12 lines · 576 BINI Blame HistoryRaw
A message in #test, from Nim 35994d4 nandi 17h ago1# 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